From 0ee734eb98c53594cfb18e296b891ed87b61654f Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Thu, 27 Aug 2015 15:15:32 +0300 Subject: [PATCH 01/45] account list and change --- accounts/admin.py | 13 +- accounts/forms.py | 184 +- core/admin_urls.py | 10 + core/utils.py | 76 + expobanner/__init__.py | 0 expobanner/admin.py | 74 + expobanner/admin_urls.py | 21 + expobanner/forms.py | 76 + expobanner/managers.py | 32 + expobanner/models.py | 236 + expobanner/static/banners/css/slider.css | 159 + expobanner/static/banners/js/log.js | 10 + expobanner/static/banners/js/slider.js | 71 + expobanner/templates/banner.html | 55 + expobanner/templates/grid.html | 32 + expobanner/templates/group.html | 30 + expobanner/templates/slider.html | 74 + expobanner/templatetags/__init__.py | 0 expobanner/templatetags/banner.py | 74 + expobanner/tests.py | 16 + expobanner/urls.py | 11 + expobanner/views.py | 46 + functions/admin_views.py | 6 +- logs/django_request.log | 0 logs/mylog.log | 16 + logs/mylog.log.1 | 7056 +++++++++++++++++ proj/decorators.py | 16 + templates/admin/accounts/user_change.html | 72 +- templates/admin/accounts/user_list.html | 8 +- .../admin/expobanner/banners_control.html | 33 + templates/admin/expobanner/default_form.html | 59 + templates/admin/expobanner/default_list.html | 34 + templates/admin/meta/create_seo_text.html | 63 + templates/admin/meta/seo_admin_list.html | 54 + templates/admin/meta/seo_confirm_delete.html | 11 + templates/admin/page/new_page.html | 90 + templates/admin/page/page_admin_list.html | 58 + templates/admin/page/page_confirm_delete.html | 11 + templates/client/404_test.html | 31 + templates/client/accounts/email_required.html | 7 + templates/client/base_page.html | 113 + templates/client/includes/seo_text.html | 3 + templates/client/page/page_view.html | 19 + templates/client/popups/acquire_email.html | 24 + .../static_client/css/jquery.fancybox.css | 274 + templates/client/static_client/js/expo_b.js | 7 + .../static_client/js/jquery.fancybox.pack.js | 46 + templates/client/wizard/first_step.html | 218 + templates/client/wizard/second_step.html | 310 + templates/client/wizard/wizard.html | 23 + templates/done.html | 1 + templates/registration/acquire_email.html | 27 + .../social_registration_complete.html | 8 + wizard/__init__.py | 0 wizard/forms.py | 65 + wizard/models.py | 3 + wizard/tests.py | 16 + wizard/urls.py | 8 + wizard/views.py | 89 + 59 files changed, 10091 insertions(+), 88 deletions(-) create mode 100644 core/admin_urls.py create mode 100644 core/utils.py create mode 100644 expobanner/__init__.py create mode 100644 expobanner/admin.py create mode 100644 expobanner/admin_urls.py create mode 100644 expobanner/forms.py create mode 100644 expobanner/managers.py create mode 100644 expobanner/models.py create mode 100644 expobanner/static/banners/css/slider.css create mode 100644 expobanner/static/banners/js/log.js create mode 100644 expobanner/static/banners/js/slider.js create mode 100644 expobanner/templates/banner.html create mode 100644 expobanner/templates/grid.html create mode 100644 expobanner/templates/group.html create mode 100644 expobanner/templates/slider.html create mode 100644 expobanner/templatetags/__init__.py create mode 100644 expobanner/templatetags/banner.py create mode 100644 expobanner/tests.py create mode 100644 expobanner/urls.py create mode 100644 expobanner/views.py create mode 100644 logs/django_request.log create mode 100644 logs/mylog.log create mode 100644 logs/mylog.log.1 create mode 100644 proj/decorators.py create mode 100644 templates/admin/expobanner/banners_control.html create mode 100644 templates/admin/expobanner/default_form.html create mode 100644 templates/admin/expobanner/default_list.html create mode 100644 templates/admin/meta/create_seo_text.html create mode 100644 templates/admin/meta/seo_admin_list.html create mode 100644 templates/admin/meta/seo_confirm_delete.html create mode 100644 templates/admin/page/new_page.html create mode 100644 templates/admin/page/page_admin_list.html create mode 100644 templates/admin/page/page_confirm_delete.html create mode 100644 templates/client/404_test.html create mode 100644 templates/client/accounts/email_required.html create mode 100644 templates/client/base_page.html create mode 100644 templates/client/includes/seo_text.html create mode 100644 templates/client/page/page_view.html create mode 100644 templates/client/popups/acquire_email.html create mode 100644 templates/client/static_client/css/jquery.fancybox.css create mode 100644 templates/client/static_client/js/expo_b.js create mode 100644 templates/client/static_client/js/jquery.fancybox.pack.js create mode 100644 templates/client/wizard/first_step.html create mode 100644 templates/client/wizard/second_step.html create mode 100644 templates/client/wizard/wizard.html create mode 100644 templates/done.html create mode 100644 templates/registration/acquire_email.html create mode 100644 templates/registration/social_registration_complete.html create mode 100644 wizard/__init__.py create mode 100644 wizard/forms.py create mode 100644 wizard/models.py create mode 100644 wizard/tests.py create mode 100644 wizard/urls.py create mode 100644 wizard/views.py diff --git a/accounts/admin.py b/accounts/admin.py index bd8a2251..ec8b1047 100644 --- a/accounts/admin.py +++ b/accounts/admin.py @@ -13,13 +13,24 @@ from django.utils.translation import ugettext as _ from models import User from forms import UserForm, UserCreationForm, ChangePasswordForm, EmailAnnouncementForm, UserFilterForm #custom views -from functions.admin_views import AdminView, AdminListView +from functions.admin_views import AdminView, AdminListView, paginate_results + + + + class UserListView(AdminListView): template_name = 'admin/accounts/user_list.html' form_class = UserFilterForm model = User + def get_context_data(self, **kwargs): + context = super(UserListView, self).get_context_data(**kwargs) + qs = self.model.objects.all() + result = paginate_results(qs, page=self.request.GET.get('page')) + context['object_list'] = result + return context + def user_change(request, url): """ diff --git a/accounts/forms.py b/accounts/forms.py index 00c26f2f..9d7ceb1f 100644 --- a/accounts/forms.py +++ b/accounts/forms.py @@ -5,6 +5,7 @@ from django import forms from django.contrib.auth.forms import ReadOnlyPasswordHashField from django.forms.util import ErrorList from django.utils.translation import ugettext as _ +from django.conf import settings from models import User, Profile from theme.models import Theme, Tag from country.models import Area @@ -13,7 +14,7 @@ from country.models import Country from city.models import City from company.models import Company from organiser.models import Organiser -#functions +# functions from functions.form_check import translit_with_separator, is_latin @@ -27,7 +28,6 @@ def clean_relation_field(inst, field_name, model): return None - class UserCreationForm(forms.ModelForm): password1 = forms.CharField(label='Пароль', widget=forms.PasswordInput(render_value=False)) password2 = forms.CharField(label='Повторите пароль', widget=forms.PasswordInput(render_value=False)) @@ -36,7 +36,6 @@ class UserCreationForm(forms.ModelForm): model = User fields = ('email', 'first_name', 'last_name') - def clean_email(self): """ checking if user already exist @@ -56,7 +55,6 @@ class UserCreationForm(forms.ModelForm): raise forms.ValidationError('Пароли не совпадают') return password2 - def save(self, commit=True): user = super(UserCreationForm, self).save(commit=False) user.set_password(self.cleaned_data['password2']) @@ -66,6 +64,7 @@ class UserCreationForm(forms.ModelForm): return user + class UserChangeForm(forms.ModelForm): password = ReadOnlyPasswordHashField() @@ -76,24 +75,39 @@ class UserChangeForm(forms.ModelForm): return self.initial['password'] - class UserForm(forms.ModelForm): - #email = forms.EmailField(widget=forms.TextInput(attrs={'disabled' : True}), required=False) - country = forms.ChoiceField(label='Страна', choices=[(item.id, item.name) for item in Country.objects.all()], required=False) - city = forms.CharField(label='Город', widget=forms.HiddenInput()) - company = forms.ChoiceField(label='Компания', choices=[(item.id, item.name) for item in Company.objects.language().all()], required=False) - organiser = forms.ChoiceField(label='Организатор', choices=[(item.id, item.name) for item in Organiser.objects.language().all()], required=False) - title = forms.CharField(widget=forms.TextInput(attrs={'style':'width: 550px'}), required=False) - descriptions = forms.CharField(widget=forms.TextInput(attrs={'style':'width: 550px'}), required=False) - keywords = forms.CharField(widget=forms.TextInput(attrs={'style':'width: 550px'}), required=False) - phone = forms.CharField(widget=forms.TextInput(attrs={'style':'width: 550px'}), required=False) + # email = forms.EmailField(widget=forms.TextInput(attrs={'disabled' : True}), required=False) + country = forms.ChoiceField(label='Страна', choices=[(item.id, item.name) for item in Country.objects.all()], + required=False) + city = forms.CharField(label='Город', widget=forms.HiddenInput(), required=False) + company = forms.ChoiceField(label='Компания', + choices=[(item.id, item.name) for item in Company.objects.language().all()], + required=False) + organiser = forms.ChoiceField(label='Организатор', + choices=[(item.id, item.name) for item in Organiser.objects.language().all()], + required=False, initial=None) + title = forms.CharField(widget=forms.TextInput(attrs={'style': 'width: 550px'}), required=False) + descriptions = forms.CharField(widget=forms.TextInput(attrs={'style': 'width: 550px'}), required=False) + keywords = forms.CharField(widget=forms.TextInput(attrs={'style': 'width: 550px'}), required=False) + phone = forms.CharField(widget=forms.TextInput(attrs={'style': 'width: 550px'}), required=False) web_page = forms.URLField(required=False) - about = forms.CharField(widget=forms.Textarea()) + about = forms.CharField(widget=forms.Textarea(), required=False) + avatar = forms.ImageField(required=False) + # --- + skype = forms.CharField(required=False) + facebook = forms.URLField(required=False) + twitter = forms.URLField(required=False) + linkedin = forms.URLField(required=False) + vk = forms.URLField(required=False) + + new_password = forms.CharField(required=False, min_length=6, max_length=60, + widget=forms.TextInput(attrs={'class': 'new_password'})) class Meta: model = User - exclude = ('username', 'email','last_login', 'password', 'is_active', 'is_admin', 'is_superuser', 'is_staff' - 'date_joined', 'date_registered', 'date_modified') + exclude = ('username', 'email', 'last_login', 'password', 'is_admin', 'rating', 'is_superuser', 'is_staff' + 'date_joined', + 'date_registered', 'date_modified') def save(self, force_insert=False, force_update=False, commit=True): @@ -108,28 +122,34 @@ class UserForm(forms.ModelForm): profile.phone = data.get('phone') profile.web_page = data.get('web_page') profile.about = data.get('about') + profile.skype = data.get('skype', '') + profile.facebook = data.get('facebook', '') + profile.twitter = data.get('twitter', '') + profile.linkedin = data.get('linkedin', '') + profile.vk = data.get('vk', '') + profile.avatar = data.get('avatar') + + if data['new_password']: + new_pass = data['new_password'] + user.set_password(new_pass) + user.email_user('Reset password', 'Your new password: "%s" ' % new_pass, settings.DEFAULT_FROM_EMAIL, ) if commit: user.save() profile.save() return user - """ def clean_url(self): url = self.cleaned_data.get('url') - try: - user = User.objects.get(url=translit_with_separator(url)) - if (user.url == translit_with_separator(url)): + if url: + if User.objects.get(url=translit_with_separator(url)): + raise forms.ValidationError('Такой урл уже занят') + else: return url - except: - return url - raise forms.ValidationError('Такой урл уже занят') - """ def clean_organiser(self): return clean_relation_field(self, 'organiser', Organiser) - def clean_company(self): return clean_relation_field(self, 'company', Company) @@ -139,23 +159,23 @@ class UserForm(forms.ModelForm): def clean_city(self): return clean_relation_field(self, 'city', City) - def clean_phone(self): """ phone code checking """ cleaned_data = super(UserForm, self).clean() phone = cleaned_data.get('phone') - if not phone: + if not phone: return - deduct = ('-','(',')','.',' ') + deduct = ('-', '(', ')', '.', ' ') for elem in deduct: phone = phone.replace(elem, '') if phone.isdigit(): return phone else: raise forms.ValidationError('Введите правильный код страны') + """ def clean_web_page(self): cleaned_data = super(UserForm, self).clean() @@ -171,6 +191,7 @@ class UserForm(forms.ModelForm): return forms.ValidationError('Введите правильный адрес страници') """ + class ChangePasswordForm(forms.Form): """ Form to change password @@ -183,7 +204,8 @@ class ChangePasswordForm(forms.Form): attrs={'placeholder': _(u'Придумайте новый пароль')})) new_password_confirm = forms.CharField(label=_(u'Confirm password'), required=True, widget=forms.PasswordInput(render_value=False, - attrs={'placeholder': _(u'Повторите новый пароль')})) + attrs={ + 'placeholder': _(u'Повторите новый пароль')})) def clean(self): data = super(ChangePasswordForm, self).clean() @@ -191,7 +213,7 @@ class ChangePasswordForm(forms.Form): password2 = data.get('new_password_confirm') if not password1 or not password2: return data - # self._errors['new_password'] = ErrorList([_(u'Different passwords!')]) + # self._errors['new_password'] = ErrorList([_(u'Different passwords!')]) # return data if password1 and password2 and password1 != password2: # check if passwords exists and equal @@ -200,7 +222,7 @@ class ChangePasswordForm(forms.Form): del data['new_password_confirm'] del data['new_password'] return data - if not password1.isdigit() and any(char.isdigit() for char in password1) and len(password1)>5: + if not password1.isdigit() and any(char.isdigit() for char in password1) and len(password1) > 5: # password must contain digits and letters and length > 5 return data else: @@ -210,33 +232,35 @@ class ChangePasswordForm(forms.Form): del data['new_password_confirm'] return data + class EmailAnnouncementForm(forms.Form): data = [(1, _(u'Получать приглашения, сообщения и другую корреспонденцию от пользователей Expomap')), - (2, _(u'Получать обзор событий')), - (3, _(u'Получать новости'))] + (2, _(u'Получать обзор событий')), + (3, _(u'Получать новости'))] announcement = forms.MultipleChoiceField(choices=data, widget=forms.CheckboxSelectMultiple()) class RegistrationCompleteForm(forms.ModelForm): - country = forms.ModelChoiceField(label='Страна', queryset= Country.objects.all(), + country = forms.ModelChoiceField(label='Страна', queryset=Country.objects.all(), widget=forms.Select(attrs={'class': 'select2'})) city = forms.CharField(label='Город', widget=forms.HiddenInput()) url = forms.CharField(widget=forms.TextInput(attrs={'placeholder': _(u'url(обязательно)')})) code_country = forms.ChoiceField(label=_(u'код страны'), initial='70', - choices=[(str(c.phone_code), '+'+str(c.phone_code)) for c in Country.objects.all() if c.phone_code is not None], + choices=[(str(c.phone_code), '+' + str(c.phone_code)) for c in + Country.objects.all() if c.phone_code is not None], widget=forms.Select(attrs={'class': 'select2'})) code_city = forms.CharField(label=_(u'код города')) phone = forms.CharField(label=_(u'ваш номер')) + class Meta: model = User fields = ('url',) - def save(self, force_insert=False, force_update=False, commit=True): user = super(RegistrationCompleteForm, self).save(commit=False) data = self.cleaned_data - phone = data['code_country']+data['code_city']+data['phone'] + phone = data['code_country'] + data['code_city'] + data['phone'] user.profile.phone = int(phone) user.profile.country = data['country'] @@ -253,7 +277,6 @@ class RegistrationCompleteForm(forms.ModelForm): except City.DoesNotExist: return None - def clean_url(self): url = self.cleaned_data['url'] if not is_latin(url): @@ -267,6 +290,36 @@ class RegistrationCompleteForm(forms.ModelForm): +class SocialRegistrationCompleteForm(RegistrationCompleteForm): + email = forms.EmailField(widget=forms.TextInput(attrs={'placeholder': _(u'Email')}), required=True) + + class Meta: + model = User + fields = ['email', 'url'] + + def save(self, force_insert=False, force_update=False, commit=True): + email = self.cleaned_data['email'] + if User.objects.filter(email=email).exists(): + # pass to the view user, that had account before + user = User.objects.get(email=email) + # social = UserSocialAuth.objects.get(user=self.instance) + # social.user = user # that cause AuthAlreadyAssociated error! + else: + # create new user, with data from social auth + user = super(RegistrationCompleteForm, self).save(commit=False) # creating new user + user.username = email + + data = self.cleaned_data + phone = data['code_country'] + data['code_city'] + data['phone'] + user.profile.phone = int(phone) + user.profile.country = data['country'] + user.profile.city = data['city'] + user.profile.save() + + # if commit: + user.save() + return user + class RecoveryForm(forms.Form): email = forms.EmailField(widget=forms.TextInput(attrs={'placeholder': _(u'Email')})) @@ -283,10 +336,13 @@ class RecoveryForm(forms.Form): raise forms.ValidationError(_(u'Пользователь с таким емейлом не зарегестрирован')) +from django.db.models import Q + class UserFilterForm(forms.Form): model = User - email = forms.CharField(label=_(u'Email'), required=False) + search_req = forms.CharField(label=_(u'Введите e-mail, имя или фамилию для запроса'), required=False) + def filter(self): """ @@ -295,27 +351,31 @@ class UserFilterForm(forms.Form): """ data = self.cleaned_data - email = data['email'] + search_req = data['search_req'] + words = search_req.split() model = self.model qs = model.objects.all() - if email: - qs = qs.filter(email__contains=email) + if len(words) > 1: + qs = qs.filter(Q(first_name__contains=words[0]) & Q(last_name__contains=words[1])) + elif words: + qs = qs.filter( + Q(email__contains=search_req) | Q(first_name__contains=search_req) | Q(last_name__contains=search_req)) return qs - class FeedFilterForm(forms.Form): data_with_parents = None filter = None th = forms.MultipleChoiceField(label=_(u'Тематика'), choices=[(item.id, item.name) for item in Theme.active.all()], - required=False, widget=forms.CheckboxSelectMultiple()) + required=False, widget=forms.CheckboxSelectMultiple()) tg = forms.CharField(label=_(u'Теги'), required=False, widget=forms.CheckboxSelectMultiple()) - area = forms.MultipleChoiceField(label=_(u'Регион'), choices=[(item.id, item.name) for item in Area.objects.language().all()], + area = forms.MultipleChoiceField(label=_(u'Регион'), + choices=[(item.id, item.name) for item in Area.objects.language().all()], required=False, widget=forms.CheckboxSelectMultiple()) co = forms.MultipleChoiceField(label=_(u'Страна'), required=False, widget=forms.CheckboxSelectMultiple(), choices=[(item.id, item.name) for item in Country.objects.expo_countries()] - ) + ) ci = forms.MultipleChoiceField(label=_(u'Город'), required=False, widget=forms.CheckboxSelectMultiple(), choices=[(item.id, item.name) for item in City.used.expo_cities()] @@ -336,21 +396,19 @@ class FeedFilterForm(forms.Form): self.filter = filter self.data_with_parents = self.get_form_data(filter) - def get_form_data(self, filter): - if filter.area.exists(): - areas = [{'name':'area', 'id':item.id, 'parent':None, 'text':item.name} for item in filter.area.all()] + areas = [{'name': 'area', 'id': item.id, 'parent': None, 'text': item.name} for item in filter.area.all()] else: areas = [] if filter.country.exists(): cos = [] for country in filter.country.all(): - cos.append({'name':'area', 'id':country.area_id, 'text': country.area.name, 'children':{ - 'id': country.id, 'name':'co', 'text': country.name - } + cos.append({'name': 'area', 'id': country.area_id, 'text': country.area.name, 'children': { + 'id': country.id, 'name': 'co', 'text': country.name + } }) else: cos = [] @@ -358,29 +416,27 @@ class FeedFilterForm(forms.Form): if filter.city.exists(): cis = [] for city in filter.city.all(): - cis.append({'name':'area', 'id': city.country.area_id, 'text': city.country.area.name, 'children':{ - 'id': city.country_id, 'name':'co', 'text': city.country.name, 'children':{ - 'name':'ci', 'id':city.id, 'text':city.name - } - } + cis.append({'name': 'area', 'id': city.country.area_id, 'text': city.country.area.name, 'children': { + 'id': city.country_id, 'name': 'co', 'text': city.country.name, 'children': { + 'name': 'ci', 'id': city.id, 'text': city.name + } + } }) else: cis = [] if filter.theme.exists(): - ths = [{'name':'th', 'id':item.id, 'parent':None, 'text':item.name} for item in filter.theme.all()] + ths = [{'name': 'th', 'id': item.id, 'parent': None, 'text': item.name} for item in filter.theme.all()] else: ths = [] if filter.tag.exists(): tgs = [] for tag in filter.tag.all(): - - - tgs.append({'name':'th', 'id':tag.theme_id, 'text': tag.theme.name, 'children':{ - 'id': tag.id, 'name':'tg', 'text': tag.name - } + tgs.append({'name': 'th', 'id': tag.theme_id, 'text': tag.theme.name, 'children': { + 'id': tag.id, 'name': 'tg', 'text': tag.name + } }) else: tgs = [] diff --git a/core/admin_urls.py b/core/admin_urls.py new file mode 100644 index 00000000..bc8bb409 --- /dev/null +++ b/core/admin_urls.py @@ -0,0 +1,10 @@ +from django.conf.urls import url, patterns +from views import NewPage, PageList, EditPage, DeletePage, PageDetailed + +urlpatterns = patterns('', + url(r'^new/$', NewPage.as_view(), name='new_page' ), + url(r'^all/$', PageList.as_view(), name = 'page_list'), + url(r'^edit/(?P.*)/$', EditPage.as_view(), name='edit_page'), + url(r'^delete/(?P.*)/$', DeletePage.as_view(), name='delete_page'), + url(r'^(?P.*)/$', PageDetailed.as_view(), name='page_view'), +) diff --git a/core/utils.py b/core/utils.py new file mode 100644 index 00000000..ee429eee --- /dev/null +++ b/core/utils.py @@ -0,0 +1,76 @@ +# -*- coding: utf-8 -*- + +import xlwt +import datetime + +from exposition.models import Exposition +from conference.models import Conference + +from django.core.exceptions import ObjectDoesNotExist + +HEADER_STYLE = xlwt.easyxf('font: bold on') +DEFAULT_STYLE = xlwt.easyxf() +CELL_STYLE_MAP = ( + (datetime.date, xlwt.easyxf(num_format_str='DD/MM/YYYY')), + (datetime.time, xlwt.easyxf(num_format_str='HH:MM')), + (bool, xlwt.easyxf(num_format_str='BOOLEAN')), +) + +def multi_getattr(obj, attr, default=None): + attributes = attr.split(".") + for i in attributes: + try: + obj = getattr(obj, i) + except AttributeError: + if default: + return default + else: + return '-' + return obj + + +def get_column_cell(obj, name): + try: + attr = multi_getattr(obj, name) + except ObjectDoesNotExist: + return '' + if hasattr(attr, '_meta'): + # A Django Model (related object) + return unicode(attr).strip() + elif hasattr(attr, 'all'): + # A Django queryset (ManyRelatedManager) + return ', '.join(unicode(x).strip() for x in attr.all()) + return attr + +def queryset_to_workbook(queryset, columns, header_style=None, default_style=None, cell_style_map=None): + workbook = xlwt.Workbook() + report_date = datetime.date.today() + sheet_name = 'Export {0}'.format(report_date.strftime('%Y-%m-%d')) + sheet = workbook.add_sheet(sheet_name) + + if not header_style: + header_style = HEADER_STYLE + if not default_style: + default_style = DEFAULT_STYLE + if not cell_style_map: + cell_style_map = CELL_STYLE_MAP + + obj = queryset[0] + + for y, column in enumerate(columns): + header_list=[u'Название события',u'Страна',u'Город',u'Место проведения', u'Дата начала', u'Дата окончания'] + + sheet.write(0, y, header_list[y], header_style) + + for x, obj in enumerate(queryset, start=1): + for y, column in enumerate(columns): + value = get_column_cell(obj, column) + style = default_style + for value_type, cell_style in cell_style_map: + if isinstance(value, value_type): + style = cell_style + sheet.write(x, y, value, style) + + return workbook + + diff --git a/expobanner/__init__.py b/expobanner/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/expobanner/admin.py b/expobanner/admin.py new file mode 100644 index 00000000..d1273215 --- /dev/null +++ b/expobanner/admin.py @@ -0,0 +1,74 @@ +# -*- coding: utf-8 -*- +from django.views.generic import TemplateView, CreateView, ListView, UpdateView +from django.conf import settings +from expobanner.models import URL, BannerGroup, Banner +from expobanner.forms import UrlCreateForm, BannerCreateGroupForm, BannerCreateForm, BannerGroupUpdateForm + + +class BannersControl(TemplateView): + template_name = 'admin/expobanner/banners_control.html' + +# CREATE VIEWS +class AbstractCreate(CreateView): + template_name = 'admin/expobanner/default_form.html' + success_url = '/admin/expobanners/banners/control/' + + +class CreateUrl(AbstractCreate): + model = URL + form_class = UrlCreateForm + + +class CreateBannerGroup(AbstractCreate): + model = BannerGroup + form_class = BannerCreateGroupForm + + +class CreateBanner(AbstractCreate): + model = Banner + form_class = BannerCreateForm + + +# LISTS VIEWS +class AbstractList(ListView): + paginate_by = settings.ADMIN_PAGINATION + template_name = 'admin/expobanner/default_list.html' + + def get_context_data(self, **kwargs): + context = super(AbstractList, self).get_context_data(**kwargs) + context['verbose'] = self.verbose + return context + +class UrlList(AbstractList): + model = URL + verbose = u'Список урлов' + + +class BannerGroupList(AbstractList): + model = BannerGroup + verbose = u'Список груп' + + +class BannerList(AbstractList): + model = Banner + verbose = u'Список банеров' + +# UPDATE VIEWS +class AbstractUpdate(UpdateView): + template_name = 'admin/expobanner/default_form.html' + success_url = '/admin/expobanners/banners/control/' + + +class UrlUpdate(AbstractUpdate): + model = URL + form_class = UrlCreateForm + + +class BannerGroupUpdate(AbstractUpdate): + model = BannerGroup + form_class = BannerGroupUpdateForm + + +class BannerUpdate(AbstractUpdate): + model = Banner + form_class = BannerCreateForm \ No newline at end of file diff --git a/expobanner/admin_urls.py b/expobanner/admin_urls.py new file mode 100644 index 00000000..db31823e --- /dev/null +++ b/expobanner/admin_urls.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +from django.conf.urls import patterns, url +from expobanner.admin import * + +urlpatterns = patterns('expobanner.admin', + url(r'^banners/control/$', BannersControl.as_view(), name='expobanner-baneers_control'), + + url(r'^banners/url/$', CreateUrl.as_view(), name='expobanner-create_url'), + url(r'^banners/group/$', CreateBannerGroup.as_view(), name='expobanner-create_group'), + url(r'^banners/banner/$', CreateBanner.as_view(), name='expobanner-create_banner'), + + url(r'^banners/url/list/$', UrlList.as_view(), name='expobanner-list_url'), + url(r'^banners/group/list/$', BannerGroupList.as_view(), name='expobanner-list_group'), + url(r'^banners/banner/list/$', BannerList.as_view(), name='expobanner-list_banner'), + + url(r'^banners/url/(?P\d+)/edit/$', UrlUpdate.as_view(), name='expobanner-update_url'), + url(r'^banners/group/(?P\d+)/edit/$', BannerGroupUpdate.as_view(), name='expobanner-update_group'), + url(r'^banners/banner/(?P\d+)/edit/$', BannerUpdate.as_view(), name='expobanner-update_banner'), + + +) \ No newline at end of file diff --git a/expobanner/forms.py b/expobanner/forms.py new file mode 100644 index 00000000..64ef9f5a --- /dev/null +++ b/expobanner/forms.py @@ -0,0 +1,76 @@ +# -*- coding: utf-8 -*- +from django import forms +from expobanner.models import URL, BannerGroup, Banner +from country.models import Country +from city.models import City +from theme.models import Theme, Tag + + +class UrlCreateForm(forms.ModelForm): + verbose = u'Создать урл' + class Meta: + model = URL + exclude = ['created_at', 'updated_at', 'sites'] + + +class BannerCreateGroupForm(forms.ModelForm): + verbose = u'Создать групу' + class Meta: + model = BannerGroup + exclude = ['created_at', 'updated_at', 'speed'] + +class BannerGroupUpdateForm(BannerCreateGroupForm): + verbose = u'Изменить групу' + class Meta: + model = BannerGroup + exclude = ['created_at', 'updated_at', 'slug', 'speed'] + + +class BannerCreateForm(forms.ModelForm): + verbose = u'Создать банер' + country = forms.ChoiceField(label=u'Страна', choices=[('', ' ')] + [(c.id, c.name) for c in Country.objects.all()], required=False) + theme = forms.ChoiceField(label=u'Тематика', required=False, + choices=[('', ' ')] + [(item.id, item.name) for item in Theme.objects.language().all()]) + city = forms.CharField(label=u'Город', widget=forms.HiddenInput(), required=False) + tag = forms.CharField(label=u'Тег', widget=forms.HiddenInput(), required=False) + + + class Meta: + model = Banner + exclude = ['created_at', 'updated_at', 'often', 'paid'] + + def clean_theme(self): + theme = self.cleaned_data['theme'] + if not theme: + return None + try: + return Theme.objects.filter(id=theme) + except Theme.DoesNotExist: + return None + + def clean_country(self): + country = self.cleaned_data['country'] + if not country: + return None + try: + return Country.objects.get(id=country) + except Country.DoesNotExist: + return None + + def clean_tag(self): + tag = self.cleaned_data['tag'] + if not tag: + return None + try: + return Tag.objects.get(id=tag) + except Tag.DoesNotExist: + return None + + def clean_city(self): + city = self.cleaned_data['city'] + if not city: + return None + try: + return City.objects.get(id=city) + except City.DoesNotExist: + return None \ No newline at end of file diff --git a/expobanner/managers.py b/expobanner/managers.py new file mode 100644 index 00000000..af87215b --- /dev/null +++ b/expobanner/managers.py @@ -0,0 +1,32 @@ +# -*- coding: utf-8 -* +from random import choice, shuffle +from django.db import models +from django.core.cache import cache + + +class BiasedManager(models.Manager): + def by_time(self, **kwargs): + all = super(BiasedManager, self).get_query_set().filter(**kwargs) + result = [] + for i in all: + for j in range(i.often): + result.append(i) + return result + + def one(self, **kwargs): + return choice(self.by_time(**kwargs)) + + def by_often(self, **kwargs): + result = self.by_time(**kwargs) + shuffle(result) + return result + +class BannerGroupCached(models.Manager): + def all(self): + key = 'banner_group_all' + result = cache.get(key) + if not result: + result = list(self.filter()) + cache.set(key, result, 90) + return result + diff --git a/expobanner/models.py b/expobanner/models.py new file mode 100644 index 00000000..7914ae58 --- /dev/null +++ b/expobanner/models.py @@ -0,0 +1,236 @@ +# -*- coding: utf-8 -*- +import hashlib +from datetime import datetime, date + +from django.db import models +from django.utils.translation import ugettext_lazy as _ +from django.conf import settings +from django.contrib.sites.models import Site + +from .managers import BiasedManager, BannerGroupCached + + +class URL(models.Model): + title = models.CharField(verbose_name=u'Заголовок', max_length=256) + url = models.CharField(verbose_name=u'URL or URL RegEx', max_length=2048) + regex = models.BooleanField(verbose_name=u'RegEx', default=False) + sites = models.ManyToManyField(Site, related_name='site_urls', verbose_name=_('Sites'), null=True, blank=True) + + public = models.BooleanField(verbose_name=u'Активный', default=True) + created_at = models.DateTimeField(verbose_name=_('Created At'), auto_now_add=True) + updated_at = models.DateTimeField(verbose_name=_('Updated At'), auto_now=True) + + def __unicode__(self): + return self.title + + class Meta: + ordering = ['-created_at'] + verbose_name = _('URL') + verbose_name_plural = _('URLs') + + def get_admin_url(self): + return '/admin/expobanners/banners/url/%d/edit/'%self.id + + +class BannerGroup (models.Model): + name = models.CharField(verbose_name=u'Имя', max_length=255) + slug = models.SlugField(verbose_name=u'URL', unique=True) + width = models.PositiveSmallIntegerField(verbose_name=u'Ширина', default=0) + height = models.PositiveSmallIntegerField(verbose_name=u'Высота', default=0) + speed = models.PositiveSmallIntegerField(verbose_name=u'Скорость отображения', default=2000) + + public = models.BooleanField(verbose_name=u'Активная', default=True) + created_at = models.DateTimeField(verbose_name=_('Created At'), auto_now_add=True) + updated_at = models.DateTimeField(verbose_name=_('Updated At'), auto_now=True) + cached = BannerGroupCached() + + def size(self): + return '%sx%s' % (self.width, self.height) + + def __unicode__(self): + return '%s - [%s x %s]' % (self.name, self.width, self.height) + + class Meta: + ordering = ['name'] + verbose_name = _('Banner Group') + verbose_name_plural = _('Banner Groups') + + def get_admin_url(self): + return '/admin/expobanners/banners/group/%d/edit/'%self.id + + +class Banner(models.Model): + objects = BiasedManager() + + title = models.CharField(verbose_name=u'Заголовок', max_length=255, blank=True) + alt = models.CharField(verbose_name=_('Alt'), max_length=255) + + text = models.TextField(verbose_name=u'Текст', blank=True, null=True) + img = models.FileField(verbose_name=u'Картинка', upload_to='expo_upload', blank=True, null=True) + url = models.CharField(verbose_name=u'URL', max_length=1024) + + sort = models.PositiveSmallIntegerField(verbose_name=u'Сорт', default=500) + + group = models.ForeignKey(BannerGroup, related_name='banners', verbose_name=u'Место', null=True, blank=True) + often = models.PositiveSmallIntegerField( + verbose_name=_('Often'), + help_text=_('A ten will display 10 times more often that a one.'), + choices=[[i, i] for i in range(11)] + ) + urls = models.ManyToManyField(URL, related_name='url_banners', verbose_name=_('URLs'), null=True, blank=True) + + html = models.BooleanField(verbose_name=_('HTML?'), default=False) + flash = models.BooleanField(verbose_name=_('Flash?'), default=False) + paid = models.BooleanField(verbose_name=_('Is Paid event link?'), default=False) + + + public = models.BooleanField(verbose_name=u'Активный', default=True) + created_at = models.DateTimeField(verbose_name=_('Created At'), auto_now_add=True) + updated_at = models.DateTimeField(verbose_name=_('Updated At'), auto_now=True) + + theme = models.ForeignKey('theme.Theme', blank=True, null=True, verbose_name=u'Тематика') + tag = models.ForeignKey('theme.Tag', blank=True, null=True, verbose_name=u'Тег') + country = models.ForeignKey('country.Country', blank=True, null=True, verbose_name=u'Страна') + city = models.ForeignKey('city.City', blank=True, null=True, verbose_name=u'Город') + + + def get_admin_url(self): + return '/admin/expobanners/banners/banner/%d/edit/'%self.id + + + def key(slef): + if hasattr(settings, 'SECRET_KEY'): + key = str(datetime.now()) + settings.SECRET_KEY + else: + key = str(datetime.now()) + return hashlib.md5(key).hexdigest() + + def log(self, request, type, key): + log = { + 'type': type, + 'key': key, + 'banner': self, + 'group': self.group, + 'ip': request.META.get('REMOTE_ADDR'), + 'user_agent': request.META.get('HTTP_USER_AGENT'), + 'page': request.META.get('HTTP_REFERER'), + } + + if request.user.is_authenticated(): + log['user'] = request.user + return Log.objects.create(**log) + + @models.permalink + def image(self): + return ('banner_view', (), {'banner_id': self.pk, 'key': self.key()}) + + def impressions(self): + return Log.objects.filter(banner=self.pk, type=0).count() + + def views(self): + return Log.objects.filter(banner=self.pk, type=1).count() + + def clicks(self): + return Log.objects.filter(banner=self.pk, type=2).count() + + def __unicode__(self): + return self.title or self.alt + + def get_absolute_url(self): + if self.url == '#': + return self.url + else: + @models.permalink + def get_absolute_url(self): + return ('banner_click', (), {'banner_id': self.pk, 'key': self.key()}) + return get_absolute_url(self) + + class Meta: + ordering = ['sort'] + verbose_name = _('Banner') + verbose_name_plural = _('Banners') + + +class Log(models.Model): + banner = models.ForeignKey(Banner, related_name='banner_logs') + group = models.ForeignKey(BannerGroup, related_name='group_logs', verbose_name=_('Group'), blank=True) + urls = models.ManyToManyField(URL, related_name='url_logs', verbose_name=_('URLs'), blank=True) + + user = models.ForeignKey(settings.AUTH_USER_MODEL, null=True, blank=True, related_name='users', verbose_name=_('User')) + datetime = models.DateTimeField(verbose_name=_('Clicked At'), auto_now_add=True) + ip = models.IPAddressField(verbose_name=_('IP'), null=True, blank=True) + user_agent = models.CharField(verbose_name=_('User Agent'), max_length=1024, null=True, blank=True) + page = models.URLField(verbose_name=_('Page'), null=True, blank=True) + key = models.CharField(verbose_name=_('User Agent'), max_length=32, null=True, blank=True) + TYPE_CHOICES = ( + (0, 'impressions'), + (1, 'view'), + (2, 'click') + ) + + type = models.PositiveSmallIntegerField(verbose_name=_('Type'), max_length=1, default=0, choices=TYPE_CHOICES) + + def __unicode__(self): + return '%s - (%s)' % (self.banner, self.datetime) + + +class LogStat(models.Model): + banner = models.ForeignKey(Banner, related_name='banner_stat', verbose_name=_('Banner'), blank=True) + group = models.ForeignKey(BannerGroup, related_name='group_stat', verbose_name=_('Group'), blank=True) + urls = models.ManyToManyField(URL, related_name='url_bloks', verbose_name=_('URLs'), null=True, blank=True) + + date = models.DateField(verbose_name=_('Data')) + view = models.PositiveIntegerField(verbose_name=_('Views')) + click = models.PositiveIntegerField(verbose_name=_('Clicks')) + unique_click = models.PositiveIntegerField(verbose_name=_('Unique Views'), blank=True, null=True) + unique_view = models.PositiveIntegerField(verbose_name=_('Unique Clicks')) + + def __unicode__(self): + return '%s - (%s)' % (self.banner, self.date) + + +# ------------------ +class Paid(models.Model): + tickets = models.ForeignKey(Banner, related_name='paid_tickets') + participation = models.ForeignKey(Banner, related_name='paid_participation') + official = models.ForeignKey(Banner, related_name='paid_official') + logo = models.ImageField(upload_to='/')# !!!!! + organiser = models.CharField(max_length=100) + active = models.BooleanField(default=True) + stat_pswd = models.CharField(max_length=16) + created = models.DateTimeField(auto_now_add=True) + modified = models.DateTimeField(auto_now=True) + + +class PaidStat(models.Model): + paid = models.ForeignKey(Paid) + date = models.DateField(verbose_name=_('Date')) + page_views = models.PositiveIntegerField(default=0) + price_views = models.PositiveIntegerField(default=0) + catalog_views = models.PositiveIntegerField(default=0) + catalog_clicks = models.PositiveIntegerField(default=0) + + +class Top(models.Model): + catalog = models.CharField(max_length=16) + position = models.PositiveIntegerField(blank=True, null=True) + theme = models.ManyToManyField('theme.Theme', blank=True, null=True) + excluded_tags = models.ManyToManyField('theme.Tag', blank=True, null=True) + country = models.ManyToManyField('country.Country', blank=True, null=True) + excluded_cities = models.ManyToManyField('city.City', blank=True, null=True) + fr = models.DateField(default=date.today()) + to = models.DateField(blank=True, null=True) + stat_pswd = models.CharField(max_length=16) + + class Meta: + ordering = ['position'] + + +class TopStat(models.Model): + date = models.DateField() + theme = models.ForeignKey('theme.Theme', blank=True, null=True) + tag = models.ForeignKey('theme.Tag', blank=True, null=True) + country = models.ForeignKey('country.Country', blank=True, null=True) + city = models.ForeignKey('city.City', blank=True, null=True) + views = models.PositiveIntegerField(default=0) + clicks = models.PositiveIntegerField(default=0) \ No newline at end of file diff --git a/expobanner/static/banners/css/slider.css b/expobanner/static/banners/css/slider.css new file mode 100644 index 00000000..d6d86672 --- /dev/null +++ b/expobanner/static/banners/css/slider.css @@ -0,0 +1,159 @@ +/* + ************************** + * =COMMON + ************************** +*/ +.b-slider { + position: relative; + display: block; + overflow: hidden; + margin: 0; + padding: 0; + width: 725px; + height: 360px; +} + +.b-slider-list { + position: absolute; + display: block; + overflow: hidden; + margin: 0; + padding: 0; + width: 725px; + height: 360px; + list-style: none; +} + +.b-slider-item { + position: absolute; + z-index: 50; + float: left; + overflow: hidden; + margin: 0; + padding: 0; + width: 725px; + height: 360px; +} + +.m-slider-current { + z-index: 100; +} + +.b-slider-item__img, +.b-slider-item__title, +.b-slider-item__text { + position: absolute; +} + +.b-slider-item__img { + top: 0; + left: 0; + text-decoration: none; +} + +.b-slider-item__link { + +} + +.b-slider-item__title { + bottom: 10px; + left: 10px; + width: 500px; + color: #333; + text-transform: uppercase; + text-shadow: 0 0 3px #fff, 0 0 2px #fff, 0 0 1px #fff; + letter-spacing: -5px; + font-size: 65px; + font-family: Calibri; + line-height: 0.8em; +} + +.b-slider-item__text { + position: absolute; + top: 150px; + left: 300px; + display: inline-block; + display: none; + margin: -10px; + padding: 10px; + max-width: 300px; + border-radius: 10px; + background: rgba(255, 255, 255, 0.5); + box-shadow: 0 0 5px #fff; + color: #555; + line-height: 1.5em; +} + + +/* + ************************** + * =NAV + ************************** +*/ +.b-slider-nav { + position: absolute; + width: 100%; + top: 10px; + height: 30px; + left: 0; + z-index: 500; + display: block; + margin: 0; + padding: 0; + list-style-type: none; + text-align: center; +} + +.b-slider-nav-button { + display: inline-block; + margin: 5px; + width: 16px; + height: 16px; + border-radius: 8px; + background: #ddd; + color: transparent; + text-align: center; + font-weight: bold; + font-size: 8px; + line-height: 16px; + cursor: pointer; +} + +.b-slider-nav-button:hover { + background: #eee; +} + +.m-slider-nav-current_button { + background: #fff; +} + +.b-slider-nav-prev, +.b-slider-nav-next { + position: absolute; + top: 0; + z-index: 500; + padding-right: 20px; + padding-left: 20px; + color: #000; + text-shadow: 0 0 3px #fff, 0 0 2px #fff, 0 0 1px #fff; + font-size: 50px; + font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; + line-height: 360px; + opacity: 0.5; + cursor: pointer; +} + +.b-slider-nav-prev:hover, +.b-slider-nav-next:hover { + opacity: 0.8; +} + +.b-slider-nav-prev { + left: 0; + padding-left: 0; +} + +.b-slider-nav-next { + right: 0; + padding-right: 0; +} diff --git a/expobanner/static/banners/js/log.js b/expobanner/static/banners/js/log.js new file mode 100644 index 00000000..eed8e2a1 --- /dev/null +++ b/expobanner/static/banners/js/log.js @@ -0,0 +1,10 @@ + +$(document).ready(function() { + $('.b-banner-click').on('click', function(){ + $.get($(this).data('url')); + }); + + $(".b-banner").on('load', function() { + $.get($(this).data('view')); + }); +}); diff --git a/expobanner/static/banners/js/slider.js b/expobanner/static/banners/js/slider.js new file mode 100644 index 00000000..34769495 --- /dev/null +++ b/expobanner/static/banners/js/slider.js @@ -0,0 +1,71 @@ +$.fn.bannersSlider = function(options) { + $this = this; + var settings = $.extend( { + 'auto_play': false, + 'effect': 'fade', + 'speed' : 3000 + }, options); + + $this.current = 1; + $this.old = 1; + $this.len = $this.find('.b-slider-list li').length; + + $this.find('.b-slider-item').hide(); + $this.find('.m-slider-item-1').show(); + + $this.fadeTo = function(new_num) { + old_num = $this.old; + if (new_num != old_num) { + $this.find('.m-slider-item-' + new_num).hide(); + $this.find('.m-slider-item-' + new_num).fadeIn(1000); + $this.find('.m-slider-current').fadeOut(1000); + $this.find('.m-slider-current').removeClass('m-slider-current'); + $this.find('.m-slider-item-' + new_num).addClass('m-slider-current'); + + $this.find('.b-slider-nav-button').removeClass('m-slider-nav-current_button'); + + $this.find('.b-slider-nav-button[data-slide=' + new_num + ']').addClass('m-slider-nav-current_button'); + } + }; + + $this.prev = function() { + prev = ($this.current != 1) ? $this.current - 1 : $this.len; + $this.old = $this.current; + $this.current = prev; + + $this.fadeTo(prev); + }; + + $this.next = function() { + next = ($this.current != $this.len) ? $this.current + 1 : 1; + $this.old = $this.current; + $this.current = next; + + $this.fadeTo(next); + }; + + $this.children('.b-slider-nav-prev').on('click', function(){ + $this.prev(); + }); + + $this.children('.b-slider-nav-next').on('click', function(){ + $this.next(); + }); + + $this.find('.b-slider-nav-button').on('click', function(){ + to_slide = $(this).data('slide'); + + $this.old = $this.current; + $this.current = to_slide; + + $this.fadeTo(to_slide); + }); + + if (settings.auto_play) { + setInterval(function() { + $this.next(); + }, settings.speed); + } + + return $this; +}; diff --git a/expobanner/templates/banner.html b/expobanner/templates/banner.html new file mode 100644 index 00000000..85f460e1 --- /dev/null +++ b/expobanner/templates/banner.html @@ -0,0 +1,55 @@ +{% if banner.html %} + {% load banner %} + +{% elif banner.flash %} + + + +{% else %} + +{% endif %} + + \ No newline at end of file diff --git a/expobanner/templates/grid.html b/expobanner/templates/grid.html new file mode 100644 index 00000000..9571fd2d --- /dev/null +++ b/expobanner/templates/grid.html @@ -0,0 +1,32 @@ +{% load banner %} + +
+ {% for banner in banners %} + {% banner_one banner.id %} + {% endfor %} +
+ + \ No newline at end of file diff --git a/expobanner/templates/group.html b/expobanner/templates/group.html new file mode 100644 index 00000000..36800ccc --- /dev/null +++ b/expobanner/templates/group.html @@ -0,0 +1,30 @@ +{% load banner %} + +
+ {% for banner in banners %} + {% banner_one banner.id %} + {% endfor %} + +
\ No newline at end of file diff --git a/expobanner/templates/slider.html b/expobanner/templates/slider.html new file mode 100644 index 00000000..e2dd73ac --- /dev/null +++ b/expobanner/templates/slider.html @@ -0,0 +1,74 @@ +{% load thumbnail %} + +{% if banners %} + +
+ + +
    + {% for banner in banners %} +
  • + {{ forloop.counter }} +
  • + {% endfor %} +
+ + 〈   +   〉 + +
+ + + + + +{% endif %} \ No newline at end of file diff --git a/expobanner/templatetags/__init__.py b/expobanner/templatetags/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/expobanner/templatetags/banner.py b/expobanner/templatetags/banner.py new file mode 100644 index 00000000..f7257f1c --- /dev/null +++ b/expobanner/templatetags/banner.py @@ -0,0 +1,74 @@ +from ..models import Banner +from ..models import BannerGroup +from ..models import URL + +from django import template + +# For render tag +from django.template import Context +from django.template import Template + +import re + +register = template.Library() + + +@register.simple_tag(takes_context=True) +def banner_group(context, group, tpl='group.html'): + try: + page_url = context['request'].path_info + site = context['request'].site + group = BannerGroup.objects.get(slug=group) + good_urls = [] + for url in URL.objects.filter(public=True, sites__in=[site]): + if url.regex: + url_re = re.compile(url.url) + if url_re.findall(page_url): + good_urls.append(url) + elif page_url == url.url: + good_urls.append(url) + banners = Banner.objects.filter(public=True, group=group, urls__in=good_urls) + except: + banners = False + group = False + if(banners and group): + context['banners'] = banners + context['group'] = group + + t = template.loader.get_template(tpl) + return t.render(template.Context(context)) + + +@register.simple_tag(takes_context=True) +def banner_one(context, banner_id, tpl='banner.html'): + try: + page_url = context['request'].path_info + site = context['request'].site + good_urls = [] + for url in URL.objects.filter(public=True, sites__in=[site]): + if url.regex: + url_re = re.compile(url.url) + if url_re.findall(page_url): + good_urls.append(url) + elif page_url == url.url: + good_urls.append(url) + + banner = Banner.objects.get(id=banner_id, public=True, urls__in=good_urls) + except: + banner = False + + context['banner'] = banner + + t = template.loader.get_template(tpl) + return t.render(template.Context(context)) + + +# block render +@register.simple_tag(takes_context=True) +def render(context, content): + try: + tpl = Template(content) + content = Context(context) + return tpl.render(content) + except: + return 'Render Error' diff --git a/expobanner/tests.py b/expobanner/tests.py new file mode 100644 index 00000000..501deb77 --- /dev/null +++ b/expobanner/tests.py @@ -0,0 +1,16 @@ +""" +This file demonstrates writing tests using the unittest module. These will pass +when you run "manage.py test". + +Replace this with more appropriate tests for your application. +""" + +from django.test import TestCase + + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.assertEqual(1 + 1, 2) diff --git a/expobanner/urls.py b/expobanner/urls.py new file mode 100644 index 00000000..126ae232 --- /dev/null +++ b/expobanner/urls.py @@ -0,0 +1,11 @@ +from django.conf.urls import url + +from . import views + +urlpatterns = [ + url(r'^click/(?P\d{1,4})/(?P[-\w]+)/$', views.click, name='banner_click'), + url(r'^view/(?P\d+)/(?P[-\w]+)/$', views.view, name='banner_view'), + + # + url(r'^get-banners/$', views.get_banners), +] diff --git a/expobanner/views.py b/expobanner/views.py new file mode 100644 index 00000000..903408ea --- /dev/null +++ b/expobanner/views.py @@ -0,0 +1,46 @@ +# -*- coding: utf-8 -*- +import json +from django.http import HttpResponse +from django.shortcuts import redirect, get_object_or_404 +from .models import Banner, BannerGroup + + +def click(request, banner_id, key): + banner = get_object_or_404(Banner, pk=banner_id) + banner.log(request, 2, key) + return redirect(banner.url) + + +def view(request, banner_id, key): + banner = get_object_or_404(Banner, pk=banner_id) + banner.log(request, 1, key) + return redirect(banner.img.url) + + +def get_client_ip(request): + x_forwarded_for = request.META.get('HTTP_X_FORWARDED_FOR') + if x_forwarded_for: + ip = x_forwarded_for.split(',')[0] + else: + ip = request.META.get('REMOTE_ADDR') + return ip + +def get_banners(request): + url = request.GET.get('url', '/') + theme = request.GET.get('theme') + country = request.GET.get('country') + city = request.GET.get('city') + tag = request.GET.get('tag') + ip = get_client_ip(request) + params = {'url': url, + 'theme': theme, + 'tag': tag, + 'country': country, + 'city': city, + 'ip': ip} + b = Banner.objects.get(id=1) + result = [{'url': b.url, 'id': 'expo_b_%d'%b.id, 'is_html': b.html, + 'is_flash': b.flash, 'is_img': True, 'html': b.text, 'img': b.img.url}] + return HttpResponse(json.dumps(result, indent=4), content_type='application/json') + + diff --git a/functions/admin_views.py b/functions/admin_views.py index 0fb38183..d20b361d 100644 --- a/functions/admin_views.py +++ b/functions/admin_views.py @@ -90,6 +90,7 @@ def paginate_results(qs, page=None): return result +from hvad.models import TranslatableModel class AdminListView(FormView): def get_form(self, form_class): @@ -126,7 +127,10 @@ class AdminListView(FormView): def get_context_data(self, **kwargs): context = super(AdminListView, self).get_context_data(**kwargs) - qs = self.model.objects.language().all().order_by('name') + if issubclass(self.model, TranslatableModel): + qs = self.model.objects.language('all').all().order_by('name') + else: + qs = self.model.objects.all().order_by('name') result = paginate_results(qs, page=self.request.GET.get('page')) context['object_list'] = result return context diff --git a/logs/django_request.log b/logs/django_request.log new file mode 100644 index 00000000..e69de29b diff --git a/logs/mylog.log b/logs/mylog.log new file mode 100644 index 00000000..5dfa1096 --- /dev/null +++ b/logs/mylog.log @@ -0,0 +1,16 @@ +2015-07-28 12:23:39,172 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 12:23:39,175 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,200 [DEBUG] django.db.backends: (0.002) SHOW TABLES; args=() +2015-07-28 12:23:39,201 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,232 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 12:23:39,233 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,247 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 12:23:39,248 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,284 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 12:23:39,285 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,304 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 12:23:39,305 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 12:23:39,460 [DEBUG] root: Using default logger +2015-07-28 12:23:39,460 [DEBUG] root: Using default logger +2015-07-28 12:24:17,361 [DEBUG] django.db.backends: (0.001) SELECT `accounts_user`.`id`, `accounts_user`.`password`, `accounts_user`.`last_login`, `accounts_user`.`is_superuser`, `accounts_user`.`email`, `accounts_user`.`username`, `accounts_user`.`first_name`, `accounts_user`.`last_name`, `accounts_user`.`rating`, `accounts_user`.`url`, `accounts_user`.`is_active`, `accounts_user`.`is_staff`, `accounts_user`.`is_admin`, `accounts_user`.`date_joined`, `accounts_user`.`date_registered`, `accounts_user`.`date_modified`, `accounts_user`.`organiser_id`, `accounts_user`.`translator_id`, `accounts_user`.`company_id`, `accounts_user`.`position` FROM `accounts_user` WHERE `accounts_user`.`email` = 'vaniakov95@gmail.com' ; args=('vaniakov95@gmail.com',) +2015-07-28 12:24:25,526 [DEBUG] django.db.backends: (0.000) SELECT `accounts_user`.`id`, `accounts_user`.`password`, `accounts_user`.`last_login`, `accounts_user`.`is_superuser`, `accounts_user`.`email`, `accounts_user`.`username`, `accounts_user`.`first_name`, `accounts_user`.`last_name`, `accounts_user`.`rating`, `accounts_user`.`url`, `accounts_user`.`is_active`, `accounts_user`.`is_staff`, `accounts_user`.`is_admin`, `accounts_user`.`date_joined`, `accounts_user`.`date_registered`, `accounts_user`.`date_modified`, `accounts_user`.`organiser_id`, `accounts_user`.`translator_id`, `accounts_user`.`company_id`, `accounts_user`.`position` FROM `accounts_user` WHERE `accounts_user`.`email` = 'vaniakov95@gmail.com' ; args=('vaniakov95@gmail.com',) diff --git a/logs/mylog.log.1 b/logs/mylog.log.1 new file mode 100644 index 00000000..09851959 --- /dev/null +++ b/logs/mylog.log.1 @@ -0,0 +1,7056 @@ +2015-07-28 11:11:44,907 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:11:44,910 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:44,936 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:11:44,937 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:44,957 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:11:44,958 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:45,019 [DEBUG] django.db.backends: (0.002) SHOW TABLES; args=() +2015-07-28 11:11:45,020 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:45,094 [DEBUG] django.db.backends: (0.002) SHOW TABLES; args=() +2015-07-28 11:11:45,096 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:45,106 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:11:45,107 [DEBUG] django.db.backends: (0.001) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:11:45,168 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:45,175 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:45,177 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:45,180 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:45,182 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:45,184 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:45,187 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:45,189 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:45,191 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:45,193 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:45,196 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:45,198 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:45,200 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:45,203 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:45,205 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:45,207 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:45,210 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:45,212 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:45,214 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:45,216 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:45,219 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:45,221 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:45,223 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:45,226 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:45,228 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:45,230 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:45,233 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:45,235 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:45,237 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:45,240 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:45,242 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:45,244 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:45,246 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:45,249 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:45,251 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:45,253 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:45,256 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:45,258 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:45,260 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:45,262 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:45,265 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:45,267 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:45,269 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:45,272 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:45,274 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:45,276 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:45,279 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:45,281 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:45,283 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:45,286 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:45,288 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:45,290 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:45,292 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:45,295 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:45,297 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:45,300 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:45,302 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:45,304 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:45,306 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:45,309 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:45,311 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:45,313 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:45,317 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:11:45,323 [DEBUG] django.db.backends: (0.000) SELECT DISTINCT `exposition_exposition`.`country_id` FROM `exposition_exposition`; args=() +2015-07-28 11:11:45,342 [DEBUG] django.db.backends: (0.014) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id`, `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country_translation` LEFT OUTER JOIN `country_country` ON (`country_country_translation`.`master_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` T3 ON (`country_country`.`id` = T3.`master_id`) WHERE (`country_country_translation`.`master_id` IN (2, 5, 6, 7, 8, 10, 11, 13, 14, 16, 17, 19, 20, 25, 27, 31, 33, 35, 38, 39, 40, 41, 42, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 60, 62, 64, 66, 72, 73, 76, 78, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 96, 97, 99, 101, 103, 104, 106, 107, 108, 109, 110, 111, 112, 113, 115, 117, 118, 119, 120, 121, 129, 130, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 147, 148, 150, 152, 154, 155, 157, 158, 159, 160, 163, 164, 165, 166, 169, 172, 177, 179, 181, 184, 186, 187, 189, 191, 194, 198, 199, 201, 204, 205, 206, 207) AND `country_country_translation`.`language_code` = 'ru' ) ORDER BY T3.`name` ASC; args=(2, 5, 6, 7, 8, 10, 11, 13, 14, 16, 17, 19, 20, 25, 27, 31, 33, 35, 38, 39, 40, 41, 42, 45, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 60, 62, 64, 66, 72, 73, 76, 78, 80, 81, 82, 83, 84, 85, 86, 87, 89, 90, 91, 92, 93, 96, 97, 99, 101, 103, 104, 106, 107, 108, 109, 110, 111, 112, 113, 115, 117, 118, 119, 120, 121, 129, 130, 134, 135, 136, 137, 138, 140, 141, 142, 143, 146, 147, 148, 150, 152, 154, 155, 157, 158, 159, 160, 163, 164, 165, 166, 169, 172, 177, 179, 181, 184, 186, 187, 189, 191, 194, 198, 199, 201, 204, 205, 206, 207, 'ru') +2015-07-28 11:11:45,424 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `exposition_exposition`.`city_id` FROM `exposition_exposition`; args=() +2015-07-28 11:11:45,536 [DEBUG] django.db.backends: (0.099) SELECT `city_city_translation`.`id`, `city_city_translation`.`name`, `city_city_translation`.`region`, `city_city_translation`.`transport`, `city_city_translation`.`description`, `city_city_translation`.`famous_places`, `city_city_translation`.`shoping`, `city_city_translation`.`title`, `city_city_translation`.`descriptions`, `city_city_translation`.`keywords`, `city_city_translation`.`language_code`, `city_city_translation`.`master_id`, `city_city`.`id`, `city_city`.`services`, `city_city`.`url`, `city_city`.`old_url`, `city_city`.`inflect`, `city_city`.`country_id`, `city_city`.`code_IATA_id`, `city_city`.`population`, `city_city`.`phone_code`, `city_city`.`created`, `city_city`.`modified` FROM `city_city_translation` LEFT OUTER JOIN `city_city` ON (`city_city_translation`.`master_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` T3 ON (`city_city`.`id` = T3.`master_id`) WHERE (`city_city_translation`.`master_id` IN (-3730078, -3714993, -3714825, -3712125, -3414440, -3366242, -3212216, -3178767, -3160026, -3148348, -3106433, -3103581, -3102179, -3096108, -3091069, -3043275, -3042207, -3041912, -3040171, -3039267, -3038516, -3035173, -3034952, -3034701, -3034353, -3033871, -3033722, -3033718, -3029851, -3025025, -3024639, -3024309, -3024007, -3023495, -3023028, -3019679, -3019601, -3019132, -3015114, -3014703, -3013492, -3011273, -3006514, -3006140, -2996563, -2996523, -2996338, -2995930, -2994531, -2993218, -2990203, -2989168, -2981973, -2981545, -2980155, -2979687, -2974927, -2974462, -2972003, -2971968, -2970528, -2970141, -2969511, -2968530, -2967687, -2966930, -2966853, -2966244, -2964223, -2963575, -2962281, -2961506, -2960561, -2958321, -2950121, -2943527, -2941648, -2941280, -2936665, -2936262, -2934420, -2928684, -2928280, -2924570, -2924116, -2923678, -2923066, -2919283, -2918852, -2917908, -2916144, -2911004, -2899145, -2897205, -2896749, -2896432, -2886873, -2886746, -2883930, -2882404, -2880021, -2879191, -2877435, -2873843, -2866283, -2767043, -2764584, -2762812, -2753453, -2745636, -2744199, -2742107, -2739166, -2738616, -2737683, -2706092, -2705195, -2698521, -2679652, -2651804, -2648877, -2637882, -2625737, -2625660, -2624430, -2620663, -2615647, -2612321, -2611829, -2608164, -2607615, -2605646, -2605287, -2604911, -2604469, -2603961, -2603267, -2602512, -2602369, -2601889, -2601422, -2601144, -2600941, -2600535, -2600279, -2598194, -2597039, -2595943, -2595805, -2595386, -2594262, -2593403, -2593386, -2593226, -2592344, -2591777, -2590919, -2590498, -2589989, -2587757, -2579372, -2554935, -2554859, -2554817, -2554447, -2554000, -2553210, -2552994, -2552969, -2552809, -2552548, -2552151, -2552078, -2551757, -2551753, -2551451, -2551274, -2551235, -2551183, -2524279, -2503264, -2492129, -2482986, -2437894, -2424066, -2421883, -2404760, -2403010, -2402530, -2366485, -2353539, -2343962, -2342388, -2334555, -2334218, -2334069, -2331392, -2325645, -2276223, -2266494, -2258072, -2214877, -2173088, -2170180, -2167973, -2160205, -2159655, -2159606, -2156821, -2154520, -2154382, -2152943, -2152921, -2152403, -2152218, -2149006, -2147365, -2145932, -2145615, -2145280, -2145032, -2144863, -2144807, -2144141, -2144027, -2143610, -2140640, -2140567, -2140479, -2140452, -2112243, -2111972, -2111367, -2108361, -2106102, -2103041, -2102835, -2098033, -2097803, -2097701, -2093654, -2092770, -2092511, -2092174, -2090174, -2089356, -2088270, -2067935, -1997013, -1995515, -1995499, -1995338, -1992480, -1989985, -1982354, -1981445, -1971112, -1965564, -1964016, -1963947, -1959925, -1958757, -1956109, -1955925, -1955538, -1953257, -1951346, -1946324, -1941830, -1938815, -1935855, -1931786, -1931562, -1931546, -1930776, -1930588, -1929528, -1928564, -1925268, -1925258, -1924917, -1924465, -1922199, -1920233, -1919813, -1919548, -1912283, -1908634, -1908524, -1907161, -1905938, -1905584, -1903802, -1901835, -1900813, -1900774, -1900349, -1899743, -1898541, -1891486, -1887737, -1887191, -1883308, -1879835, -1876794, -1876356, -1871728, -1870735, -1865133, -1865057, -1862713, -1854320, -1853327, -1852370, -1849281, -1849253, -1847131, -1845975, -1843341, -1842944, -1841161, -1839098, -1839089, -1835238, -1832757, -1829320, -1829149, -1823084, -1822614, -1822294, -1821461, -1817680, -1810561, -1809855, -1804271, -1803994, -1800018, -1799639, -1794220, -1791959, -1790622, -1789153, -1788826, -1785903, -1785461, -1785434, -1783292, -1772098, -1771821, -1771505, -1771148, -1767857, -1766996, -1766950, -1762397, -1761951, -1761619, -1761123, -1760373, -1757722, -1756500, -1752234, -1751596, -1749194, -1747422, -1746443, -1743231, -1743182, -1743172, -1743065, -1742412, -1740635, -1736191, -1708147, -1704008, -1698603, -1690669, -1690444, -1690063, -1684228, -1679595, -1671447, -1669612, -1658079, -1655011, -1605526, -1603135, -1594675, -1586844, -1569058, -1563952, -1561728, -1555188, -1510346, -1508289, -1506909, -1504189, -1502950, -1502554, -1501986, -1476743, -1476233, -1476098, -1474712, -1474436, -1473937, -1473290, -1473278, -1473166, -1473153, -1471697, -1469710, -1468251, -1466824, -1464183, -1462807, -1462490, -1461464, -1461340, -1460939, -1460750, -1458949, -1457525, -1457494, -1456928, -1456813, -1456116, -1455068, -1454990, -1454460, -1454215, -1453260, -1452485, -1451964, -1451260, -1450921, -1450618, -1449947, -1449506, -1448468, -1447831, -1447117, -1447079, -1446426, -1442302, -1441792, -1441598, -1439527, -1438621, -1438604, -1432734, -1430647, -1426096, -1425294, -1424668, -1424354, -1423981, -1423684, -1421049, -1420906, -1420711, -1420293, -1419880, -1419454, -1418879, -1417924, -1416533, -1416177, -1416098, -1415036, -1413751, -1412526, -1412490, -1412198, -1411930, -1411193, -1409631, -1408925, -1408707, -1408524, -1408370, -1407705, -1407646, -1407447, -1407029, -1406959, -1406943, -1406939, -1406659, -1389822, -1388513, -1373945, -1368052, -1364995, -1353149, -1273769, -1273448, -1272393, -1240261, -1224926, -1217214, -1204094, -1187190, -1161664, -1156174, -1153951, -1151501, -1151195, -1148082, -1133206, -1113265, -1109108, -1064708, -1060168, -1059331, -1058303, -1057311, -1055659, -1054041, -1051195, -1049092, -1045268, -1044367, -1043968, -1041356, -1041320, -1038078, -1037865, -1037001, -1034272, -1033783, -1022136, -1013034, -979186, -970362, -955658, -938457, -932573, -927505, -926345, -910015, -904020, -901202, -897490, -878181, -872376, -851960, -850553, -844468, -843247, -840999, -840694, -838489, -837298, -829252, -826292, -814876, -801546, -789552, -787987, -785169, -784833, -782831, -782371, -782066, -781545, -781147, -779238, -775423, -773700, -765055, -761917, -759102, -755097, -755070, -749276, -746541, -745666, -740501, -735347, -735338, -732885, -731701, -728704, -727574, -722356, -717105, -716583, -713900, -708814, -700816, -679351, -671824, -669871, -667833, -666610, -666453, -663509, -657942, -657510, -644901, -629138, -596596, -594819, -592318, -579943, -578472, -576096, -575268, -574890, -573541, -572899, -571851, -570760, -569541, -569498, -567785, -564968, -564064, -562447, -561990, -559845, -553173, -552065, -542884, -542184, -537080, -534433, -531881, -529478, -524856, -523642, -519859, -514340, -513922, -510625, -507561, -507224, -501414, -501400, -496361, -493705, -480007, -458371, -440623, -409149, -407214, -406201, -406131, -402849, -402059, -395224, -391076, -390787, -390625, -385774, -384328, -384004, -373608, -372490, -372124, -370210, -352647, -337471, -290692, -290263, -284421, -280816, -277697, -273837, -268972, -248593, -246227, -242701, -240905, -237874, -235402, -233817, -226438, -207091, -168008, -132209, -132092, -132007, -131482, -131346, -130938, -130280, -129709, -126693, -126468, -126373, -125476, -124464, -124336, -123999, -123662, -123097, -122902, -122630, -121865, -121726, -121562, -120965, -120405, -118701, -118400, -117787, -117543, -117387, -117144, -117062, -116503, -115251, -115132, -113456, -112463, -112155, -111758, -111742, -111474, -111328, -111255, -110636, -110393, -108649, -101579, -96492, -95841, -94996, -93264, -91364, -90608, -90313, -89574, -87271, -77143, -74897, -73635, -39119, -38833, -32910, -28159, -20029, 79514, 213835, 399912, 20000374, 20001823, 20002205, 20002633, 20006680, 20006890, 20007132, 20007417, 20011324, 20012479, 20012526, 20013079, 20014160, 20014181, 20014579, 20014887, 20015057, 20015251, 20015274, 20015300, 20015533, 20015688, 20015725, 20015732, 20015742, 20015758, 20015795, 20016502, 20016621, 20017286, 20017349, 20021098, 20021296, 20022339, 20022659, 20022757, 20022851, 20022879, 20023182, 20023488, 20023524, 20024246, 20024809, 20025805, 20029490, 20030916, 20033146, 20033173, 20035538, 20037880, 20038859, 20040350, 20042778, 20046010, 20046120, 20050264, 20053799, 20054014, 20058684, 20061597, 20061717, 20063602, 20064211, 20064402, 20066659, 20067845, 20069878, 20075118, 20079110, 20080494, 20081054, 20081509, 20083006, 20085250, 20088325, 20090971, 20097593, 20097630, 20097871, 20103321, 20103791, 20104896, 20104955, 20108940, 20111994, 20115245, 20116092, 20123619, 20123908, 20127504, 20128111, 20128215, 20131185, 20133956, 20134081, 20137860, 20144883, 20145091, 20150599, 20150817, 20154335, 900000000, 900039384, 900039435, 900040280, 900047975, 900048034, 900048213, 900048870, 900049526, 900049585, 900050012, 900052829, 900052833, 900052834, 900052835, 900052836, 900052837, 900052838, 900052839, 900052840, 900052841, 900052842, 900052844, 900052845, 900052846, 900052847, 900052848, 900052849, 900052851, 900052853, 900052854, 900052855, 900052856) AND `city_city_translation`.`language_code` = 'ru' ) ORDER BY T3.`name` ASC; args=(-3730078, -3714993, -3714825, -3712125, -3414440, -3366242, -3212216, -3178767, -3160026, -3148348, -3106433, -3103581, -3102179, -3096108, -3091069, -3043275, -3042207, -3041912, -3040171, -3039267, -3038516, -3035173, -3034952, -3034701, -3034353, -3033871, -3033722, -3033718, -3029851, -3025025, -3024639, -3024309, -3024007, -3023495, -3023028, -3019679, -3019601, -3019132, -3015114, -3014703, -3013492, -3011273, -3006514, -3006140, -2996563, -2996523, -2996338, -2995930, -2994531, -2993218, -2990203, -2989168, -2981973, -2981545, -2980155, -2979687, -2974927, -2974462, -2972003, -2971968, -2970528, -2970141, -2969511, -2968530, -2967687, -2966930, -2966853, -2966244, -2964223, -2963575, -2962281, -2961506, -2960561, -2958321, -2950121, -2943527, -2941648, -2941280, -2936665, -2936262, -2934420, -2928684, -2928280, -2924570, -2924116, -2923678, -2923066, -2919283, -2918852, -2917908, -2916144, -2911004, -2899145, -2897205, -2896749, -2896432, -2886873, -2886746, -2883930, -2882404, -2880021, -2879191, -2877435, -2873843, -2866283, -2767043, -2764584, -2762812, -2753453, -2745636, -2744199, -2742107, -2739166, -2738616, -2737683, -2706092, -2705195, -2698521, -2679652, -2651804, -2648877, -2637882, -2625737, -2625660, -2624430, -2620663, -2615647, -2612321, -2611829, -2608164, -2607615, -2605646, -2605287, -2604911, -2604469, -2603961, -2603267, -2602512, -2602369, -2601889, -2601422, -2601144, -2600941, -2600535, -2600279, -2598194, -2597039, -2595943, -2595805, -2595386, -2594262, -2593403, -2593386, -2593226, -2592344, -2591777, -2590919, -2590498, -2589989, -2587757, -2579372, -2554935, -2554859, -2554817, -2554447, -2554000, -2553210, -2552994, -2552969, -2552809, -2552548, -2552151, -2552078, -2551757, -2551753, -2551451, -2551274, -2551235, -2551183, -2524279, -2503264, -2492129, -2482986, -2437894, -2424066, -2421883, -2404760, -2403010, -2402530, -2366485, -2353539, -2343962, -2342388, -2334555, -2334218, -2334069, -2331392, -2325645, -2276223, -2266494, -2258072, -2214877, -2173088, -2170180, -2167973, -2160205, -2159655, -2159606, -2156821, -2154520, -2154382, -2152943, -2152921, -2152403, -2152218, -2149006, -2147365, -2145932, -2145615, -2145280, -2145032, -2144863, -2144807, -2144141, -2144027, -2143610, -2140640, -2140567, -2140479, -2140452, -2112243, -2111972, -2111367, -2108361, -2106102, -2103041, -2102835, -2098033, -2097803, -2097701, -2093654, -2092770, -2092511, -2092174, -2090174, -2089356, -2088270, -2067935, -1997013, -1995515, -1995499, -1995338, -1992480, -1989985, -1982354, -1981445, -1971112, -1965564, -1964016, -1963947, -1959925, -1958757, -1956109, -1955925, -1955538, -1953257, -1951346, -1946324, -1941830, -1938815, -1935855, -1931786, -1931562, -1931546, -1930776, -1930588, -1929528, -1928564, -1925268, -1925258, -1924917, -1924465, -1922199, -1920233, -1919813, -1919548, -1912283, -1908634, -1908524, -1907161, -1905938, -1905584, -1903802, -1901835, -1900813, -1900774, -1900349, -1899743, -1898541, -1891486, -1887737, -1887191, -1883308, -1879835, -1876794, -1876356, -1871728, -1870735, -1865133, -1865057, -1862713, -1854320, -1853327, -1852370, -1849281, -1849253, -1847131, -1845975, -1843341, -1842944, -1841161, -1839098, -1839089, -1835238, -1832757, -1829320, -1829149, -1823084, -1822614, -1822294, -1821461, -1817680, -1810561, -1809855, -1804271, -1803994, -1800018, -1799639, -1794220, -1791959, -1790622, -1789153, -1788826, -1785903, -1785461, -1785434, -1783292, -1772098, -1771821, -1771505, -1771148, -1767857, -1766996, -1766950, -1762397, -1761951, -1761619, -1761123, -1760373, -1757722, -1756500, -1752234, -1751596, -1749194, -1747422, -1746443, -1743231, -1743182, -1743172, -1743065, -1742412, -1740635, -1736191, -1708147, -1704008, -1698603, -1690669, -1690444, -1690063, -1684228, -1679595, -1671447, -1669612, -1658079, -1655011, -1605526, -1603135, -1594675, -1586844, -1569058, -1563952, -1561728, -1555188, -1510346, -1508289, -1506909, -1504189, -1502950, -1502554, -1501986, -1476743, -1476233, -1476098, -1474712, -1474436, -1473937, -1473290, -1473278, -1473166, -1473153, -1471697, -1469710, -1468251, -1466824, -1464183, -1462807, -1462490, -1461464, -1461340, -1460939, -1460750, -1458949, -1457525, -1457494, -1456928, -1456813, -1456116, -1455068, -1454990, -1454460, -1454215, -1453260, -1452485, -1451964, -1451260, -1450921, -1450618, -1449947, -1449506, -1448468, -1447831, -1447117, -1447079, -1446426, -1442302, -1441792, -1441598, -1439527, -1438621, -1438604, -1432734, -1430647, -1426096, -1425294, -1424668, -1424354, -1423981, -1423684, -1421049, -1420906, -1420711, -1420293, -1419880, -1419454, -1418879, -1417924, -1416533, -1416177, -1416098, -1415036, -1413751, -1412526, -1412490, -1412198, -1411930, -1411193, -1409631, -1408925, -1408707, -1408524, -1408370, -1407705, -1407646, -1407447, -1407029, -1406959, -1406943, -1406939, -1406659, -1389822, -1388513, -1373945, -1368052, -1364995, -1353149, -1273769, -1273448, -1272393, -1240261, -1224926, -1217214, -1204094, -1187190, -1161664, -1156174, -1153951, -1151501, -1151195, -1148082, -1133206, -1113265, -1109108, -1064708, -1060168, -1059331, -1058303, -1057311, -1055659, -1054041, -1051195, -1049092, -1045268, -1044367, -1043968, -1041356, -1041320, -1038078, -1037865, -1037001, -1034272, -1033783, -1022136, -1013034, -979186, -970362, -955658, -938457, -932573, -927505, -926345, -910015, -904020, -901202, -897490, -878181, -872376, -851960, -850553, -844468, -843247, -840999, -840694, -838489, -837298, -829252, -826292, -814876, -801546, -789552, -787987, -785169, -784833, -782831, -782371, -782066, -781545, -781147, -779238, -775423, -773700, -765055, -761917, -759102, -755097, -755070, -749276, -746541, -745666, -740501, -735347, -735338, -732885, -731701, -728704, -727574, -722356, -717105, -716583, -713900, -708814, -700816, -679351, -671824, -669871, -667833, -666610, -666453, -663509, -657942, -657510, -644901, -629138, -596596, -594819, -592318, -579943, -578472, -576096, -575268, -574890, -573541, -572899, -571851, -570760, -569541, -569498, -567785, -564968, -564064, -562447, -561990, -559845, -553173, -552065, -542884, -542184, -537080, -534433, -531881, -529478, -524856, -523642, -519859, -514340, -513922, -510625, -507561, -507224, -501414, -501400, -496361, -493705, -480007, -458371, -440623, -409149, -407214, -406201, -406131, -402849, -402059, -395224, -391076, -390787, -390625, -385774, -384328, -384004, -373608, -372490, -372124, -370210, -352647, -337471, -290692, -290263, -284421, -280816, -277697, -273837, -268972, -248593, -246227, -242701, -240905, -237874, -235402, -233817, -226438, -207091, -168008, -132209, -132092, -132007, -131482, -131346, -130938, -130280, -129709, -126693, -126468, -126373, -125476, -124464, -124336, -123999, -123662, -123097, -122902, -122630, -121865, -121726, -121562, -120965, -120405, -118701, -118400, -117787, -117543, -117387, -117144, -117062, -116503, -115251, -115132, -113456, -112463, -112155, -111758, -111742, -111474, -111328, -111255, -110636, -110393, -108649, -101579, -96492, -95841, -94996, -93264, -91364, -90608, -90313, -89574, -87271, -77143, -74897, -73635, -39119, -38833, -32910, -28159, -20029, 79514, 213835, 399912, 20000374, 20001823, 20002205, 20002633, 20006680, 20006890, 20007132, 20007417, 20011324, 20012479, 20012526, 20013079, 20014160, 20014181, 20014579, 20014887, 20015057, 20015251, 20015274, 20015300, 20015533, 20015688, 20015725, 20015732, 20015742, 20015758, 20015795, 20016502, 20016621, 20017286, 20017349, 20021098, 20021296, 20022339, 20022659, 20022757, 20022851, 20022879, 20023182, 20023488, 20023524, 20024246, 20024809, 20025805, 20029490, 20030916, 20033146, 20033173, 20035538, 20037880, 20038859, 20040350, 20042778, 20046010, 20046120, 20050264, 20053799, 20054014, 20058684, 20061597, 20061717, 20063602, 20064211, 20064402, 20066659, 20067845, 20069878, 20075118, 20079110, 20080494, 20081054, 20081509, 20083006, 20085250, 20088325, 20090971, 20097593, 20097630, 20097871, 20103321, 20103791, 20104896, 20104955, 20108940, 20111994, 20115245, 20116092, 20123619, 20123908, 20127504, 20128111, 20128215, 20131185, 20133956, 20134081, 20137860, 20144883, 20145091, 20150599, 20150817, 20154335, 900000000, 900039384, 900039435, 900040280, 900047975, 900048034, 900048213, 900048870, 900049526, 900049585, 900050012, 900052829, 900052833, 900052834, 900052835, 900052836, 900052837, 900052838, 900052839, 900052840, 900052841, 900052842, 900052844, 900052845, 900052846, 900052847, 900052848, 900052849, 900052851, 900052853, 900052854, 900052855, 900052856, 'ru') +2015-07-28 11:11:46,046 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:11:46,238 [DEBUG] django.db.backends: (0.005) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:46,250 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:11:46,395 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:46,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:46,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:46,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:46,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:46,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:46,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:46,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:46,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:46,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:46,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:46,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:46,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:46,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:46,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:46,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:46,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:46,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:46,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:46,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:46,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:46,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:46,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:46,461 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:46,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:46,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:46,468 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:46,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:46,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:46,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:46,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:46,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:46,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:46,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:46,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:46,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:46,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:46,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:46,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:46,500 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:46,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:46,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:46,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:46,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:46,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:46,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:46,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:46,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:46,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:46,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:46,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:46,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:46,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:46,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:46,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:46,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:46,540 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:46,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:46,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:46,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:46,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:46,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:46,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:46,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:46,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:46,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:46,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:46,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:46,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:46,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:46,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:46,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:46,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:46,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:46,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:46,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:46,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:46,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:46,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:46,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:46,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:46,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:46,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:46,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:46,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:46,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:46,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:46,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:46,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:46,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:46,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:46,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:46,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:46,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:46,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:46,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:46,635 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:46,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:46,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:46,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:46,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:46,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:46,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:46,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:46,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:46,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:46,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:46,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:46,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:46,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:46,675 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:46,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:46,680 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:46,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:46,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:46,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:46,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:46,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:46,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:46,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:46,698 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:46,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:46,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:46,705 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:46,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:46,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:46,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:46,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:46,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:46,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:46,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:46,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:46,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:46,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:46,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:46,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:46,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:46,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:46,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:46,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:46,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:46,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:46,750 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:46,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:46,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:46,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:46,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:46,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:46,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:46,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:46,771 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:46,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:46,776 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:46,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:46,781 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:46,783 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:46,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:46,788 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:46,790 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:46,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:46,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:46,797 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:46,800 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:46,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:46,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:46,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:46,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:46,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:46,814 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:46,816 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:46,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:46,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:46,823 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:46,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:46,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:46,830 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:46,832 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:46,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:46,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:46,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:46,841 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:46,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:46,846 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:46,848 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:46,850 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:46,853 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:46,855 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:46,857 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:46,860 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:46,862 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:46,864 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:46,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:46,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:46,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:46,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:46,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:46,878 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:46,880 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:46,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:46,885 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:46,887 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:46,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:46,893 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:46,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:46,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:46,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:47,027 [DEBUG] django.db.backends: (0.124) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:11:47,496 [DEBUG] django.db.backends: (0.138) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:47,895 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:47,917 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:47,926 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:47,929 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:47,931 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:47,933 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:47,935 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:47,938 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:47,940 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:47,942 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:47,944 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:47,947 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:47,949 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:47,951 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:47,953 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:47,956 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:47,958 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:47,960 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:47,962 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:47,964 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:47,967 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:47,969 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:47,971 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:47,974 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:47,976 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:47,978 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:47,981 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:47,983 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:47,985 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:47,987 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:47,990 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:47,992 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:47,994 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:47,996 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:47,999 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:48,001 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:48,003 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:48,005 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:48,008 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:48,010 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:48,012 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:48,016 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:48,018 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:48,020 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:48,023 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:48,025 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:48,027 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:48,030 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:48,032 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:48,034 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:48,037 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:48,039 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:48,041 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:48,043 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:48,046 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:48,048 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:48,050 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:48,052 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:48,055 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:48,057 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:48,059 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:48,061 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:48,063 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:48,065 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:11:48,312 [DEBUG] django.db.backends: (0.060) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:11:48,612 [DEBUG] django.db.backends: (0.131) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:49,115 [DEBUG] django.db.backends: (0.119) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:11:49,445 [DEBUG] django.db.backends: (0.008) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:49,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:49,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:49,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:49,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:49,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:49,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:49,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:49,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:49,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:49,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:49,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:49,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:49,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:49,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:49,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:49,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:49,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:49,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:49,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:49,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:49,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:49,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:49,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:49,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:49,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:49,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:49,515 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:49,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:49,520 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:49,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:49,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:49,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:49,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:49,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:49,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:49,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:49,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:49,540 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:49,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:49,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:49,547 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:49,549 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:49,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:49,554 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:49,556 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:49,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:49,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:49,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:49,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:49,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:49,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:49,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:49,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:49,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:49,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:49,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:49,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:49,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:49,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:49,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:49,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:49,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:49,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:49,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:49,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:49,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:49,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:49,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:49,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:49,613 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:49,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:49,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:49,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:49,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:49,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:49,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:49,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:49,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:49,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:49,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:49,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:49,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:49,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:49,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:49,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:49,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:49,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:49,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:49,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:49,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:49,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:49,665 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:49,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:49,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:49,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:49,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:49,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:49,678 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:49,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:49,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:49,693 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:49,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:49,698 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:49,700 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:49,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:49,705 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:49,707 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:49,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:49,712 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:49,714 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:49,716 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:49,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:49,721 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:49,723 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:49,725 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:49,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:49,730 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:49,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:49,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:49,737 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:49,739 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:49,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:49,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:49,746 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:49,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:49,750 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:49,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:49,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:49,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:49,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:49,761 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:49,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:49,766 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:49,768 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:49,770 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:49,773 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:49,775 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:49,777 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:49,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:49,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:49,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:49,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:49,788 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:49,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:49,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:49,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:49,797 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:49,800 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:49,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:49,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:49,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:49,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:49,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:49,813 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:49,815 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:49,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:49,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:49,822 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:49,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:49,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:49,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:49,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:49,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:49,836 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:49,838 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:49,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:49,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:49,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:49,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:49,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:49,852 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:49,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:49,856 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:49,858 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:49,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:49,863 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:49,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:49,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:49,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:49,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:49,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:49,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:49,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:49,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:49,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:49,886 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:49,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:49,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:49,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:49,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:49,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:49,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:49,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:49,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:49,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:49,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:49,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:49,913 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:49,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:49,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:49,920 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:49,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:49,925 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:49,927 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:49,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:49,933 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:50,077 [DEBUG] django.db.backends: (0.133) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:50,536 [DEBUG] django.db.backends: (0.008) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:50,547 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:50,549 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:50,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:50,554 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:50,556 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:50,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:50,561 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:50,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:50,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:50,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:50,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:50,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:50,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:50,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:50,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:50,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:50,583 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:50,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:50,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:50,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:50,592 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:50,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:50,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:50,599 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:50,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:50,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:50,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:50,608 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:50,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:50,613 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:50,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:50,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:50,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:50,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:50,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:50,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:50,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:50,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:50,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:50,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:50,638 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:50,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:50,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:50,645 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:50,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:50,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:50,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:50,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:50,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:50,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:50,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:50,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:50,665 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:50,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:50,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:50,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:50,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:50,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:50,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:50,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:50,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:50,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:50,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:50,690 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:50,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:50,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:50,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:50,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:50,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:50,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:50,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:50,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:50,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:50,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:50,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:50,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:50,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:50,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:50,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:50,726 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:50,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:50,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:50,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:50,735 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:50,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:50,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:50,742 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:50,744 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:50,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:50,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:50,751 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:50,753 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:50,756 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:50,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:50,760 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:50,762 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:50,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:50,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:50,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:50,771 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:50,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:50,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:50,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:50,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:50,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:50,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:50,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:50,798 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:50,800 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:50,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:50,805 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:50,807 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:50,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:50,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:50,814 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:50,816 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:50,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:50,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:50,823 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:50,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:50,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:50,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:50,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:50,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:50,836 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:50,838 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:50,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:50,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:50,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:50,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:50,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:50,852 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:50,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:50,856 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:50,859 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:50,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:50,863 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:50,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:50,868 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:50,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:50,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:50,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:50,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:50,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:50,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:50,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:50,886 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:50,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:50,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:50,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:50,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:50,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:50,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:50,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:50,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:50,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:50,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:50,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:50,913 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:50,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:50,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:50,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:50,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:50,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:50,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:50,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:50,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:50,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:50,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:50,938 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:50,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:50,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:50,945 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:50,947 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:50,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:50,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:50,954 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:50,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:50,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:50,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:50,963 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:50,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:50,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:50,969 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:50,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:50,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:50,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:50,978 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:50,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:50,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:50,985 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:50,987 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:50,989 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:50,992 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:50,994 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:50,996 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:50,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:51,001 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:51,003 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:51,005 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:51,008 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:51,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:51,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:51,015 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:51,017 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:51,062 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:51,085 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:51,225 [DEBUG] django.db.backends: (0.138) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:51,610 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:51,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:51,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:51,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:51,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:51,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:51,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:51,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:51,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:51,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:51,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:51,643 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:51,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:51,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:51,650 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:51,652 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:51,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:51,657 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:51,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:51,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:51,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:51,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:51,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:51,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:51,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:51,675 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:51,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:51,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:51,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:51,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:51,686 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:51,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:51,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:51,693 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:51,695 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:51,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:51,700 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:51,702 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:51,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:51,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:51,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:51,711 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:51,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:51,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:51,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:51,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:51,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:51,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:51,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:51,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:51,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:51,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:51,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:51,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:51,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:51,742 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:51,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:51,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:51,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:51,751 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:51,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:51,756 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:51,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:51,760 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:51,763 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:51,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:51,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:51,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:51,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:51,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:51,776 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:51,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:51,781 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:51,783 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:51,785 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:51,788 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:51,790 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:51,792 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:51,794 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:51,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:51,799 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:51,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:51,803 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:51,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:51,808 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:51,810 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:51,812 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:51,815 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:51,817 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:51,819 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:51,821 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:51,824 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:51,826 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:51,828 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:51,830 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:51,833 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:51,835 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:51,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:51,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:51,842 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:51,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:51,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:51,857 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:51,859 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:51,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:51,863 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:51,866 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:51,868 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:51,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:51,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:51,875 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:51,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:51,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:51,882 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:51,884 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:51,887 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:51,889 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:51,891 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:51,894 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:51,896 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:51,898 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:51,900 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:51,903 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:51,905 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:51,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:51,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:51,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:51,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:51,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:51,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:51,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:51,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:51,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:51,928 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:51,930 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:51,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:51,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:51,937 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:51,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:51,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:51,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:51,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:51,948 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:51,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:51,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:51,955 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:51,957 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:51,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:51,962 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:51,964 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:51,966 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:51,968 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:51,971 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:51,973 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:51,975 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:51,977 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:51,980 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:51,982 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:51,984 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:51,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:51,989 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:51,991 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:51,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:51,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:51,998 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:52,000 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:52,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:52,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:52,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:52,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:52,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:52,014 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:52,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:52,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:52,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:52,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:52,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:52,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:52,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:52,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:52,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:52,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:52,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:52,040 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:52,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:52,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:52,047 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:52,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:52,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:52,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:52,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:52,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:52,061 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:52,063 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:52,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:52,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:52,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:52,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:52,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:52,076 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:52,079 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:52,081 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:52,084 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:52,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:52,088 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:52,090 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:52,095 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:52,121 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:52,132 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:52,134 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:52,136 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:52,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:52,144 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:52,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:52,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:52,151 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:52,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:52,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:52,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:52,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:52,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:52,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:52,167 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:52,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:52,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:52,174 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:52,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:52,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:52,181 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:52,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:52,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:52,188 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:52,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:52,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:52,195 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:52,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:52,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:52,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:52,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:52,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:52,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:52,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:52,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:52,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:52,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:52,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:52,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:52,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:52,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:52,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:52,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:52,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:52,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:52,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:52,240 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:52,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:52,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:52,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:52,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:52,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:52,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:52,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:52,266 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:52,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:52,273 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:52,275 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:52,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:52,280 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:52,282 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:52,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:52,287 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:52,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:52,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:52,294 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:52,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:52,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:52,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:52,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:52,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:52,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:52,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:52,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:52,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:52,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:52,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:52,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:52,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:52,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:52,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:52,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:52,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:52,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:52,337 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:52,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:52,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:52,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:52,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:52,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:52,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:52,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:52,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:52,357 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:52,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:52,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:52,364 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:52,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:52,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:52,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:52,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:52,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:52,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:52,388 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:52,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:52,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:52,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:52,397 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:52,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:52,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:52,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:52,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:52,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:52,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:52,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:52,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:52,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:52,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:52,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:52,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:52,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:52,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:52,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:52,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:52,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:52,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:52,440 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:52,442 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:52,445 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:52,447 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:52,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:52,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:52,454 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:52,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:52,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:52,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:52,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:52,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:52,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:52,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:52,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:52,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:52,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:52,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:52,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:52,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:52,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:52,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:52,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:52,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:52,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:52,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:52,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:52,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:52,503 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:52,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:52,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:52,510 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:52,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:52,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:52,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:52,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:52,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:52,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:52,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:52,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:52,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:52,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:52,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:52,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:52,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:52,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:52,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:52,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:52,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:52,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:52,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:52,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:52,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:52,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:52,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:52,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:52,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:52,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:52,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:52,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:52,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:52,578 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:52,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:52,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:52,585 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:52,587 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:52,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:52,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:52,594 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:52,596 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:52,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:52,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:52,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:52,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:52,608 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:52,610 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:52,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:52,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:52,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:52,621 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:11:52,691 [DEBUG] django.db.backends: (0.060) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:11:52,864 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ORDER BY `place_conference_placeconference_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:52,877 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:52,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:52,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:52,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:52,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:52,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:52,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:52,902 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:52,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:52,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:52,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:52,911 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:52,913 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:52,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:52,918 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:52,920 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:52,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:52,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:52,927 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:52,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:52,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:52,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:52,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:52,938 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:52,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:52,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:52,945 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:52,947 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:52,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:52,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:52,954 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:52,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:52,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:52,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:52,963 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:52,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:52,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:52,969 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:52,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:52,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:52,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:52,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:52,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:52,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:52,985 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:52,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:52,990 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:52,992 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:52,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:52,997 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:52,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:53,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:53,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:53,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:53,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:53,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:53,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:53,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:53,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:53,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:53,023 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:53,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:53,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:53,030 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:53,032 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:53,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:53,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:53,039 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:53,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:53,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:53,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:53,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:53,050 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:53,053 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:53,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:53,057 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:53,059 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:53,062 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:53,064 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:53,066 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:53,068 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:53,071 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:53,073 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:53,075 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:53,077 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:53,080 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:53,082 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:53,084 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:53,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:53,089 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:53,091 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:53,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:53,095 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:53,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:53,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:53,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:53,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:53,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:53,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:53,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:53,113 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:53,124 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:53,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:53,129 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:53,131 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:53,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:53,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:53,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:53,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:53,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:53,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:53,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:53,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:53,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:53,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:53,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:53,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:53,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:53,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:53,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:53,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:53,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:53,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:53,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:53,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:53,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:53,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:53,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:53,186 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:53,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:53,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:53,193 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:53,195 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:53,198 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:53,200 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:53,202 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:53,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:53,207 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:53,209 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:53,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:53,214 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:53,216 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:53,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:53,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:53,223 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:53,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:53,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:53,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:53,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:53,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:53,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:53,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:53,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:53,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:53,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:53,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:53,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:53,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:53,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:53,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:53,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:53,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:53,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:53,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:53,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:53,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:53,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:53,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:53,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:53,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:53,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:53,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:53,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:53,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:53,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:53,292 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:53,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:53,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:53,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:53,301 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:53,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:53,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:53,308 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:53,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:53,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:53,315 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:53,317 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:53,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:53,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:53,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:53,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:53,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:53,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:53,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:53,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:53,337 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:53,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:53,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:53,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:53,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:53,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:53,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:53,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:53,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:53,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:53,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:53,370 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:53,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:53,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:53,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:53,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:53,397 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:53,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:53,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:53,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:53,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:53,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:53,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:53,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:53,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:53,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:53,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:53,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:53,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:53,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:53,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:53,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:53,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:53,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:53,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:53,440 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:53,442 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:53,445 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:53,447 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:53,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:53,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:53,454 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:53,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:53,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:53,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:53,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:53,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:53,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:53,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:53,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:53,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:53,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:53,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:53,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:53,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:53,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:53,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:53,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:53,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:53,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:53,496 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:53,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:53,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:53,503 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:53,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:53,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:53,510 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:53,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:53,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:53,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:53,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:53,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:53,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:53,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:53,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:53,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:53,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:53,534 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:53,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:53,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:53,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:53,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:53,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:53,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:53,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:53,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:53,554 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:53,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:53,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:53,561 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:53,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:53,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:53,568 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:53,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:53,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:53,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:53,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:53,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:53,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:53,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:53,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:53,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:53,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:53,592 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:53,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:53,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:53,599 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:53,601 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:53,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:53,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:53,608 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:53,610 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:53,613 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:53,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:53,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:53,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:53,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:53,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:53,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:53,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:53,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:53,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:53,635 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:53,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:53,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:53,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:53,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:53,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:53,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:53,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:53,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:53,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:53,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:53,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:53,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:53,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:53,671 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:53,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:53,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:53,678 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:53,680 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:53,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:53,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:53,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:53,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:53,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:53,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:53,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:53,698 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:53,700 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:53,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:53,705 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:53,707 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:53,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:53,712 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:53,714 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:53,716 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:53,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:53,721 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:53,723 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:53,725 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:53,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:53,730 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:53,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:53,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:53,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:53,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:53,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:53,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:53,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:53,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:53,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:53,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:53,756 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:53,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:53,761 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:53,763 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:53,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:53,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:53,770 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:53,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:53,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:53,776 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:53,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:53,781 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:53,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:53,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:53,788 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:53,790 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:53,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:53,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:53,797 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:53,799 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:53,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:53,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:53,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:53,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:53,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:53,813 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:53,816 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:53,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:53,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:53,822 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:53,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:53,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:53,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:53,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:53,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:53,836 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:53,838 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:53,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:53,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:53,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:53,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:53,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:53,852 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:53,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:53,882 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:53,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:53,894 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:53,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:53,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:53,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:53,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:53,907 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:53,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:53,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:53,914 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:53,916 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:53,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:53,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:53,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:53,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:53,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:53,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:53,934 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:53,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:53,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:53,941 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:53,943 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:53,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:53,948 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:53,950 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:53,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:53,955 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:53,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:53,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:53,962 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:53,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:53,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:53,969 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:53,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:53,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:53,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:53,978 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:53,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:53,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:53,985 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:53,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:53,990 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:53,992 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:53,994 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:53,997 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:53,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:54,001 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:54,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:54,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:54,008 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:54,010 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:54,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:54,015 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:54,017 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:54,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:54,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:54,024 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:54,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:54,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:54,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:54,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:54,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:54,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:54,040 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:54,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:54,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:54,047 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:54,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:54,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:54,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:54,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:54,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:54,061 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:54,063 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:54,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:54,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:54,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:54,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:54,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:54,076 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:54,079 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:54,081 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:54,083 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:54,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:54,088 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:54,091 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:54,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:54,096 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:54,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:54,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:54,103 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:54,105 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:54,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:54,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:54,112 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:54,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:54,117 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:54,119 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:54,122 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:54,124 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:54,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:54,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:54,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:54,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:54,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:54,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:54,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:54,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:54,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:54,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:54,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:54,162 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:54,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:54,167 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:54,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:54,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:54,174 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:54,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:54,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:54,181 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:54,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:54,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:54,188 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:54,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:54,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:54,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:54,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:54,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:54,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:54,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:54,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:54,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:54,210 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:54,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:54,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:54,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:54,219 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:54,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:54,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:54,226 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:54,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:54,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:54,233 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:54,235 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:54,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:54,240 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:54,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:54,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:54,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:54,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:54,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:54,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:54,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:54,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:54,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:54,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:54,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:54,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:54,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:54,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:54,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:54,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:54,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:54,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:54,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:54,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:54,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:54,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:54,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:54,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:54,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:54,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:54,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:54,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:54,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:54,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:54,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:54,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:54,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:54,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:54,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:54,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:54,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:54,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:54,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:54,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:54,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:54,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:54,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:54,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:54,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:54,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:54,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:54,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:54,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:54,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:54,357 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:54,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:54,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:54,364 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:54,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:54,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:54,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:54,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:54,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:54,390 [DEBUG] django.db.backends: (0.008) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:54,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:54,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:54,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:54,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:54,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:54,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:54,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:54,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:54,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:54,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:54,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:54,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:54,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:54,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:54,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:54,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:54,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:54,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:54,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:54,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:54,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:54,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:54,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:54,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:54,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:54,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:54,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:54,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:54,475 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:54,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:54,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:54,482 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:54,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:54,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:54,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:54,491 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:54,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:54,496 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:54,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:54,500 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:54,503 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:54,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:54,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:54,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:54,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:54,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:54,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:54,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:54,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:54,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:54,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:54,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:54,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:54,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:54,534 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:54,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:54,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:54,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:54,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:54,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:54,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:54,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:54,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:54,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:54,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:54,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:54,561 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:54,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:54,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:54,568 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:54,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:54,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:54,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:54,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:54,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:54,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:54,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:54,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:54,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:54,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:54,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:54,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:54,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:54,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:54,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:54,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:54,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:54,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:54,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:54,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:54,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:54,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:54,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:54,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:54,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:54,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:54,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:54,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:54,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:54,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:54,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:54,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:54,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:54,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:54,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:54,650 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:54,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:54,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:54,657 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:54,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:54,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:54,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:54,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:54,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:54,671 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:54,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:54,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:54,678 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:54,680 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:54,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:54,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:54,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:54,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:54,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:54,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:54,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:54,698 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:54,700 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:54,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:54,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:54,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:54,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:54,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:54,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:54,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:54,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:54,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:54,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:54,726 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:54,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:54,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:54,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:54,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:54,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:54,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:54,742 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:54,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:54,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:54,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:54,751 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:54,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:54,756 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:54,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:54,760 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:54,763 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:54,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:54,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:54,770 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:54,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:54,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:54,776 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:54,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:54,781 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:54,783 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:54,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:54,788 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:54,790 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:54,792 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:54,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:54,797 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:54,799 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:54,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:54,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:54,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:54,808 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:54,810 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:54,813 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:54,815 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:54,817 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:54,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:54,822 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:54,824 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:54,826 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:54,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:54,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:54,833 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:54,835 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:54,838 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:54,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:54,842 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:54,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:54,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:54,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:54,851 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:54,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:54,856 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:54,858 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:54,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:54,863 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:54,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:54,868 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:54,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:54,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:54,875 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:54,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:11:55,202 [DEBUG] django.db.backends: (0.000) SELECT `accounts_user`.`id`, `accounts_user`.`password`, `accounts_user`.`last_login`, `accounts_user`.`is_superuser`, `accounts_user`.`email`, `accounts_user`.`username`, `accounts_user`.`first_name`, `accounts_user`.`last_name`, `accounts_user`.`rating`, `accounts_user`.`url`, `accounts_user`.`is_active`, `accounts_user`.`is_staff`, `accounts_user`.`is_admin`, `accounts_user`.`date_joined`, `accounts_user`.`date_registered`, `accounts_user`.`date_modified`, `accounts_user`.`organiser_id`, `accounts_user`.`translator_id`, `accounts_user`.`company_id`, `accounts_user`.`position` FROM `accounts_user` WHERE `accounts_user`.`id` = 58304 ; args=(58304,) +2015-07-28 11:11:55,206 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `django_messages_message` WHERE (`django_messages_message`.`recipient_id` = 58304 AND `django_messages_message`.`read_at` IS NULL AND `django_messages_message`.`recipient_deleted_at` IS NULL); args=(58304,) +2015-07-28 11:11:55,212 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 1 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(1, 'ru') +2015-07-28 11:11:55,218 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 2 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(2, 'ru') +2015-07-28 11:11:55,252 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:55,319 [DEBUG] django.db.backends: (0.002) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment`, `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code`, `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id`, `city_city`.`id`, `city_city`.`services`, `city_city`.`url`, `city_city`.`old_url`, `city_city`.`inflect`, `city_city`.`country_id`, `city_city`.`code_IATA_id`, `city_city`.`population`, `city_city`.`phone_code`, `city_city`.`created`, `city_city`.`modified`, `city_city_translation`.`id`, `city_city_translation`.`name`, `city_city_translation`.`region`, `city_city_translation`.`transport`, `city_city_translation`.`description`, `city_city_translation`.`famous_places`, `city_city_translation`.`shoping`, `city_city_translation`.`title`, `city_city_translation`.`descriptions`, `city_city_translation`.`keywords`, `city_city_translation`.`language_code`, `city_city_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published`, `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`main_page` = 1 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(1, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,326 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'exposition' AND `django_content_type`.`app_label` = 'exposition' ); args=('exposition', u'exposition') +2015-07-28 11:11:55,328 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7358 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7358, 28, 'preview') +2015-07-28 11:11:55,329 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/WIRE.png] at [220x220] +2015-07-28 11:11:55,334 [DEBUG] django.db.backends: (0.000) SELECT `accounts_calendar`.`id`, `accounts_calendar`.`user_id` FROM `accounts_calendar` WHERE `accounts_calendar`.`user_id` = 58304 ; args=(58304,) +2015-07-28 11:11:55,337 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,340 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,345 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7358 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7358, 'ru') +2015-07-28 11:11:55,349 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7523 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7523, 28, 'preview') +2015-07-28 11:11:55,349 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/Rosupack.png] at [220x220] +2015-07-28 11:11:55,353 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,356 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,359 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7523 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7523, 'ru') +2015-07-28 11:11:55,362 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 8108 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(8108, 28, 'preview') +2015-07-28 11:11:55,362 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [[]] at [220x220] +2015-07-28 11:11:55,366 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,369 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:11:55,371 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 8108 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(8108, 'ru') +2015-07-28 11:11:55,437 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 1) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:11:55,444 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 54 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,449 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 51 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 51, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,455 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 48 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 48, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,460 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 39 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 39, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,466 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 37 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 37, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,472 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 31 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 31, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,474 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 2) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:11:55,483 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 87 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 87, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,489 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 84 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 84, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,494 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 74 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 74, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,500 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 70 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 70, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,505 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 68 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 68, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,511 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 54 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:11:55,512 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/expomilano_2015_3.jpg] at [80x80] +2015-07-28 11:11:55,513 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/3dprint.jpg] at [80x80] +2015-07-28 11:11:55,515 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/rif.png] at [80x80] +2015-07-28 11:11:55,518 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'article' AND `django_content_type`.`app_label` = 'article' ); args=('article', u'article') +2015-07-28 11:11:55,520 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:11:55,522 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:11:55,522 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/oborudovanie.png] at [220x100] +2015-07-28 11:11:55,525 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:11:55,527 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:11:55,527 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/strategii_reklami.png] at [220x100] +2015-07-28 11:11:55,530 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 40 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(40, 10, 'preview') +2015-07-28 11:11:55,540 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:11:55,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:11:55,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:11:55,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:11:55,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:11:55,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:11:55,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:11:55,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:11:55,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:11:55,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:11:55,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:11:55,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:11:55,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:11:55,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:11:55,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:11:55,594 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:11:55,596 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:11:55,599 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:11:55,601 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:11:55,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:11:55,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:11:55,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:11:55,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:11:55,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:11:55,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:11:55,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:11:55,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:11:55,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:11:55,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:11:55,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:11:55,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:11:55,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:11:55,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:11:55,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:11:55,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:11:55,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:11:55,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:11:55,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:11:55,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:11:55,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:11:55,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:11:55,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:11:55,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:11:55,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:11:55,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:11:55,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:11:55,671 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:11:55,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:11:55,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:11:55,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:11:55,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:11:55,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:11:55,686 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:11:55,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:11:55,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:11:55,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:11:55,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:11:55,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:11:55,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:11:55,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:11:55,707 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:11:55,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:11:55,712 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:11:55,714 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:11:55,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:11:55,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:11:55,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:11:55,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:11:55,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:11:55,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:11:55,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:11:55,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:11:55,737 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:11:55,739 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:11:55,742 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:11:55,744 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:11:55,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:11:55,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:11:55,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:11:55,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:11:55,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:11:55,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:11:55,762 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:11:55,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:11:55,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:11:55,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:11:55,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:11:55,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:11:55,777 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:11:55,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:11:55,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:11:55,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:11:55,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:11:55,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:11:55,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:11:55,794 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:11:55,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:11:55,799 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:11:55,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:11:55,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:11:55,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:11:55,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:11:55,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:11:55,814 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:11:55,817 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:11:55,819 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:11:55,822 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:11:55,824 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:11:55,826 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:11:55,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:11:55,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:11:55,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:11:55,836 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:11:55,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:11:55,841 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:11:55,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:11:55,846 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:11:55,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:11:55,851 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:11:55,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:11:55,856 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:11:55,859 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:11:55,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:11:55,864 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:11:55,866 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:11:55,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:11:55,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:11:55,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:11:55,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:11:55,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:11:55,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:11:55,884 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:11:55,886 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:11:55,889 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:11:55,891 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:11:55,894 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:11:55,896 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:11:55,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:11:55,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:11:55,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:11:55,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:11:55,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:11:55,911 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:11:55,914 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:11:55,916 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:11:55,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:11:55,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:11:55,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:11:55,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:11:55,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:11:55,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:11:55,934 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:11:55,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:11:55,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:11:55,941 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:11:55,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:11:55,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:11:55,948 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:11:55,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:11:55,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:11:55,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:11:55,959 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:11:55,961 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:11:55,964 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:11:55,966 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:11:55,968 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:11:55,971 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:11:55,973 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:11:55,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:11:55,978 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:11:55,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:11:55,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:11:55,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:11:55,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:11:55,991 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:11:55,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:11:55,996 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:11:55,998 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:11:56,001 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:11:56,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:11:56,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:11:56,010 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:11:56,012 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:11:56,015 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:11:56,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:11:56,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:11:56,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:11:56,028 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:11:56,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:11:56,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:11:56,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:11:56,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:11:56,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:11:56,044 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:11:56,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:11:56,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:11:56,051 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:11:56,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:11:56,057 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:11:56,060 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:11:56,062 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:11:56,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:11:56,068 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:11:56,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:11:56,073 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:11:56,076 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:28,993 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:28,995 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,015 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:29,016 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,032 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:29,033 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,088 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:29,089 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,156 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:29,157 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,165 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:17:29,166 [DEBUG] django.db.backends: (0.001) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:17:29,226 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:29,233 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:29,235 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:29,238 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:29,240 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:29,243 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:29,245 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:29,248 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:29,250 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:29,252 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:29,255 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:29,257 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:29,259 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:29,262 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:29,264 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:29,267 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:29,269 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:29,271 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:29,274 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:29,276 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:29,278 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:29,280 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:29,283 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:29,285 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:29,287 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:29,290 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:29,292 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:29,294 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:29,297 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:29,299 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:29,301 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:29,303 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:29,306 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:29,308 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:29,310 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:29,313 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:29,315 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:29,317 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:29,320 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:29,322 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:29,324 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:29,327 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:29,329 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:29,331 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:29,333 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:29,336 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:29,338 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:29,340 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:29,343 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:29,345 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:29,347 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:29,349 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:29,352 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:29,354 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:29,356 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:29,359 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:29,361 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:29,363 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:29,366 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:29,368 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:29,370 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:29,373 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:29,376 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:17:29,495 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:17:29,613 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:29,623 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:17:29,814 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:29,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:29,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:29,830 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:29,832 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:29,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:29,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:29,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:29,841 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:29,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:29,846 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:29,848 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:29,850 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:29,853 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:29,855 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:29,857 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:29,860 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:29,862 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:29,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:29,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:29,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:29,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:29,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:29,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:29,878 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:29,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:29,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:29,885 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:29,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:29,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:29,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:29,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:29,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:29,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:29,902 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:29,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:29,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:29,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:29,911 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:29,913 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:29,916 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:29,918 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:29,920 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:29,923 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:29,925 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:29,928 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:29,930 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:29,932 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:29,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:29,937 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:29,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:29,941 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:29,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:29,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:29,948 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:29,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:29,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:29,955 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:29,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:29,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:29,962 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:29,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:29,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:29,969 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:29,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:29,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:29,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:29,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:29,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:29,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:29,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:29,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:29,990 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:29,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:29,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:29,998 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:30,000 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:30,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:30,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:30,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:30,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:30,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:30,014 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:30,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:30,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:30,021 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:30,023 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:30,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:30,028 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:30,030 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:30,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:30,035 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:30,037 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:30,040 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:30,042 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:30,044 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:30,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:30,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:30,053 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:30,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:30,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:30,068 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:30,071 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:30,073 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:30,075 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:30,078 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:30,080 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:30,083 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:30,085 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:30,087 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:30,090 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:30,092 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:30,095 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:30,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:30,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:30,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:30,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:30,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:30,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:30,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:30,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:30,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:30,118 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:30,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:30,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:30,125 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:30,127 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:30,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:30,132 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:30,134 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:30,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:30,139 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:30,141 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:30,143 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:30,146 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:30,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:30,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:30,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:30,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:30,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:30,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:30,162 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:30,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:30,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:30,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:30,171 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:30,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:30,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:30,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:30,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:30,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:30,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:30,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:30,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:30,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:30,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:30,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:30,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:30,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:30,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:30,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:30,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:30,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:30,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:30,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:30,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:30,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:30,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:30,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:30,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:30,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:30,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:30,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:30,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:30,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:30,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:30,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:30,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:30,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:30,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:30,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:30,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:30,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:30,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:30,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:30,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:30,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:30,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:30,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:30,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:30,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:30,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:30,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:30,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:30,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:30,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:30,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:30,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:30,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:30,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:30,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:30,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:30,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:30,308 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:30,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:30,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:30,434 [DEBUG] django.db.backends: (0.117) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:17:30,890 [DEBUG] django.db.backends: (0.136) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:31,276 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:31,301 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:31,307 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:31,310 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:31,312 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:31,314 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:31,317 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:31,319 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:31,323 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:31,327 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:31,330 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:31,333 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:31,336 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:31,339 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:31,342 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:31,345 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:31,348 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:31,350 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:31,354 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:31,357 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:31,360 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:31,362 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:31,365 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:31,368 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:31,371 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:31,373 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:31,377 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:31,379 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:31,383 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:31,385 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:31,388 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:31,391 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:31,394 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:31,397 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:31,401 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:31,405 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:31,408 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:31,411 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:31,414 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:31,417 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:31,421 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:31,424 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:31,428 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:31,431 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:31,435 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:31,438 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:31,442 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:31,445 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:31,448 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:31,452 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:31,456 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:31,459 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:31,462 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:31,465 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:31,468 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:31,472 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:31,475 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:31,478 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:31,482 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:31,486 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:31,489 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:31,492 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:31,495 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:31,497 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:17:31,820 [DEBUG] django.db.backends: (0.073) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:17:32,201 [DEBUG] django.db.backends: (0.171) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:32,764 [DEBUG] django.db.backends: (0.116) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:17:33,086 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:33,097 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:33,099 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:33,101 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:33,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:33,106 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:33,108 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:33,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:33,113 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:33,115 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:33,118 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:33,120 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:33,122 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:33,125 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:33,127 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:33,129 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:33,132 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:33,134 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:33,136 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:33,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:33,141 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:33,143 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:33,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:33,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:33,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:33,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:33,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:33,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:33,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:33,162 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:33,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:33,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:33,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:33,171 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:33,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:33,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:33,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:33,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:33,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:33,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:33,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:33,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:33,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:33,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:33,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:33,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:33,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:33,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:33,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:33,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:33,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:33,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:33,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:33,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:33,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:33,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:33,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:33,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:33,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:33,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:33,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:33,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:33,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:33,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:33,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:33,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:33,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:33,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:33,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:33,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:33,257 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:33,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:33,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:33,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:33,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:33,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:33,271 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:33,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:33,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:33,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:33,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:33,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:33,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:33,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:33,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:33,292 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:33,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:33,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:33,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:33,301 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:33,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:33,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:33,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:33,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:33,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:33,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:33,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:33,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:33,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:33,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:33,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:33,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:33,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:33,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:33,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:33,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:33,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:33,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:33,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:33,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:33,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:33,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:33,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:33,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:33,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:33,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:33,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:33,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:33,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:33,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:33,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:33,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:33,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:33,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:33,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:33,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:33,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:33,398 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:33,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:33,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:33,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:33,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:33,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:33,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:33,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:33,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:33,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:33,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:33,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:33,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:33,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:33,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:33,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:33,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:33,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:33,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:33,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:33,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:33,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:33,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:33,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:33,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:33,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:33,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:33,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:33,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:33,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:33,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:33,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:33,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:33,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:33,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:33,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:33,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:33,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:33,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:33,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:33,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:33,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:33,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:33,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:33,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:33,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:33,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:33,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:33,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:33,510 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:33,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:33,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:33,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:33,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:33,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:33,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:33,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:33,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:33,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:33,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:33,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:33,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:33,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:33,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:33,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:33,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:33,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:33,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:33,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:33,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:33,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:33,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:33,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:33,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:33,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:33,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:33,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:33,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:33,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:33,587 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:33,732 [DEBUG] django.db.backends: (0.134) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:34,110 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:34,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:34,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:34,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:34,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:34,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:34,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:34,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:34,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:34,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:34,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:34,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:34,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:34,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:34,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:34,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:34,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:34,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:34,162 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:34,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:34,167 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:34,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:34,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:34,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:34,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:34,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:34,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:34,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:34,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:34,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:34,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:34,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:34,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:34,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:34,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:34,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:34,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:34,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:34,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:34,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:34,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:34,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:34,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:34,223 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:34,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:34,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:34,230 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:34,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:34,235 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:34,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:34,240 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:34,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:34,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:34,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:34,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:34,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:34,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:34,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:34,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:34,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:34,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:34,266 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:34,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:34,271 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:34,273 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:34,275 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:34,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:34,280 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:34,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:34,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:34,287 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:34,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:34,292 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:34,294 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:34,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:34,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:34,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:34,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:34,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:34,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:34,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:34,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:34,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:34,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:34,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:34,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:34,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:34,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:34,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:34,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:34,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:34,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:34,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:34,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:34,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:34,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:34,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:34,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:34,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:34,357 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:34,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:34,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:34,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:34,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:34,378 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:34,380 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:34,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:34,385 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:34,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:34,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:34,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:34,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:34,397 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:34,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:34,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:34,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:34,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:34,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:34,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:34,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:34,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:34,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:34,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:34,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:34,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:34,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:34,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:34,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:34,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:34,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:34,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:34,442 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:34,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:34,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:34,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:34,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:34,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:34,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:34,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:34,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:34,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:34,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:34,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:34,470 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:34,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:34,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:34,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:34,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:34,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:34,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:34,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:34,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:34,491 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:34,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:34,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:34,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:34,500 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:34,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:34,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:34,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:34,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:34,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:34,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:34,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:34,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:34,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:34,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:34,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:34,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:34,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:34,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:34,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:34,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:34,540 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:34,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:34,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:34,547 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:34,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:34,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:34,554 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:34,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:34,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:34,561 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:34,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:34,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:34,568 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:34,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:34,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:34,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:34,578 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:34,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:34,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:34,585 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:34,587 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:34,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:34,592 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:34,594 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:34,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:34,599 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:34,601 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:34,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:34,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:34,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:34,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:34,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:34,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:34,665 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:34,777 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:34,919 [DEBUG] django.db.backends: (0.140) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:35,299 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:35,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:35,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:35,315 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:35,317 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:35,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:35,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:35,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:35,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:35,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:35,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:35,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:35,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:35,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:35,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:35,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:35,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:35,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:35,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:35,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:35,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:35,357 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:35,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:35,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:35,364 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:35,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:35,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:35,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:35,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:35,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:35,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:35,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:35,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:35,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:35,388 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:35,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:35,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:35,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:35,398 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:35,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:35,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:35,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:35,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:35,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:35,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:35,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:35,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:35,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:35,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:35,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:35,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:35,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:35,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:35,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:35,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:35,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:35,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:35,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:35,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:35,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:35,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:35,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:35,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:35,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:35,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:35,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:35,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:35,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:35,470 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:35,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:35,475 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:35,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:35,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:35,482 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:35,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:35,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:35,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:35,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:35,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:35,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:35,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:35,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:35,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:35,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:35,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:35,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:35,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:35,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:35,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:35,520 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:35,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:35,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:35,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:35,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:35,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:35,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:35,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:35,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:35,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:35,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:35,547 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:35,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:35,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:35,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:35,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:35,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:35,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:35,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:35,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:35,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:35,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:35,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:35,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:35,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:35,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:35,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:35,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:35,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:35,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:35,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:35,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:35,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:35,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:35,610 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:35,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:35,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:35,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:35,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:35,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:35,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:35,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:35,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:35,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:35,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:35,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:35,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:35,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:35,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:35,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:35,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:35,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:35,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:35,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:35,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:35,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:35,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:35,665 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:35,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:35,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:35,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:35,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:35,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:35,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:35,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:35,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:35,686 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:35,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:35,690 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:35,693 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:35,695 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:35,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:35,700 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:35,702 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:35,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:35,707 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:35,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:35,711 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:35,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:35,716 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:35,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:35,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:35,723 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:35,725 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:35,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:35,730 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:35,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:35,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:35,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:35,739 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:35,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:35,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:35,746 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:35,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:35,750 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:35,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:35,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:35,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:35,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:35,762 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:35,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:35,766 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:35,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:35,771 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:35,773 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:35,776 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:35,778 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:35,780 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:35,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:35,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:35,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:35,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:35,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:35,798 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:35,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:35,803 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:35,805 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:35,809 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:35,832 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:35,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:35,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:35,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:35,850 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:35,852 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:35,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:35,857 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:35,859 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:35,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:35,864 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:35,866 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:35,868 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:35,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:35,873 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:35,875 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:35,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:35,880 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:35,882 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:35,884 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:35,887 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:35,889 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:35,891 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:35,893 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:35,896 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:35,898 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:35,900 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:35,903 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:35,905 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:35,907 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:35,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:35,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:35,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:35,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:35,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:35,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:35,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:35,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:35,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:35,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:35,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:35,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:35,938 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:35,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:35,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:35,945 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:35,947 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:35,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:35,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:35,954 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:35,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:35,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:35,961 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:35,963 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:35,966 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:35,968 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:35,970 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:35,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:35,975 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:35,977 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:35,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:35,982 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:35,984 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:35,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:35,989 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:35,991 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:35,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:35,996 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:35,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:36,001 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:36,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:36,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:36,010 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:36,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:36,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:36,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:36,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:36,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:36,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:36,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:36,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:36,032 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:36,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:36,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:36,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:36,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:36,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:36,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:36,047 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:36,050 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:36,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:36,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:36,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:36,059 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:36,061 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:36,063 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:36,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:36,068 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:36,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:36,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:36,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:36,085 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:36,087 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:36,089 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:36,092 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:36,094 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:36,096 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:36,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:36,101 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:36,103 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:36,105 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:36,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:36,110 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:36,112 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:36,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:36,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:36,119 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:36,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:36,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:36,125 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:36,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:36,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:36,132 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:36,134 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:36,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:36,139 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:36,141 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:36,143 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:36,146 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:36,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:36,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:36,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:36,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:36,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:36,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:36,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:36,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:36,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:36,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:36,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:36,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:36,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:36,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:36,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:36,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:36,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:36,186 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:36,188 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:36,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:36,193 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:36,195 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:36,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:36,200 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:36,202 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:36,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:36,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:36,209 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:36,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:36,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:36,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:36,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:36,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:36,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:36,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:36,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:36,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:36,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:36,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:36,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:36,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:36,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:36,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:36,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:36,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:36,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:36,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:36,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:36,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:36,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:36,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:36,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:36,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:36,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:36,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:36,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:36,275 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:36,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:36,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:36,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:36,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:36,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:36,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:36,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:36,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:36,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:36,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:36,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:36,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:36,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:36,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:36,308 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:36,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:36,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:36,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:36,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:36,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:36,325 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:17:36,394 [DEBUG] django.db.backends: (0.059) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:17:36,560 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ORDER BY `place_conference_placeconference_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:36,574 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:36,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:36,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:36,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:36,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:36,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:36,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:36,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:36,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:36,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:36,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:36,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:36,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:36,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:36,613 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:36,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:36,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:36,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:36,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:36,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:36,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:36,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:36,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:36,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:36,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:36,638 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:36,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:36,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:36,645 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:36,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:36,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:36,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:36,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:36,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:36,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:36,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:36,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:36,665 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:36,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:36,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:36,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:36,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:36,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:36,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:36,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:36,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:36,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:36,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:36,690 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:36,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:36,695 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:36,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:36,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:36,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:36,705 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:36,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:36,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:36,712 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:36,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:36,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:36,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:36,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:36,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:36,726 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:36,730 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:36,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:36,735 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:36,737 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:36,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:36,742 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:36,744 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:36,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:36,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:36,751 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:36,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:36,756 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:36,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:36,760 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:36,763 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:36,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:36,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:36,770 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:36,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:36,775 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:36,777 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:36,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:36,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:36,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:36,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:36,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:36,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:36,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:36,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:36,798 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:36,800 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:36,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:36,805 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:36,807 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:36,810 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:36,812 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:36,814 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:36,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:36,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:36,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:36,832 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:36,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:36,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:36,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:36,841 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:36,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:36,846 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:36,848 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:36,851 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:36,853 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:36,855 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:36,858 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:36,860 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:36,862 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:36,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:36,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:36,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:36,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:36,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:36,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:36,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:36,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:36,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:36,886 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:36,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:36,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:36,893 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:36,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:36,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:36,900 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:36,902 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:36,905 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:36,907 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:36,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:36,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:36,914 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:36,916 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:36,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:36,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:36,923 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:36,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:36,928 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:36,930 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:36,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:36,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:36,937 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:36,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:36,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:36,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:36,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:36,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:36,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:36,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:36,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:36,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:36,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:36,963 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:36,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:36,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:36,970 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:36,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:36,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:36,977 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:36,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:36,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:36,984 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:36,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:36,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:36,991 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:36,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:36,996 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:36,998 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:37,000 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:37,003 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:37,005 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:37,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:37,010 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:37,012 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:37,014 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:37,017 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:37,019 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:37,021 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:37,024 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:37,026 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:37,028 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:37,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:37,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:37,035 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:37,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:37,040 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:37,042 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:37,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:37,047 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:37,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:37,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:37,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:37,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:37,059 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:37,061 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:37,064 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:37,066 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:37,069 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:37,079 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:37,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:37,105 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:37,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:37,110 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:37,112 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:37,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:37,117 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:37,119 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:37,122 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:37,124 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:37,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:37,129 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:37,131 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:37,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:37,136 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:37,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:37,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:37,143 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:37,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:37,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:37,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:37,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:37,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:37,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:37,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:37,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:37,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:37,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:37,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:37,171 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:37,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:37,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:37,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:37,181 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:37,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:37,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:37,188 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:37,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:37,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:37,195 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:37,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:37,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:37,202 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:37,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:37,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:37,209 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:37,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:37,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:37,216 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:37,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:37,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:37,223 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:37,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:37,228 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:37,230 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:37,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:37,235 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:37,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:37,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:37,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:37,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:37,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:37,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:37,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:37,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:37,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:37,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:37,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:37,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:37,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:37,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:37,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:37,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:37,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:37,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:37,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:37,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:37,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:37,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:37,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:37,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:37,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:37,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:37,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:37,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:37,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:37,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:37,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:37,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:37,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:37,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:37,317 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:37,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:37,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:37,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:37,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:37,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:37,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:37,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:37,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:37,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:37,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:37,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:37,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:37,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:37,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:37,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:37,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:37,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:37,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:37,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:37,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:37,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:37,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:37,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:37,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:37,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:37,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:37,380 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:37,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:37,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:37,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:37,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:37,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:37,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:37,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:37,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:37,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:37,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:37,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:37,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:37,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:37,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:37,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:37,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:37,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:37,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:37,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:37,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:37,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:37,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:37,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:37,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:37,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:37,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:37,443 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:37,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:37,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:37,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:37,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:37,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:37,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:37,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:37,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:37,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:37,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:37,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:37,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:37,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:37,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:37,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:37,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:37,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:37,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:37,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:37,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:37,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:37,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:37,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:37,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:37,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:37,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:37,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:37,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:37,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:37,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:37,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:37,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:37,520 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:37,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:37,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:37,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:37,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:37,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:37,534 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:37,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:37,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:37,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:37,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:37,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:37,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:37,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:37,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:37,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:37,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:37,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:37,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:37,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:37,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:37,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:37,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:37,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:37,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:37,578 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:37,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:37,608 [DEBUG] django.db.backends: (0.008) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:37,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:37,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:37,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:37,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:37,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:37,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:37,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:37,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:37,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:37,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:37,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:37,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:37,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:37,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:37,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:37,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:37,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:37,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:37,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:37,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:37,665 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:37,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:37,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:37,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:37,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:37,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:37,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:37,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:37,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:37,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:37,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:37,690 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:37,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:37,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:37,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:37,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:37,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:37,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:37,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:37,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:37,711 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:37,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:37,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:37,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:37,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:37,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:37,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:37,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:37,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:37,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:37,733 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:37,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:37,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:37,740 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:37,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:37,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:37,747 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:37,749 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:37,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:37,754 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:37,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:37,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:37,761 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:37,763 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:37,766 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:37,768 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:37,770 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:37,772 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:37,775 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:37,777 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:37,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:37,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:37,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:37,786 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:37,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:37,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:37,793 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:37,795 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:37,798 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:37,800 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:37,802 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:37,804 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:37,807 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:37,809 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:37,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:37,813 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:37,816 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:37,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:37,820 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:37,823 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:37,825 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:37,827 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:37,829 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:37,832 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:37,834 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:37,836 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:37,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:37,841 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:37,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:37,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:37,856 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:37,858 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:37,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:37,863 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:37,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:37,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:37,870 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:37,872 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:37,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:37,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:37,879 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:37,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:37,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:37,885 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:37,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:37,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:37,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:37,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:37,898 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:37,900 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:37,903 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:37,905 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:37,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:37,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:37,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:37,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:37,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:37,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:37,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:37,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:37,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:37,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:37,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:37,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:37,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:37,938 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:37,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:37,943 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:37,945 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:37,947 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:37,950 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:37,952 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:37,954 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:37,957 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:37,959 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:37,961 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:37,964 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:37,966 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:37,968 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:37,971 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:37,973 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:37,975 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:37,978 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:37,980 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:37,982 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:37,985 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:37,987 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:37,989 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:37,992 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:37,994 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:37,996 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:37,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:38,001 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:38,003 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:38,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:38,008 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:38,010 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:38,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:38,015 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:38,017 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:38,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:38,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:38,024 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:38,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:38,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:38,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:38,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:38,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:38,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:38,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:38,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:38,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:38,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:38,050 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:38,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:38,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:38,057 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:38,059 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:38,062 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:38,064 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:38,066 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:38,069 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:38,071 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:38,073 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:38,076 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:38,078 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:38,080 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:38,083 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:38,085 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:38,087 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:38,090 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:38,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:38,095 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:38,097 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:38,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:38,116 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:38,136 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:38,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:38,141 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:38,144 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:38,146 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:38,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:38,151 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:38,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:38,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:38,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:38,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:38,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:38,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:38,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:38,171 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:38,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:38,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:38,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:38,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:38,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:38,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:38,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:38,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:38,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:38,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:38,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:38,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:38,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:38,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:38,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:38,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:38,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:38,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:38,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:38,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:38,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:38,223 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:38,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:38,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:38,230 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:38,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:38,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:38,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:38,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:38,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:38,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:38,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:38,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:38,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:38,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:38,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:38,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:38,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:38,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:38,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:38,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:38,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:38,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:38,275 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:38,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:38,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:38,282 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:38,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:38,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:38,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:38,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:38,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:38,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:38,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:38,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:38,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:38,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:38,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:38,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:38,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:38,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:38,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:38,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:38,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:38,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:38,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:38,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:38,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:38,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:38,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:38,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:38,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:38,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:38,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:38,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:38,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:38,352 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:38,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:38,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:38,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:38,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:38,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:38,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:38,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:38,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:38,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:38,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:38,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:38,380 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:38,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:38,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:38,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:38,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:38,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:38,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:38,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:38,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:38,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:38,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:38,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:38,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:38,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:38,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:38,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:38,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:38,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:38,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:38,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:38,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:38,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:38,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:38,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:38,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:38,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:38,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:38,443 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:38,445 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:38,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:38,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:38,452 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:38,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:38,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:38,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:38,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:38,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:38,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:38,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:38,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:38,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:38,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:38,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:38,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:38,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:38,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:38,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:38,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:38,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:38,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:38,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:38,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:38,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:38,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:38,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:38,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:38,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:38,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:38,515 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:38,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:38,520 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:38,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:38,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:38,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:38,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:38,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:38,534 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:38,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:38,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:38,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:38,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:38,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:38,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:38,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:38,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:38,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:38,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:38,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:38,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:38,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:38,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:38,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:38,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:38,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:38,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:38,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:38,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:38,583 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:38,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:38,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:38,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:38,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:38,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:38,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:38,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:38,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:38,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:38,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:38,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:38,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:38,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:38,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:17:38,842 [DEBUG] django.db.backends: (0.000) SELECT `accounts_user`.`id`, `accounts_user`.`password`, `accounts_user`.`last_login`, `accounts_user`.`is_superuser`, `accounts_user`.`email`, `accounts_user`.`username`, `accounts_user`.`first_name`, `accounts_user`.`last_name`, `accounts_user`.`rating`, `accounts_user`.`url`, `accounts_user`.`is_active`, `accounts_user`.`is_staff`, `accounts_user`.`is_admin`, `accounts_user`.`date_joined`, `accounts_user`.`date_registered`, `accounts_user`.`date_modified`, `accounts_user`.`organiser_id`, `accounts_user`.`translator_id`, `accounts_user`.`company_id`, `accounts_user`.`position` FROM `accounts_user` WHERE `accounts_user`.`id` = 58304 ; args=(58304,) +2015-07-28 11:17:38,845 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `django_messages_message` WHERE (`django_messages_message`.`recipient_id` = 58304 AND `django_messages_message`.`read_at` IS NULL AND `django_messages_message`.`recipient_deleted_at` IS NULL); args=(58304,) +2015-07-28 11:17:38,851 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 1 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(1, 'ru') +2015-07-28 11:17:38,857 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 2 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(2, 'ru') +2015-07-28 11:17:38,890 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:38,961 [DEBUG] django.db.backends: (0.002) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment`, `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code`, `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id`, `city_city`.`id`, `city_city`.`services`, `city_city`.`url`, `city_city`.`old_url`, `city_city`.`inflect`, `city_city`.`country_id`, `city_city`.`code_IATA_id`, `city_city`.`population`, `city_city`.`phone_code`, `city_city`.`created`, `city_city`.`modified`, `city_city_translation`.`id`, `city_city_translation`.`name`, `city_city_translation`.`region`, `city_city_translation`.`transport`, `city_city_translation`.`description`, `city_city_translation`.`famous_places`, `city_city_translation`.`shoping`, `city_city_translation`.`title`, `city_city_translation`.`descriptions`, `city_city_translation`.`keywords`, `city_city_translation`.`language_code`, `city_city_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published`, `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`main_page` = 1 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(1, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:38,968 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'exposition' AND `django_content_type`.`app_label` = 'exposition' ); args=('exposition', u'exposition') +2015-07-28 11:17:38,971 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7358 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7358, 28, 'preview') +2015-07-28 11:17:38,972 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/WIRE.png] at [220x220] +2015-07-28 11:17:38,977 [DEBUG] django.db.backends: (0.000) SELECT `accounts_calendar`.`id`, `accounts_calendar`.`user_id` FROM `accounts_calendar` WHERE `accounts_calendar`.`user_id` = 58304 ; args=(58304,) +2015-07-28 11:17:38,980 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:38,983 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:38,989 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7358 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7358, 'ru') +2015-07-28 11:17:38,993 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7523 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7523, 28, 'preview') +2015-07-28 11:17:38,993 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/Rosupack.png] at [220x220] +2015-07-28 11:17:38,998 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:39,001 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:39,004 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7523 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7523, 'ru') +2015-07-28 11:17:39,008 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 8108 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(8108, 28, 'preview') +2015-07-28 11:17:39,008 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [[]] at [220x220] +2015-07-28 11:17:39,012 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:39,015 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:17:39,018 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 8108 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(8108, 'ru') +2015-07-28 11:17:39,083 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 1) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:17:39,090 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 54 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,096 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 51 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 51, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,102 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 48 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 48, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,108 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 39 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 39, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,113 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 37 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 37, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,119 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 31 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 31, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,121 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 2) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:17:39,130 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 87 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 87, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,136 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 84 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 84, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,141 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 74 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 74, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,147 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 70 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 70, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,153 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 68 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 68, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,159 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 54 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:17:39,159 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/expomilano_2015_3.jpg] at [80x80] +2015-07-28 11:17:39,161 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/3dprint.jpg] at [80x80] +2015-07-28 11:17:39,162 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/rif.png] at [80x80] +2015-07-28 11:17:39,166 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'article' AND `django_content_type`.`app_label` = 'article' ); args=('article', u'article') +2015-07-28 11:17:39,168 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:17:39,170 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:17:39,170 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/oborudovanie.png] at [220x100] +2015-07-28 11:17:39,173 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:17:39,175 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:17:39,175 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/strategii_reklami.png] at [220x100] +2015-07-28 11:17:39,178 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 40 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(40, 10, 'preview') +2015-07-28 11:17:39,188 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:17:39,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:17:39,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:17:39,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:17:39,216 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:17:39,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:17:39,221 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:17:39,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:17:39,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:17:39,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:17:39,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:17:39,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:17:39,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:17:39,240 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:17:39,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:17:39,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:17:39,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:17:39,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:17:39,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:17:39,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:17:39,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:17:39,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:17:39,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:17:39,266 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:17:39,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:17:39,271 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:17:39,273 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:17:39,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:17:39,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:17:39,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:17:39,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:17:39,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:17:39,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:17:39,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:17:39,294 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:17:39,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:17:39,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:17:39,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:17:39,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:17:39,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:17:39,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:17:39,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:17:39,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:17:39,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:17:39,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:17:39,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:17:39,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:17:39,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:17:39,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:17:39,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:17:39,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:17:39,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:17:39,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:17:39,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:17:39,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:17:39,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:17:39,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:17:39,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:17:39,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:17:39,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:17:39,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:17:39,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:17:39,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:17:39,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:17:39,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:17:39,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:17:39,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:17:39,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:17:39,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:17:39,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:17:39,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:17:39,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:17:39,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:17:39,397 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:17:39,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:17:39,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:17:39,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:17:39,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:17:39,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:17:39,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:17:39,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:17:39,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:17:39,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:17:39,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:17:39,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:17:39,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:17:39,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:17:39,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:17:39,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:17:39,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:17:39,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:17:39,443 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:17:39,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:17:39,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:17:39,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:17:39,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:17:39,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:17:39,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:17:39,461 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:17:39,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:17:39,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:17:39,468 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:17:39,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:17:39,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:17:39,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:17:39,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:17:39,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:17:39,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:17:39,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:17:39,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:17:39,491 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:17:39,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:17:39,496 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:17:39,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:17:39,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:17:39,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:17:39,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:17:39,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:17:39,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:17:39,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:17:39,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:17:39,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:17:39,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:17:39,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:17:39,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:17:39,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:17:39,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:17:39,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:17:39,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:17:39,540 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:17:39,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:17:39,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:17:39,547 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:17:39,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:17:39,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:17:39,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:17:39,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:17:39,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:17:39,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:17:39,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:17:39,568 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:17:39,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:17:39,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:17:39,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:17:39,578 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:17:39,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:17:39,583 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:17:39,585 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:17:39,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:17:39,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:17:39,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:17:39,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:17:39,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:17:39,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:17:39,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:17:39,606 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:17:39,608 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:17:39,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:17:39,613 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:17:39,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:17:39,618 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:17:39,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:17:39,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:17:39,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:17:39,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:17:39,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:17:39,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:17:39,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:17:39,638 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:17:39,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:17:39,643 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:17:39,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:17:39,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:17:39,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:17:39,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:17:39,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:17:39,658 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:17:39,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:17:39,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:17:39,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:17:39,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:17:39,671 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:17:39,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:17:39,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:17:39,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:17:39,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:17:39,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:17:39,686 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:17:39,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:17:39,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:17:39,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:17:39,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:17:39,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:17:39,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:17:39,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:17:39,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:17:39,709 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:17:39,711 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:17:39,714 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:17:39,716 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:17:39,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:17:39,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:17:39,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:17:39,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:17:39,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:17:39,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:09,152 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:09,154 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,175 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:09,176 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,192 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:09,193 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,245 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:09,246 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,323 [DEBUG] django.db.backends: (0.002) SHOW TABLES; args=() +2015-07-28 11:19:09,324 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,334 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:09,336 [DEBUG] django.db.backends: (0.001) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:09,396 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:09,403 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:09,405 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:09,408 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:09,410 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:09,412 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:09,415 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:09,417 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:09,420 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:09,422 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:09,424 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:09,427 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:09,429 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:09,431 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:09,433 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:09,436 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:09,438 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:09,440 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:09,443 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:09,445 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:09,447 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:09,450 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:09,452 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:09,455 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:09,457 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:09,459 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:09,462 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:09,464 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:09,466 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:09,468 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:09,471 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:09,473 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:09,475 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:09,478 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:09,480 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:09,482 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:09,485 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:09,487 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:09,489 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:09,491 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:09,494 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:09,496 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:09,498 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:09,501 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:09,503 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:09,505 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:09,508 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:09,510 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:09,512 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:09,515 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:09,517 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:09,519 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:09,522 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:09,524 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:09,526 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:09,528 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:09,531 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:09,533 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:09,535 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:09,538 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:09,540 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:09,542 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:09,546 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:09,665 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:09,784 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:09,794 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:09,984 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:09,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:09,997 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:09,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:10,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:10,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:10,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:10,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:10,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:10,014 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:10,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:10,019 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:10,021 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:10,024 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:10,026 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:10,028 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:10,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:10,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:10,037 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:10,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:10,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:10,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:10,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:10,050 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:10,053 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:10,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:10,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:10,060 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:10,063 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:10,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:10,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:10,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:10,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:10,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:10,077 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:10,079 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:10,081 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:10,084 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:10,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:10,088 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:10,091 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:10,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:10,095 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:10,097 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:10,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:10,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:10,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:10,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:10,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:10,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:10,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:10,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:10,118 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:10,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:10,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:10,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:10,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:10,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:10,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:10,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:10,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:10,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:10,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:10,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:10,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:10,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:10,151 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:10,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:10,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:10,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:10,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:10,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:10,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:10,167 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:10,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:10,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:10,174 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:10,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:10,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:10,181 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:10,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:10,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:10,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:10,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:10,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:10,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:10,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:10,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:10,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:10,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:10,205 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:10,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:10,210 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:10,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:10,214 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:10,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:10,219 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:10,221 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:10,226 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:10,228 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:10,230 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:10,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:10,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:10,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:10,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:10,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:10,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:10,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:10,257 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:10,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:10,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:10,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:10,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:10,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:10,271 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:10,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:10,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:10,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:10,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:10,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:10,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:10,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:10,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:10,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:10,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:10,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:10,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:10,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:10,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:10,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:10,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:10,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:10,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:10,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:10,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:10,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:10,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:10,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:10,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:10,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:10,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:10,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:10,337 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:10,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:10,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:10,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:10,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:10,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:10,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:10,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:10,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:10,357 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:10,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:10,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:10,364 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:10,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:10,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:10,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:10,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:10,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:10,378 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:10,380 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:10,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:10,385 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:10,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:10,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:10,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:10,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:10,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:10,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:10,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:10,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:10,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:10,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:10,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:10,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:10,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:10,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:10,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:10,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:10,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:10,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:10,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:10,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:10,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:10,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:10,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:10,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:10,443 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:10,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:10,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:10,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:10,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:10,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:10,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:10,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:10,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:10,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:10,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:10,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:10,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:10,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:10,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:10,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:10,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:10,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:10,606 [DEBUG] django.db.backends: (0.118) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:19:11,066 [DEBUG] django.db.backends: (0.132) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:11,451 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:11,476 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:11,483 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:11,485 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:11,487 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:11,490 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:11,492 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:11,494 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:11,496 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:11,499 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:11,501 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:11,503 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:11,506 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:11,508 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:11,510 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:11,513 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:11,515 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:11,517 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:11,520 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:11,522 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:11,524 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:11,527 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:11,529 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:11,531 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:11,533 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:11,536 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:11,538 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:11,540 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:11,543 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:11,545 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:11,547 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:11,550 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:11,552 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:11,554 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:11,557 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:11,559 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:11,561 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:11,563 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:11,566 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:11,568 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:11,570 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:11,573 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:11,575 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:11,577 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:11,579 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:11,582 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:11,584 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:11,586 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:11,589 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:11,591 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:11,593 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:11,596 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:11,598 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:11,600 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:11,603 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:11,605 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:11,607 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:11,610 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:11,612 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:11,614 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:11,616 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:11,619 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:11,621 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:11,623 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:11,882 [DEBUG] django.db.backends: (0.063) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:19:12,198 [DEBUG] django.db.backends: (0.137) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:12,686 [DEBUG] django.db.backends: (0.116) SELECT `company_company_translation`.`id`, `company_company_translation`.`name`, `company_company_translation`.`specialization`, `company_company_translation`.`description`, `company_company_translation`.`address_inf`, `company_company_translation`.`title`, `company_company_translation`.`descriptions`, `company_company_translation`.`keywords`, `company_company_translation`.`language_code`, `company_company_translation`.`master_id`, `company_company`.`id`, `company_company`.`url`, `company_company`.`creator_id`, `company_company`.`country_id`, `company_company`.`city_id`, `company_company`.`address`, `company_company`.`staff_number`, `company_company`.`phone`, `company_company`.`fax`, `company_company`.`web_page`, `company_company`.`email`, `company_company`.`facebook`, `company_company`.`twitter`, `company_company`.`linkedin`, `company_company`.`vk`, `company_company`.`foundation`, `company_company`.`rating`, `company_company`.`created`, `company_company`.`modified`, `company_company`.`logo` FROM `company_company_translation` LEFT OUTER JOIN `company_company` ON (`company_company_translation`.`master_id` = `company_company`.`id`) WHERE `company_company_translation`.`language_code` = 'ru' ORDER BY `company_company`.`rating` DESC, `company_company_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:19:13,018 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:13,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:13,032 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:13,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:13,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:13,039 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:13,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:13,044 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:13,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:13,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:13,051 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:13,053 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:13,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:13,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:13,060 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:13,062 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:13,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:13,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:13,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:13,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:13,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:13,077 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:13,080 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:13,082 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:13,085 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:13,087 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:13,089 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:13,092 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:13,094 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:13,097 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:13,099 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:13,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:13,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:13,106 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:13,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:13,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:13,113 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:13,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:13,118 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:13,120 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:13,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:13,125 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:13,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:13,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:13,132 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:13,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:13,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:13,139 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:13,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:13,144 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:13,146 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:13,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:13,151 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:13,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:13,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:13,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:13,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:13,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:13,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:13,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:13,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:13,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:13,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:13,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:13,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:13,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:13,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:13,186 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:13,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:13,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:13,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:13,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:13,198 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:13,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:13,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:13,205 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:13,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:13,210 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:13,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:13,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:13,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:13,219 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:13,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:13,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:13,226 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:13,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:13,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:13,233 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:13,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:13,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:13,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:13,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:13,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:13,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:13,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:13,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:13,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:13,257 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:13,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:13,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:13,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:13,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:13,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:13,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:13,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:13,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:13,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:13,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:13,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:13,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:13,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:13,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:13,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:13,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:13,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:13,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:13,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:13,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:13,317 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:13,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:13,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:13,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:13,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:13,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:13,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:13,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:13,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:13,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:13,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:13,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:13,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:13,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:13,350 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:13,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:13,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:13,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:13,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:13,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:13,365 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:13,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:13,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:13,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:13,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:13,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:13,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:13,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:13,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:13,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:13,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:13,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:13,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:13,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:13,398 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:13,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:13,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:13,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:13,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:13,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:13,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:13,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:13,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:13,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:13,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:13,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:13,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:13,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:13,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:13,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:13,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:13,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:13,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:13,443 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:13,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:13,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:13,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:13,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:13,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:13,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:13,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:13,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:13,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:13,468 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:13,470 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:13,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:13,475 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:13,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:13,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:13,482 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:13,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:13,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:13,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:13,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:13,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:13,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:13,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:13,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:13,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:13,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:13,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:13,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:13,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:13,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:13,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:13,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:13,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:13,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:13,530 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:13,693 [DEBUG] django.db.backends: (0.151) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:14,086 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:14,097 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:14,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:14,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:14,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:14,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:14,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:14,112 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:14,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:14,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:14,119 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:14,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:14,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:14,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:14,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:14,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:14,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:14,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:14,137 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:14,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:14,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:14,144 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:14,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:14,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:14,151 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:14,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:14,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:14,158 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:14,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:14,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:14,165 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:14,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:14,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:14,172 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:14,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:14,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:14,179 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:14,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:14,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:14,186 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:14,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:14,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:14,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:14,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:14,198 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:14,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:14,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:14,205 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:14,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:14,210 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:14,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:14,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:14,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:14,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:14,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:14,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:14,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:14,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:14,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:14,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:14,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:14,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:14,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:14,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:14,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:14,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:14,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:14,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:14,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:14,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:14,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:14,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:14,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:14,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:14,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:14,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:14,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:14,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:14,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:14,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:14,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:14,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:14,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:14,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:14,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:14,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:14,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:14,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:14,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:14,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:14,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:14,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:14,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:14,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:14,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:14,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:14,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:14,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:14,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:14,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:14,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:14,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:14,343 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:14,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:14,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:14,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:14,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:14,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:14,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:14,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:14,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:14,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:14,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:14,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:14,373 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:14,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:14,378 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:14,380 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:14,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:14,385 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:14,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:14,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:14,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:14,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:14,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:14,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:14,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:14,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:14,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:14,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:14,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:14,413 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:14,415 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:14,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:14,420 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:14,422 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:14,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:14,427 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:14,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:14,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:14,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:14,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:14,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:14,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:14,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:14,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:14,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:14,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:14,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:14,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:14,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:14,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:14,463 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:14,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:14,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:14,470 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:14,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:14,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:14,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:14,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:14,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:14,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:14,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:14,489 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:14,491 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:14,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:14,496 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:14,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:14,500 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:14,503 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:14,505 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:14,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:14,510 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:14,512 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:14,515 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:14,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:14,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:14,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:14,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:14,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:14,529 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:14,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:14,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:14,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:14,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:14,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:14,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:14,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:14,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:14,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:14,552 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:14,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:14,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:14,559 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:14,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:14,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:14,566 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:14,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:14,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:14,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:14,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:14,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:14,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:14,583 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:14,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:14,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:14,637 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:14,769 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:14,904 [DEBUG] django.db.backends: (0.132) SELECT `organiser_organiser_translation`.`id`, `organiser_organiser_translation`.`name`, `organiser_organiser_translation`.`specialization`, `organiser_organiser_translation`.`description`, `organiser_organiser_translation`.`representation`, `organiser_organiser_translation`.`address_inf`, `organiser_organiser_translation`.`title`, `organiser_organiser_translation`.`descriptions`, `organiser_organiser_translation`.`keywords`, `organiser_organiser_translation`.`language_code`, `organiser_organiser_translation`.`master_id`, `organiser_organiser`.`id`, `organiser_organiser`.`url`, `organiser_organiser`.`country_id`, `organiser_organiser`.`city_id`, `organiser_organiser`.`address`, `organiser_organiser`.`logo`, `organiser_organiser`.`rating`, `organiser_organiser`.`phone`, `organiser_organiser`.`fax`, `organiser_organiser`.`web_page`, `organiser_organiser`.`email`, `organiser_organiser`.`facebook`, `organiser_organiser`.`twitter`, `organiser_organiser`.`linkedin`, `organiser_organiser`.`vk`, `organiser_organiser`.`foundation`, `organiser_organiser`.`events_number`, `organiser_organiser`.`staff_number`, `organiser_organiser`.`created`, `organiser_organiser`.`modified`, `organiser_organiser`.`active` FROM `organiser_organiser_translation` LEFT OUTER JOIN `organiser_organiser` ON (`organiser_organiser_translation`.`master_id` = `organiser_organiser`.`id`) WHERE `organiser_organiser_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:15,285 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:15,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:15,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:15,301 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:15,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:15,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:15,308 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:15,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:15,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:15,315 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:15,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:15,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:15,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:15,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:15,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:15,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:15,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:15,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:15,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:15,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:15,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:15,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:15,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:15,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:15,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:15,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:15,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:15,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:15,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:15,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:15,365 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:15,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:15,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:15,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:15,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:15,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:15,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:15,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:15,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:15,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:15,388 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:15,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:15,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:15,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:15,398 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:15,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:15,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:15,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:15,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:15,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:15,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:15,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:15,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:15,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:15,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:15,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:15,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:15,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:15,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:15,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:15,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:15,438 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:15,440 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:15,442 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:15,445 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:15,447 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:15,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:15,452 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:15,454 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:15,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:15,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:15,461 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:15,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:15,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:15,468 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:15,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:15,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:15,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:15,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:15,480 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:15,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:15,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:15,487 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:15,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:15,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:15,494 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:15,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:15,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:15,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:15,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:15,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:15,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:15,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:15,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:15,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:15,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:15,520 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:15,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:15,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:15,527 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:15,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:15,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:15,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:15,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:15,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:15,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:15,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:15,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:15,557 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:15,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:15,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:15,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:15,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:15,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:15,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:15,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:15,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:15,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:15,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:15,583 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:15,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:15,588 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:15,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:15,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:15,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:15,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:15,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:15,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:15,604 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:15,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:15,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:15,611 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:15,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:15,616 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:15,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:15,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:15,623 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:15,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:15,628 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:15,630 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:15,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:15,635 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:15,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:15,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:15,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:15,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:15,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:15,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:15,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:15,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:15,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:15,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:15,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:15,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:15,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:15,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:15,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:15,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:15,675 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:15,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:15,680 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:15,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:15,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:15,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:15,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:15,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:15,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:15,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:15,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:15,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:15,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:15,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:15,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:15,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:15,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:15,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:15,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:15,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:15,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:15,725 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:15,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:15,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:15,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:15,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:15,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:15,739 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:15,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:15,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:15,746 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:15,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:15,751 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:15,753 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:15,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:15,758 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:15,760 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:15,762 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:15,765 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:15,767 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:15,774 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:15,777 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:15,779 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:15,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:15,784 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:15,787 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:15,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:15,791 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:15,796 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:15,819 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:15,830 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:15,832 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:15,835 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:15,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:15,839 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:15,842 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:15,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:15,846 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:15,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:15,851 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:15,853 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:15,855 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:15,858 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:15,860 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:15,862 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:15,865 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:15,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:15,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:15,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:15,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:15,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:15,878 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:15,881 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:15,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:15,885 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:15,888 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:15,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:15,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:15,895 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:15,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:15,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:15,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:15,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:15,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:15,909 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:15,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:15,914 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:15,916 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:15,918 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:15,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:15,923 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:15,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:15,928 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:15,930 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:15,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:15,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:15,937 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:15,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:15,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:15,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:15,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:15,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:15,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:15,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:15,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:15,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:15,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:15,962 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:15,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:15,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:15,969 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:15,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:15,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:15,976 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:15,978 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:15,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:15,983 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:15,985 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:15,987 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:15,990 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:15,992 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:15,994 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:15,997 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:15,999 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:16,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:16,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:16,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:16,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:16,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:16,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:16,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:16,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:16,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:16,023 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:16,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:16,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:16,030 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:16,032 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:16,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:16,037 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:16,039 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:16,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:16,044 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:16,046 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:16,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:16,051 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:16,053 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:16,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:16,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:16,060 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:16,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:16,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:16,076 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:16,079 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:16,081 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:16,083 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:16,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:16,088 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:16,091 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:16,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:16,095 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:16,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:16,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:16,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:16,105 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:16,107 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:16,110 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:16,112 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:16,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:16,117 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:16,119 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:16,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:16,124 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:16,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:16,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:16,131 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:16,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:16,136 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:16,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:16,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:16,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:16,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:16,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:16,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:16,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:16,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:16,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:16,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:16,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:16,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:16,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:16,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:16,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:16,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:16,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:16,177 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:16,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:16,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:16,184 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:16,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:16,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:16,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:16,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:16,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:16,198 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:16,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:16,203 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:16,205 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:16,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:16,210 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:16,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:16,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:16,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:16,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:16,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:16,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:16,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:16,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:16,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:16,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:16,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:16,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:16,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:16,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:16,245 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:16,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:16,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:16,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:16,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:16,257 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:16,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:16,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:16,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:16,266 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:16,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:16,271 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:16,273 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:16,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:16,278 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:16,280 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:16,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:16,285 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:16,287 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:16,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:16,292 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:16,294 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:16,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:16,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:16,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:16,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:16,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:16,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:16,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:16,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:16,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:16,321 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ; args=('ru',) +2015-07-28 11:19:16,392 [DEBUG] django.db.backends: (0.061) SELECT `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published` FROM `place_exposition_placeexposition_translation` LEFT OUTER JOIN `place_exposition_placeexposition` ON (`place_exposition_placeexposition_translation`.`master_id` = `place_exposition_placeexposition`.`id`) WHERE `place_exposition_placeexposition_translation`.`language_code` = 'ru' ORDER BY `place_exposition_placeexposition`.`rating` DESC, `place_exposition_placeexposition_translation`.`master_id` ASC; args=('ru',) +2015-07-28 11:19:16,562 [DEBUG] django.db.backends: (0.000) SELECT `place_conference_placeconference_translation`.`id`, `place_conference_placeconference_translation`.`name`, `place_conference_placeconference_translation`.`main_title`, `place_conference_placeconference_translation`.`description`, `place_conference_placeconference_translation`.`adress`, `place_conference_placeconference_translation`.`hall_capacity`, `place_conference_placeconference_translation`.`title`, `place_conference_placeconference_translation`.`descriptions`, `place_conference_placeconference_translation`.`keywords`, `place_conference_placeconference_translation`.`total_year_action`, `place_conference_placeconference_translation`.`language_code`, `place_conference_placeconference_translation`.`master_id`, `place_conference_placeconference`.`id`, `place_conference_placeconference`.`url`, `place_conference_placeconference`.`country_id`, `place_conference_placeconference`.`city_id`, `place_conference_placeconference`.`type`, `place_conference_placeconference`.`address`, `place_conference_placeconference`.`phone`, `place_conference_placeconference`.`fax`, `place_conference_placeconference`.`web_page`, `place_conference_placeconference`.`email`, `place_conference_placeconference`.`foundation_year`, `place_conference_placeconference`.`total_capacity`, `place_conference_placeconference`.`amount_halls`, `place_conference_placeconference`.`exposition_hall`, `place_conference_placeconference`.`exp_hall_area`, `place_conference_placeconference`.`video_link`, `place_conference_placeconference`.`wifi`, `place_conference_placeconference`.`multimedia_equipment`, `place_conference_placeconference`.`conference_call`, `place_conference_placeconference`.`translate_equipment`, `place_conference_placeconference`.`banquet_hall`, `place_conference_placeconference`.`catering`, `place_conference_placeconference`.`hotel`, `place_conference_placeconference`.`created`, `place_conference_placeconference`.`modified`, `place_conference_placeconference`.`views` FROM `place_conference_placeconference_translation` LEFT OUTER JOIN `place_conference_placeconference` ON (`place_conference_placeconference_translation`.`master_id` = `place_conference_placeconference`.`id`) WHERE `place_conference_placeconference_translation`.`language_code` = 'ru' ORDER BY `place_conference_placeconference_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:16,576 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:16,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:16,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:16,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:16,594 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:16,596 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:16,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:16,601 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:16,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:16,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:16,608 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:16,610 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:16,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:16,615 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:16,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:16,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:16,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:16,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:16,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:16,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:16,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:16,633 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:16,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:16,638 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:16,640 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:16,643 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:16,645 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:16,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:16,650 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:16,652 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:16,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:16,657 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:16,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:16,661 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:16,663 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:16,666 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:16,668 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:16,670 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:16,673 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:16,675 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:16,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:16,680 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:16,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:16,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:16,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:16,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:16,691 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:16,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:16,696 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:16,698 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:16,701 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:16,703 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:16,705 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:16,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:16,710 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:16,712 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:16,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:16,717 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:16,719 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:16,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:16,724 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:16,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:16,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:16,731 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:16,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:16,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:16,738 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:16,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:16,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:16,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:16,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:16,750 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:16,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:16,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:16,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:16,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:16,761 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:16,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:16,766 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:16,768 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:16,771 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:16,773 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:16,775 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:16,778 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:16,780 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:16,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:16,785 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:16,787 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:16,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:16,792 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:16,794 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:16,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:16,799 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:16,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:16,803 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:16,806 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:16,808 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:16,811 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:16,813 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:16,815 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:16,818 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:16,828 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:16,831 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:16,833 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:16,835 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:16,838 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:16,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:16,843 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:16,845 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:16,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:16,850 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:16,852 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:16,854 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:16,857 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:16,859 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:16,861 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:16,864 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:16,866 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:16,868 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:16,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:16,873 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:16,875 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:16,877 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:16,880 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:16,882 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:16,884 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:16,887 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:16,889 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:16,891 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:16,894 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:16,896 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:16,898 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:16,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:16,903 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:16,905 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:16,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:16,910 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:16,912 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:16,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:16,917 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:16,919 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:16,921 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:16,924 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:16,926 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:16,928 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:16,931 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:16,933 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:16,935 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:16,937 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:16,940 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:16,942 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:16,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:16,947 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:16,949 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:16,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:16,954 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:16,956 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:16,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:16,961 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:16,963 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:16,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:16,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:16,970 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:16,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:16,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:16,977 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:16,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:16,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:16,984 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:16,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:16,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:16,990 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:16,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:16,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:16,997 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:17,000 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:17,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:17,004 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:17,006 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:17,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:17,011 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:17,013 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:17,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:17,018 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:17,020 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:17,022 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:17,025 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:17,027 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:17,029 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:17,032 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:17,034 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:17,036 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:17,039 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:17,041 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:17,043 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:17,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:17,048 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:17,050 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:17,052 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:17,055 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:17,057 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:17,060 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:17,062 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:17,064 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:17,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:17,069 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:17,079 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:17,104 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:17,106 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:17,109 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:17,111 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:17,114 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:17,116 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:17,118 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:17,121 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:17,123 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:17,126 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:17,128 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:17,130 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:17,133 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:17,135 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:17,138 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:17,140 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:17,142 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:17,145 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:17,147 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:17,149 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:17,152 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:17,154 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:17,156 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:17,159 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:17,161 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:17,163 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:17,166 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:17,168 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:17,170 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:17,173 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:17,175 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:17,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:17,180 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:17,182 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:17,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:17,187 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:17,189 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:17,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:17,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:17,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:17,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:17,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:17,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:17,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:17,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:17,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:17,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:17,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:17,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:17,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:17,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:17,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:17,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:17,230 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:17,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:17,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:17,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:17,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:17,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:17,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:17,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:17,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:17,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:17,253 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:17,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:17,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:17,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:17,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:17,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:17,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:17,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:17,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:17,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:17,276 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:17,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:17,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:17,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:17,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:17,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:17,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:17,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:17,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:17,297 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:17,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:17,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:17,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:17,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:17,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:17,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:17,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:17,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:17,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:17,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:17,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:17,325 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:17,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:17,330 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:17,332 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:17,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:17,337 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:17,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:17,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:17,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:17,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:17,348 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:17,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:17,353 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:17,355 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:17,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:17,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:17,362 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:17,365 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:17,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:17,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:17,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:17,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:17,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:17,378 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:17,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:17,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:17,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:17,388 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:17,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:17,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:17,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:17,397 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:17,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:17,402 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:17,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:17,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:17,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:17,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:17,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:17,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:17,418 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:17,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:17,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:17,425 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:17,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:17,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:17,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:17,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:17,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:17,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:17,442 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:17,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:17,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:17,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:17,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:17,453 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:17,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:17,458 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:17,460 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:17,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:17,465 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:17,467 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:17,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:17,472 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:17,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:17,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:17,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:17,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:17,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:17,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:17,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:17,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:17,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:17,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:17,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:17,500 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:17,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:17,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:17,507 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:17,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:17,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:17,514 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:17,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:17,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:17,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:17,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:17,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:17,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:17,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:17,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:17,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:17,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:17,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:17,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:17,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:17,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:17,549 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:17,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:17,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:17,556 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:17,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:17,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:17,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:17,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:17,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:17,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:17,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:17,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:17,576 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:17,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:17,581 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:17,609 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:17,620 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:17,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:17,625 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:17,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:17,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:17,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:17,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:17,636 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:17,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:17,641 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:17,643 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:17,646 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:17,648 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:17,650 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:17,653 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:17,655 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:17,657 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:17,660 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:17,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:17,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:17,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:17,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:17,671 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:17,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:17,676 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:17,678 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:17,681 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:17,683 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:17,685 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:17,688 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:17,690 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:17,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:17,695 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:17,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:17,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:17,702 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:17,704 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:17,706 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:17,708 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:17,711 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:17,713 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:17,715 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:17,718 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:17,720 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:17,722 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:17,725 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:17,727 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:17,729 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:17,732 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:17,734 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:17,736 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:17,739 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:17,741 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:17,743 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:17,745 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:17,748 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:17,750 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:17,752 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:17,755 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:17,757 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:17,759 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:17,762 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:17,764 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:17,766 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:17,769 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:17,771 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:17,773 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:17,775 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:17,778 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:17,780 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:17,782 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:17,785 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:17,787 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:17,789 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:17,792 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:17,794 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:17,796 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:17,798 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:17,801 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:17,803 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:17,805 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:17,807 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:17,810 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:17,812 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:17,814 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:17,817 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:17,819 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:17,821 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:17,823 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:17,826 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:17,828 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:17,830 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:17,833 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:17,835 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:17,837 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:17,840 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:17,842 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:17,844 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:17,847 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:17,849 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:17,860 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:17,862 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:17,864 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:17,867 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:17,869 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:17,871 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:17,874 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:17,876 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:17,878 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:17,880 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:17,883 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:17,885 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:17,887 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:17,890 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:17,892 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:17,894 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:17,897 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:17,899 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:17,901 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:17,904 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:17,906 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:17,908 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:17,911 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:17,913 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:17,915 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:17,918 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:17,920 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:17,922 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:17,925 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:17,927 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:17,929 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:17,932 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:17,934 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:17,936 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:17,939 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:17,941 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:17,944 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:17,946 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:17,948 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:17,951 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:17,953 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:17,955 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:17,958 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:17,960 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:17,962 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:17,965 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:17,967 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:17,970 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:17,972 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:17,974 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:17,977 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:17,979 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:17,981 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:17,984 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:17,986 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:17,988 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:17,991 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:17,993 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:17,995 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:17,998 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:18,000 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:18,002 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:18,005 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:18,007 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:18,009 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:18,012 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:18,014 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:18,016 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:18,019 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:18,021 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:18,024 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:18,026 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:18,028 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:18,031 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:18,033 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:18,035 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:18,038 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:18,040 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:18,042 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:18,045 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:18,047 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:18,049 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:18,051 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:18,054 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:18,056 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:18,058 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:18,061 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:18,063 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:18,065 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:18,067 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:18,070 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:18,072 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:18,074 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:18,077 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:18,079 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:18,081 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:18,083 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:18,086 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:18,088 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:18,090 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:18,093 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:18,096 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:18,098 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:18,100 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:18,102 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:18,120 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:18,139 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:18,141 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:18,143 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:18,146 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:18,148 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:18,150 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:18,153 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:18,155 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:18,157 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:18,160 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:18,162 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:18,164 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:18,167 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:18,169 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:18,171 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:18,174 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:18,176 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:18,178 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:18,181 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:18,183 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:18,185 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:18,188 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:18,190 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:18,192 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:18,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:18,197 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:18,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:18,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:18,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:18,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:18,208 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:18,211 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:18,213 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:18,215 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:18,218 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:18,220 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:18,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:18,225 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:18,227 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:18,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:18,232 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:18,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:18,236 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:18,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:18,241 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:18,243 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:18,246 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:18,248 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:18,250 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:18,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:18,255 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:18,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:18,260 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:18,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:18,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:18,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:18,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:18,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:18,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:18,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:18,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:18,281 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:18,283 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:18,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:18,288 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:18,290 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:18,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:18,295 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:18,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:18,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:18,302 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:18,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:18,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:18,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:18,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:18,313 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:18,315 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:18,318 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:18,320 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:18,322 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:18,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:18,327 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:18,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:18,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:18,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:18,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:18,338 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:18,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:18,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:18,345 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:18,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:18,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:18,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:18,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:18,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:18,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:18,360 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:18,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:18,365 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:18,367 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:18,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:18,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:18,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:18,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:18,378 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:18,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:18,383 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:18,385 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:18,387 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:18,390 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:18,392 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:18,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:18,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:18,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:18,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:18,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:18,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:18,408 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:18,410 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:18,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:18,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:18,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:18,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:18,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:18,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:18,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:18,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:18,430 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:18,432 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:18,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:18,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:18,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:18,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:18,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:18,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:18,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:18,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:18,452 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:18,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:18,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:18,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:18,461 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:18,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:18,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:18,468 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:18,470 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:18,473 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:18,475 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:18,477 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:18,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:18,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:18,484 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:18,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:18,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:18,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:18,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:18,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:18,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:18,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:18,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:18,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:18,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:18,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:18,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:18,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:18,515 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:18,517 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:18,519 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:18,522 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:18,524 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:18,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:18,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:18,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:18,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:18,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:18,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:18,540 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:18,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:18,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:18,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:18,549 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:18,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:18,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:18,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:18,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:18,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:18,562 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:18,564 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:18,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:18,569 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:18,571 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:18,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:18,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:18,578 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:18,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:18,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:18,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:18,587 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:18,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:18,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:18,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:18,596 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:18,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:18,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:18,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:18,836 [DEBUG] django.db.backends: (0.000) SELECT `accounts_user`.`id`, `accounts_user`.`password`, `accounts_user`.`last_login`, `accounts_user`.`is_superuser`, `accounts_user`.`email`, `accounts_user`.`username`, `accounts_user`.`first_name`, `accounts_user`.`last_name`, `accounts_user`.`rating`, `accounts_user`.`url`, `accounts_user`.`is_active`, `accounts_user`.`is_staff`, `accounts_user`.`is_admin`, `accounts_user`.`date_joined`, `accounts_user`.`date_registered`, `accounts_user`.`date_modified`, `accounts_user`.`organiser_id`, `accounts_user`.`translator_id`, `accounts_user`.`company_id`, `accounts_user`.`position` FROM `accounts_user` WHERE `accounts_user`.`id` = 58304 ; args=(58304,) +2015-07-28 11:19:18,840 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `django_messages_message` WHERE (`django_messages_message`.`recipient_id` = 58304 AND `django_messages_message`.`read_at` IS NULL AND `django_messages_message`.`recipient_deleted_at` IS NULL); args=(58304,) +2015-07-28 11:19:18,846 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 1 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(1, 'ru') +2015-07-28 11:19:18,851 [DEBUG] django.db.backends: (0.001) SELECT `article_article_translation`.`id`, `article_article_translation`.`main_title`, `article_article_translation`.`preview`, `article_article_translation`.`description`, `article_article_translation`.`title`, `article_article_translation`.`descriptions`, `article_article_translation`.`keywords`, `article_article_translation`.`language_code`, `article_article_translation`.`master_id`, `article_article`.`id`, `article_article`.`slug`, `article_article`.`old_id`, `article_article`.`logo`, `article_article`.`author_id`, `article_article`.`exposition_id`, `article_article`.`conference_id`, `article_article`.`type`, `article_article`.`allow_comments`, `article_article`.`publish_date`, `article_article`.`expiry_date`, `article_article`.`in_sitemap`, `article_article`.`main_page`, `article_article`.`main_page_time`, `article_article`.`gen_description`, `article_article`.`created`, `article_article`.`modified` FROM `article_article_translation` LEFT OUTER JOIN `article_article` ON (`article_article_translation`.`master_id` = `article_article`.`id`) WHERE (`article_article`.`type` = 2 AND `article_article`.`publish_date` IS NOT NULL AND `article_article_translation`.`language_code` = 'ru' ) ORDER BY `article_article`.`main_page` DESC, `article_article`.`publish_date` DESC LIMIT 3; args=(2, 'ru') +2015-07-28 11:19:18,884 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:18,953 [DEBUG] django.db.backends: (0.002) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment`, `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code`, `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id`, `city_city`.`id`, `city_city`.`services`, `city_city`.`url`, `city_city`.`old_url`, `city_city`.`inflect`, `city_city`.`country_id`, `city_city`.`code_IATA_id`, `city_city`.`population`, `city_city`.`phone_code`, `city_city`.`created`, `city_city`.`modified`, `city_city_translation`.`id`, `city_city_translation`.`name`, `city_city_translation`.`region`, `city_city_translation`.`transport`, `city_city_translation`.`description`, `city_city_translation`.`famous_places`, `city_city_translation`.`shoping`, `city_city_translation`.`title`, `city_city_translation`.`descriptions`, `city_city_translation`.`keywords`, `city_city_translation`.`language_code`, `city_city_translation`.`master_id`, `place_exposition_placeexposition`.`id`, `place_exposition_placeexposition`.`url`, `place_exposition_placeexposition`.`country_id`, `place_exposition_placeexposition`.`city_id`, `place_exposition_placeexposition`.`photogallery_id`, `place_exposition_placeexposition`.`type`, `place_exposition_placeexposition`.`address`, `place_exposition_placeexposition`.`phone`, `place_exposition_placeexposition`.`fax`, `place_exposition_placeexposition`.`web_page`, `place_exposition_placeexposition`.`email`, `place_exposition_placeexposition`.`foundation_year`, `place_exposition_placeexposition`.`event_in_year`, `place_exposition_placeexposition`.`total_area`, `place_exposition_placeexposition`.`closed_area`, `place_exposition_placeexposition`.`open_area`, `place_exposition_placeexposition`.`total_pavilions`, `place_exposition_placeexposition`.`total_halls`, `place_exposition_placeexposition`.`virtual_tour`, `place_exposition_placeexposition`.`wifi`, `place_exposition_placeexposition`.`bank`, `place_exposition_placeexposition`.`children_room`, `place_exposition_placeexposition`.`disabled_service`, `place_exposition_placeexposition`.`conference_centre`, `place_exposition_placeexposition`.`business_centre`, `place_exposition_placeexposition`.`online_registration`, `place_exposition_placeexposition`.`cafe`, `place_exposition_placeexposition`.`terminals`, `place_exposition_placeexposition`.`parking`, `place_exposition_placeexposition`.`press_centre`, `place_exposition_placeexposition`.`mobile_application`, `place_exposition_placeexposition`.`logo`, `place_exposition_placeexposition`.`rating`, `place_exposition_placeexposition`.`partner`, `place_exposition_placeexposition`.`created`, `place_exposition_placeexposition`.`modified`, `place_exposition_placeexposition`.`views`, `place_exposition_placeexposition`.`is_published`, `place_exposition_placeexposition_translation`.`id`, `place_exposition_placeexposition_translation`.`name`, `place_exposition_placeexposition_translation`.`main_title`, `place_exposition_placeexposition_translation`.`description`, `place_exposition_placeexposition_translation`.`adress`, `place_exposition_placeexposition_translation`.`title`, `place_exposition_placeexposition_translation`.`descriptions`, `place_exposition_placeexposition_translation`.`keywords`, `place_exposition_placeexposition_translation`.`total_year_action`, `place_exposition_placeexposition_translation`.`language_code`, `place_exposition_placeexposition_translation`.`master_id` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`main_page` = 1 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(1, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:18,959 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'exposition' AND `django_content_type`.`app_label` = 'exposition' ); args=('exposition', u'exposition') +2015-07-28 11:19:18,962 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7358 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7358, 28, 'preview') +2015-07-28 11:19:18,963 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/WIRE.png] at [220x220] +2015-07-28 11:19:18,968 [DEBUG] django.db.backends: (0.000) SELECT `accounts_calendar`.`id`, `accounts_calendar`.`user_id` FROM `accounts_calendar` WHERE `accounts_calendar`.`user_id` = 58304 ; args=(58304,) +2015-07-28 11:19:18,971 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:18,973 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:18,979 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7358 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7358, 'ru') +2015-07-28 11:19:18,982 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 7523 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(7523, 28, 'preview') +2015-07-28 11:19:18,983 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/Rosupack.png] at [220x220] +2015-07-28 11:19:18,987 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:18,990 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:18,992 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 7523 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(7523, 'ru') +2015-07-28 11:19:18,996 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 8108 AND `file_filemodel`.`content_type_id` = 28 AND `file_filemodel`.`purpose` = 'preview' ); args=(8108, 28, 'preview') +2015-07-28 11:19:18,996 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [[]] at [220x220] +2015-07-28 11:19:19,000 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:19,002 [DEBUG] django.db.backends: (0.000) SELECT `exposition_exposition_translation`.`id`, `exposition_exposition_translation`.`name`, `exposition_exposition_translation`.`main_title`, `exposition_exposition_translation`.`description`, `exposition_exposition_translation`.`products`, `exposition_exposition_translation`.`discount_description`, `exposition_exposition_translation`.`time`, `exposition_exposition_translation`.`price_day`, `exposition_exposition_translation`.`price_all`, `exposition_exposition_translation`.`price_day_bar`, `exposition_exposition_translation`.`price_all_bar`, `exposition_exposition_translation`.`stat_countries`, `exposition_exposition_translation`.`pre_condition`, `exposition_exposition_translation`.`stand_condition`, `exposition_exposition_translation`.`visit_note`, `exposition_exposition_translation`.`participation_note`, `exposition_exposition_translation`.`title`, `exposition_exposition_translation`.`descriptions`, `exposition_exposition_translation`.`keywords`, `exposition_exposition_translation`.`language_code`, `exposition_exposition_translation`.`master_id`, `exposition_exposition`.`id`, `exposition_exposition`.`url`, `exposition_exposition`.`old_url`, `exposition_exposition`.`data_begin`, `exposition_exposition`.`data_end`, `exposition_exposition`.`services`, `exposition_exposition`.`country_id`, `exposition_exposition`.`city_id`, `exposition_exposition`.`place_id`, `exposition_exposition`.`org`, `exposition_exposition`.`photogallery_id`, `exposition_exposition`.`logo`, `exposition_exposition`.`rating`, `exposition_exposition`.`quality_label`, `exposition_exposition`.`visitors`, `exposition_exposition`.`members`, `exposition_exposition`.`discount`, `exposition_exposition`.`expohit`, `exposition_exposition`.`canceled_by_administrator`, `exposition_exposition`.`is_published`, `exposition_exposition`.`canceled`, `exposition_exposition`.`moved`, `exposition_exposition`.`created`, `exposition_exposition`.`modified`, `exposition_exposition`.`main_page`, `exposition_exposition`.`views`, `exposition_exposition`.`periodic`, `exposition_exposition`.`audience`, `exposition_exposition`.`web_page`, `exposition_exposition`.`foundation_year`, `exposition_exposition`.`area`, `exposition_exposition`.`registration_link`, `exposition_exposition`.`min_area`, `exposition_exposition`.`currency`, `exposition_exposition`.`application_deadline`, `exposition_exposition`.`min_stand_size`, `exposition_exposition`.`price_catalog`, `exposition_exposition`.`tax`, `exposition_exposition`.`min_closed_area`, `exposition_exposition`.`max_closed_area`, `exposition_exposition`.`min_closed_equipped_area`, `exposition_exposition`.`max_closed_equipped_area`, `exposition_exposition`.`min_open_area`, `exposition_exposition`.`max_open_area`, `exposition_exposition`.`registration_payment` FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `accounts_calendar_expositions` ON (`exposition_exposition`.`id` = `accounts_calendar_expositions`.`exposition_id`) WHERE (`accounts_calendar_expositions`.`calendar_id` = 77974 AND `exposition_exposition_translation`.`language_code` = 'ru' ); args=(77974, 'ru') +2015-07-28 11:19:19,005 [DEBUG] django.db.backends: (0.000) SELECT `theme_tag_translation`.`id`, `theme_tag_translation`.`name`, `theme_tag_translation`.`main_title`, `theme_tag_translation`.`description`, `theme_tag_translation`.`title`, `theme_tag_translation`.`descriptions`, `theme_tag_translation`.`keywords`, `theme_tag_translation`.`language_code`, `theme_tag_translation`.`master_id`, `theme_tag`.`id`, `theme_tag`.`url`, `theme_tag`.`old_url`, `theme_tag`.`theme_id`, `theme_tag`.`inflect` FROM `theme_tag_translation` LEFT OUTER JOIN `theme_tag` ON (`theme_tag_translation`.`master_id` = `theme_tag`.`id`) LEFT OUTER JOIN `exposition_exposition_tag` ON (`theme_tag`.`id` = `exposition_exposition_tag`.`tag_id`) WHERE (`exposition_exposition_tag`.`exposition_id` = 8108 AND `theme_tag_translation`.`language_code` = 'ru' ) ORDER BY `theme_tag_translation`.`name` ASC; args=(8108, 'ru') +2015-07-28 11:19:19,069 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 1) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:19:19,076 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 54 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,082 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 51 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 51, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,087 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 48 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 48, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,093 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 39 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 39, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,099 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 37 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 37, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,104 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `exposition_exposition_translation` LEFT OUTER JOIN `exposition_exposition` ON (`exposition_exposition_translation`.`master_id` = `exposition_exposition`.`id`) LEFT OUTER JOIN `exposition_exposition_theme` ON (`exposition_exposition`.`id` = `exposition_exposition_theme`.`exposition_id`) LEFT OUTER JOIN `country_country` ON (`exposition_exposition`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`exposition_exposition`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_exposition_placeexposition` ON (`exposition_exposition`.`place_id` = `place_exposition_placeexposition`.`id`) LEFT OUTER JOIN `place_exposition_placeexposition_translation` ON (`place_exposition_placeexposition`.`id` = `place_exposition_placeexposition_translation`.`master_id`) WHERE (`exposition_exposition`.`is_published` = 1 AND `exposition_exposition`.`data_begin` >= '2015-07-28' AND `exposition_exposition_theme`.`theme_id` = 31 AND `exposition_exposition_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_exposition_placeexposition_translation`.`language_code` = 'ru' OR `place_exposition_placeexposition_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 31, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,106 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE (`theme_theme`.`types` = (`theme_theme`.`types` | 2) AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme`.`main_page` DESC LIMIT 6; args=('ru',) +2015-07-28 11:19:19,115 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 87 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 87, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,121 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 84 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 84, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,126 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 74 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 74, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,132 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 70 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 70, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,138 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 68 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 68, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,143 [DEBUG] django.db.backends: (0.000) SELECT COUNT(*) FROM `conference_conference_translation` LEFT OUTER JOIN `conference_conference` ON (`conference_conference_translation`.`master_id` = `conference_conference`.`id`) LEFT OUTER JOIN `conference_conference_theme` ON (`conference_conference`.`id` = `conference_conference_theme`.`conference_id`) LEFT OUTER JOIN `country_country` ON (`conference_conference`.`country_id` = `country_country`.`id`) LEFT OUTER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) LEFT OUTER JOIN `city_city` ON (`conference_conference`.`city_id` = `city_city`.`id`) LEFT OUTER JOIN `city_city_translation` ON (`city_city`.`id` = `city_city_translation`.`master_id`) LEFT OUTER JOIN `place_conference_placeconference` ON (`conference_conference`.`place_id` = `place_conference_placeconference`.`id`) LEFT OUTER JOIN `place_conference_placeconference_translation` ON (`place_conference_placeconference`.`id` = `place_conference_placeconference_translation`.`master_id`) WHERE (`conference_conference`.`is_published` = 1 AND `conference_conference`.`data_begin` >= '2015-07-28' AND `conference_conference_theme`.`theme_id` = 54 AND `conference_conference_translation`.`language_code` = 'ru' AND (`country_country_translation`.`language_code` = 'ru' OR `country_country_translation`.`language_code` IS NULL) AND (`city_city_translation`.`language_code` = 'ru' OR `city_city_translation`.`language_code` IS NULL) AND (`place_conference_placeconference_translation`.`language_code` = 'ru' OR `place_conference_placeconference_translation`.`language_code` IS NULL)); args=(True, u'2015-07-28', 54, 'ru', 'ru', 'ru', 'ru') +2015-07-28 11:19:19,144 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/expomilano_2015_3.jpg] at [80x80] +2015-07-28 11:19:19,146 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/3dprint.jpg] at [80x80] +2015-07-28 11:19:19,147 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [articles_preview/rif.png] at [80x80] +2015-07-28 11:19:19,150 [DEBUG] django.db.backends: (0.000) SELECT `django_content_type`.`id`, `django_content_type`.`name`, `django_content_type`.`app_label`, `django_content_type`.`model` FROM `django_content_type` WHERE (`django_content_type`.`model` = 'article' AND `django_content_type`.`app_label` = 'article' ); args=('article', u'article') +2015-07-28 11:19:19,152 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:19:19,154 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 50 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(50, 10, 'preview') +2015-07-28 11:19:19,155 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/oborudovanie.png] at [220x100] +2015-07-28 11:19:19,157 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:19:19,159 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 48 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(48, 10, 'preview') +2015-07-28 11:19:19,160 [DEBUG] sorl.thumbnail.base: Getting thumbnail for file [imgs/strategii_reklami.png] at [220x100] +2015-07-28 11:19:19,162 [DEBUG] django.db.backends: (0.000) SELECT `file_filemodel`.`id`, `file_filemodel`.`content_type_id`, `file_filemodel`.`object_id`, `file_filemodel`.`file_path`, `file_filemodel`.`file_type`, `file_filemodel`.`purpose`, `file_filemodel`.`img_width`, `file_filemodel`.`img_height`, `file_filemodel`.`created`, `file_filemodel`.`modified` FROM `file_filemodel` WHERE (`file_filemodel`.`object_id` = 40 AND `file_filemodel`.`content_type_id` = 10 AND `file_filemodel`.`purpose` = 'preview' ); args=(40, 10, 'preview') +2015-07-28 11:19:19,172 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:19,191 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:19,194 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:19,196 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:19,199 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:19,201 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:19,204 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:19,206 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:19,209 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:19,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:19,214 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:19,217 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:19,219 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:19,222 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:19,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:19,226 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:19,229 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:19,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:19,234 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:19,237 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:19,239 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:19,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:19,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:19,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:19,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:19,252 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:19,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:19,257 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:19,259 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:19,262 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:19,264 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:19,267 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:19,269 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:19,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:19,274 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:19,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:19,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:19,282 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:19,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:19,287 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:19,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:19,292 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:19,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:19,299 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:19,301 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:19,304 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:19,306 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:19,309 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:19,311 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:19,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:19,316 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:19,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:19,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:19,324 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:19,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:19,329 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:19,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:19,334 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:19,336 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:19,339 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:19,341 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:19,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:19,346 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:19,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:19,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:19,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:19,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:19,359 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:19,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:19,364 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:19,366 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:19,369 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:19,371 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:19,374 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:19,376 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:19,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:19,381 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:19,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:19,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:19,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:19,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:19,394 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:19,396 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:19,399 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:19,401 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:19,404 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:19,406 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:19,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:19,411 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:19,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:19,416 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:19,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:19,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:19,424 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:19,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:19,429 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:19,431 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:19,434 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:19,436 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:19,439 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:19,441 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:19,444 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:19,446 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:19,449 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:19,451 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:19,454 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:19,456 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:19,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:19,461 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:19,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:19,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:19,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:19,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:19,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:19,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:19,479 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:19,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:19,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:19,486 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:19,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:19,491 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:19,493 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:19,496 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:19,498 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:19,501 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:19,503 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:19,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:19,508 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:19,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:19,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:19,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:19,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:19,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:19,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:19,526 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:19,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:19,531 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:19,533 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:19,536 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:19,538 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:19,541 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:19,543 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:19,545 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:19,548 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:19,550 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:19,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:19,555 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:19,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:19,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:19,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:19,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:19,568 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:19,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:19,573 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:19,575 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:19,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:19,580 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:19,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:19,585 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:19,587 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:19,590 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:19,592 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:19,595 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:19,597 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:19,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:19,602 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:19,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:19,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:19,609 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:19,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:19,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:19,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:19,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:19,622 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:19,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:19,627 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:19,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:19,632 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:19,634 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:19,637 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:19:19,639 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 179 AND `country_country_translation`.`language_code` = 'ru' ); args=(179, 'ru') +2015-07-28 11:19:19,642 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 181 AND `country_country_translation`.`language_code` = 'ru' ); args=(181, 'ru') +2015-07-28 11:19:19,644 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 189 AND `country_country_translation`.`language_code` = 'ru' ); args=(189, 'ru') +2015-07-28 11:19:19,647 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 186 AND `country_country_translation`.`language_code` = 'ru' ); args=(186, 'ru') +2015-07-28 11:19:19,649 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 188 AND `country_country_translation`.`language_code` = 'ru' ); args=(188, 'ru') +2015-07-28 11:19:19,651 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 59 AND `country_country_translation`.`language_code` = 'ru' ); args=(59, 'ru') +2015-07-28 11:19:19,654 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 57 AND `country_country_translation`.`language_code` = 'ru' ); args=(57, 'ru') +2015-07-28 11:19:19,656 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 146 AND `country_country_translation`.`language_code` = 'ru' ); args=(146, 'ru') +2015-07-28 11:19:19,659 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 56 AND `country_country_translation`.`language_code` = 'ru' ); args=(56, 'ru') +2015-07-28 11:19:19,662 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 60 AND `country_country_translation`.`language_code` = 'ru' ); args=(60, 'ru') +2015-07-28 11:19:19,664 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 65 AND `country_country_translation`.`language_code` = 'ru' ); args=(65, 'ru') +2015-07-28 11:19:19,667 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 144 AND `country_country_translation`.`language_code` = 'ru' ); args=(144, 'ru') +2015-07-28 11:19:19,669 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 78 AND `country_country_translation`.`language_code` = 'ru' ); args=(78, 'ru') +2015-07-28 11:19:19,672 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 113 AND `country_country_translation`.`language_code` = 'ru' ); args=(113, 'ru') +2015-07-28 11:19:19,674 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 46 AND `country_country_translation`.`language_code` = 'ru' ); args=(46, 'ru') +2015-07-28 11:19:19,677 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 38 AND `country_country_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:19,679 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 35 AND `country_country_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:19,682 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 163 AND `country_country_translation`.`language_code` = 'ru' ); args=(163, 'ru') +2015-07-28 11:19:19,684 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 104 AND `country_country_translation`.`language_code` = 'ru' ); args=(104, 'ru') +2015-07-28 11:19:19,687 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 52 AND `country_country_translation`.`language_code` = 'ru' ); args=(52, 'ru') +2015-07-28 11:19:19,689 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 53 AND `country_country_translation`.`language_code` = 'ru' ); args=(53, 'ru') +2015-07-28 11:19:19,692 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 204 AND `country_country_translation`.`language_code` = 'ru' ); args=(204, 'ru') +2015-07-28 11:19:19,694 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 96 AND `country_country_translation`.`language_code` = 'ru' ); args=(96, 'ru') +2015-07-28 11:19:19,697 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 199 AND `country_country_translation`.`language_code` = 'ru' ); args=(199, 'ru') +2015-07-28 11:19:19,699 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 88 AND `country_country_translation`.`language_code` = 'ru' ); args=(88, 'ru') +2015-07-28 11:19:19,702 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 90 AND `country_country_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:33,362 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,364 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,386 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,387 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,403 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,404 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,459 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,460 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,529 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,530 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,537 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:19:33,538 [DEBUG] django.db.backends: (0.000) SELECT `service_service`.`id`, `service_service`.`url`, `service_service`.`currency`, `service_service`.`price`, `service_service`.`params`, `service_service`.`template`, `service_service`.`type`, `service_service`.`sort`, `service_service`.`main_page`, `service_service`.`meta_id` FROM `service_service`; args=() +2015-07-28 11:19:33,600 [DEBUG] django.db.backends: (0.001) SELECT DISTINCT `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect`, `theme_theme_translation`.`name` FROM `theme_theme` INNER JOIN `exposition_exposition_theme` ON (`theme_theme`.`id` = `exposition_exposition_theme`.`theme_id`) INNER JOIN `exposition_exposition` ON (`exposition_exposition_theme`.`exposition_id` = `exposition_exposition`.`id`) INNER JOIN `exposition_exposition_theme` T4 ON (`exposition_exposition`.`id` = T4.`exposition_id`) INNER JOIN `theme_theme` T5 ON (T4.`theme_id` = T5.`id`) INNER JOIN `theme_theme_translation` ON (`theme_theme`.`id` = `theme_theme_translation`.`master_id`) WHERE (T5.`id` IS NOT NULL AND `theme_theme_translation`.`language_code` = 'ru' ) ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:33,607 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 1 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:33,610 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 2 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:33,612 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 75 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:33,614 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 94 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:33,617 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 3 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:33,619 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 37 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:33,621 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 84 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:33,624 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 4 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:33,626 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 64 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:33,629 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 77 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:33,631 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 6 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:33,633 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 7 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:33,636 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 8 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:33,638 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 5 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:33,640 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 10 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:33,643 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 11 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:33,645 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 74 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:33,647 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 70 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:33,650 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 73 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:33,652 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 69 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:33,654 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 71 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:33,657 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 68 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:33,659 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 72 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:33,662 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 45 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:33,664 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 13 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:33,666 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 14 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:33,669 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 42 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:33,671 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 15 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:33,674 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 43 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:33,676 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 27 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:33,678 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 22 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:33,681 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 16 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:33,683 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 17 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:33,686 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 87 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:33,688 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 44 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:33,690 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 50 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:33,693 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 18 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:33,695 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 21 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:33,697 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 62 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:33,700 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 51 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:33,702 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 23 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:33,705 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 97 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:33,707 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 9 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:33,709 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 31 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:33,712 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 63 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:33,714 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 24 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:33,716 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 26 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:33,719 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 28 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:33,721 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 30 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:33,723 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 34 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:33,726 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 90 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(90, 'ru') +2015-07-28 11:19:33,728 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 54 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:33,730 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 48 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:33,733 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 32 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:33,735 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 29 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:33,738 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 83 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:33,740 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 35 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(35, 'ru') +2015-07-28 11:19:33,742 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 36 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:33,745 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 38 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(38, 'ru') +2015-07-28 11:19:33,747 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 39 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:33,749 [DEBUG] django.db.backends: (0.000) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id` FROM `theme_theme_translation` WHERE (`theme_theme_translation`.`master_id` = 40 AND `theme_theme_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:33,753 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:33,875 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:33,993 [DEBUG] django.db.backends: (0.003) SELECT `theme_theme_translation`.`id`, `theme_theme_translation`.`name`, `theme_theme_translation`.`main_title`, `theme_theme_translation`.`description`, `theme_theme_translation`.`title`, `theme_theme_translation`.`descriptions`, `theme_theme_translation`.`keywords`, `theme_theme_translation`.`language_code`, `theme_theme_translation`.`master_id`, `theme_theme`.`id`, `theme_theme`.`url`, `theme_theme`.`old_url`, `theme_theme`.`types`, `theme_theme`.`main_page`, `theme_theme`.`inflect` FROM `theme_theme_translation` LEFT OUTER JOIN `theme_theme` ON (`theme_theme_translation`.`master_id` = `theme_theme`.`id`) WHERE `theme_theme_translation`.`language_code` = 'ru' ORDER BY `theme_theme_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:34,003 [DEBUG] django.db.backends: (0.000) SELECT `country_area_translation`.`id`, `country_area_translation`.`name`, `country_area_translation`.`language_code`, `country_area_translation`.`master_id`, `country_area`.`id` FROM `country_area_translation` LEFT OUTER JOIN `country_area` ON (`country_area_translation`.`master_id` = `country_area`.`id`) LEFT OUTER JOIN `country_area_translation` T3 ON (`country_area`.`id` = T3.`master_id`) WHERE `country_area_translation`.`language_code` = 'ru' ORDER BY T3.`name` ASC; args=('ru',) +2015-07-28 11:19:34,194 [DEBUG] django.db.backends: (0.007) SELECT `country_country`.`id`, `country_country`.`services`, `country_country`.`url`, `country_country`.`old_url`, `country_country`.`inflect`, `country_country`.`area_id`, `country_country`.`capital_id`, `country_country`.`population`, `country_country`.`teritory`, `country_country`.`timezone`, `country_country`.`phone_code`, `country_country`.`time_delivery`, `country_country`.`latitude`, `country_country`.`longitude`, `country_country`.`created`, `country_country`.`modified`, `country_country`.`country_code` FROM `country_country` INNER JOIN `country_country_translation` ON (`country_country`.`id` = `country_country_translation`.`master_id`) WHERE `country_country_translation`.`language_code` = 'ru' ORDER BY `country_country_translation`.`name` ASC; args=('ru',) +2015-07-28 11:19:34,205 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 197 AND `country_country_translation`.`language_code` = 'ru' ); args=(197, 'ru') +2015-07-28 11:19:34,207 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 11 AND `country_country_translation`.`language_code` = 'ru' ); args=(11, 'ru') +2015-07-28 11:19:34,209 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 10 AND `country_country_translation`.`language_code` = 'ru' ); args=(10, 'ru') +2015-07-28 11:19:34,212 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 13 AND `country_country_translation`.`language_code` = 'ru' ); args=(13, 'ru') +2015-07-28 11:19:34,214 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 5 AND `country_country_translation`.`language_code` = 'ru' ); args=(5, 'ru') +2015-07-28 11:19:34,216 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 51 AND `country_country_translation`.`language_code` = 'ru' ); args=(51, 'ru') +2015-07-28 11:19:34,219 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 193 AND `country_country_translation`.`language_code` = 'ru' ); args=(193, 'ru') +2015-07-28 11:19:34,221 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 9 AND `country_country_translation`.`language_code` = 'ru' ); args=(9, 'ru') +2015-07-28 11:19:34,224 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 4 AND `country_country_translation`.`language_code` = 'ru' ); args=(4, 'ru') +2015-07-28 11:19:34,226 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 7 AND `country_country_translation`.`language_code` = 'ru' ); args=(7, 'ru') +2015-07-28 11:19:34,228 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 1 AND `country_country_translation`.`language_code` = 'ru' ); args=(1, 'ru') +2015-07-28 11:19:34,231 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 3 AND `country_country_translation`.`language_code` = 'ru' ); args=(3, 'ru') +2015-07-28 11:19:34,233 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 8 AND `country_country_translation`.`language_code` = 'ru' ); args=(8, 'ru') +2015-07-28 11:19:34,235 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 6 AND `country_country_translation`.`language_code` = 'ru' ); args=(6, 'ru') +2015-07-28 11:19:34,238 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 12 AND `country_country_translation`.`language_code` = 'ru' ); args=(12, 'ru') +2015-07-28 11:19:34,240 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 28 AND `country_country_translation`.`language_code` = 'ru' ); args=(28, 'ru') +2015-07-28 11:19:34,242 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 16 AND `country_country_translation`.`language_code` = 'ru' ); args=(16, 'ru') +2015-07-28 11:19:34,244 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 15 AND `country_country_translation`.`language_code` = 'ru' ); args=(15, 'ru') +2015-07-28 11:19:34,247 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 20 AND `country_country_translation`.`language_code` = 'ru' ); args=(20, 'ru') +2015-07-28 11:19:34,249 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 31 AND `country_country_translation`.`language_code` = 'ru' ); args=(31, 'ru') +2015-07-28 11:19:34,251 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 32 AND `country_country_translation`.`language_code` = 'ru' ); args=(32, 'ru') +2015-07-28 11:19:34,254 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 17 AND `country_country_translation`.`language_code` = 'ru' ); args=(17, 'ru') +2015-07-28 11:19:34,256 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 21 AND `country_country_translation`.`language_code` = 'ru' ); args=(21, 'ru') +2015-07-28 11:19:34,258 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 23 AND `country_country_translation`.`language_code` = 'ru' ); args=(23, 'ru') +2015-07-28 11:19:34,261 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 19 AND `country_country_translation`.`language_code` = 'ru' ); args=(19, 'ru') +2015-07-28 11:19:34,263 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 25 AND `country_country_translation`.`language_code` = 'ru' ); args=(25, 'ru') +2015-07-28 11:19:34,265 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 26 AND `country_country_translation`.`language_code` = 'ru' ); args=(26, 'ru') +2015-07-28 11:19:34,268 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 14 AND `country_country_translation`.`language_code` = 'ru' ); args=(14, 'ru') +2015-07-28 11:19:34,270 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 30 AND `country_country_translation`.`language_code` = 'ru' ); args=(30, 'ru') +2015-07-28 11:19:34,272 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 27 AND `country_country_translation`.`language_code` = 'ru' ); args=(27, 'ru') +2015-07-28 11:19:34,275 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 192 AND `country_country_translation`.`language_code` = 'ru' ); args=(192, 'ru') +2015-07-28 11:19:34,277 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 24 AND `country_country_translation`.`language_code` = 'ru' ); args=(24, 'ru') +2015-07-28 11:19:34,279 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 18 AND `country_country_translation`.`language_code` = 'ru' ); args=(18, 'ru') +2015-07-28 11:19:34,282 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 29 AND `country_country_translation`.`language_code` = 'ru' ); args=(29, 'ru') +2015-07-28 11:19:34,284 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 195 AND `country_country_translation`.`language_code` = 'ru' ); args=(195, 'ru') +2015-07-28 11:19:34,286 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 62 AND `country_country_translation`.`language_code` = 'ru' ); args=(62, 'ru') +2015-07-28 11:19:34,289 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 80 AND `country_country_translation`.`language_code` = 'ru' ); args=(80, 'ru') +2015-07-28 11:19:34,291 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 191 AND `country_country_translation`.`language_code` = 'ru' ); args=(191, 'ru') +2015-07-28 11:19:34,293 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 178 AND `country_country_translation`.`language_code` = 'ru' ); args=(178, 'ru') +2015-07-28 11:19:34,296 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 194 AND `country_country_translation`.`language_code` = 'ru' ); args=(194, 'ru') +2015-07-28 11:19:34,298 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 61 AND `country_country_translation`.`language_code` = 'ru' ); args=(61, 'ru') +2015-07-28 11:19:34,300 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 79 AND `country_country_translation`.`language_code` = 'ru' ); args=(79, 'ru') +2015-07-28 11:19:34,303 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 75 AND `country_country_translation`.`language_code` = 'ru' ); args=(75, 'ru') +2015-07-28 11:19:34,305 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 69 AND `country_country_translation`.`language_code` = 'ru' ); args=(69, 'ru') +2015-07-28 11:19:34,307 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 66 AND `country_country_translation`.`language_code` = 'ru' ); args=(66, 'ru') +2015-07-28 11:19:34,310 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 71 AND `country_country_translation`.`language_code` = 'ru' ); args=(71, 'ru') +2015-07-28 11:19:34,312 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 73 AND `country_country_translation`.`language_code` = 'ru' ); args=(73, 'ru') +2015-07-28 11:19:34,314 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 70 AND `country_country_translation`.`language_code` = 'ru' ); args=(70, 'ru') +2015-07-28 11:19:34,317 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 47 AND `country_country_translation`.`language_code` = 'ru' ); args=(47, 'ru') +2015-07-28 11:19:34,319 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 67 AND `country_country_translation`.`language_code` = 'ru' ); args=(67, 'ru') +2015-07-28 11:19:34,321 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 77 AND `country_country_translation`.`language_code` = 'ru' ); args=(77, 'ru') +2015-07-28 11:19:34,323 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 76 AND `country_country_translation`.`language_code` = 'ru' ); args=(76, 'ru') +2015-07-28 11:19:34,326 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 63 AND `country_country_translation`.`language_code` = 'ru' ); args=(63, 'ru') +2015-07-28 11:19:34,328 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 68 AND `country_country_translation`.`language_code` = 'ru' ); args=(68, 'ru') +2015-07-28 11:19:34,331 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 72 AND `country_country_translation`.`language_code` = 'ru' ); args=(72, 'ru') +2015-07-28 11:19:34,333 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 64 AND `country_country_translation`.`language_code` = 'ru' ); args=(64, 'ru') +2015-07-28 11:19:34,335 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 74 AND `country_country_translation`.`language_code` = 'ru' ); args=(74, 'ru') +2015-07-28 11:19:34,337 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 48 AND `country_country_translation`.`language_code` = 'ru' ); args=(48, 'ru') +2015-07-28 11:19:34,340 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 49 AND `country_country_translation`.`language_code` = 'ru' ); args=(49, 'ru') +2015-07-28 11:19:34,342 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 50 AND `country_country_translation`.`language_code` = 'ru' ); args=(50, 'ru') +2015-07-28 11:19:34,344 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 54 AND `country_country_translation`.`language_code` = 'ru' ); args=(54, 'ru') +2015-07-28 11:19:34,347 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 200 AND `country_country_translation`.`language_code` = 'ru' ); args=(200, 'ru') +2015-07-28 11:19:34,349 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 207 AND `country_country_translation`.`language_code` = 'ru' ); args=(207, 'ru') +2015-07-28 11:19:34,351 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 83 AND `country_country_translation`.`language_code` = 'ru' ); args=(83, 'ru') +2015-07-28 11:19:34,354 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 84 AND `country_country_translation`.`language_code` = 'ru' ); args=(84, 'ru') +2015-07-28 11:19:34,356 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 81 AND `country_country_translation`.`language_code` = 'ru' ); args=(81, 'ru') +2015-07-28 11:19:34,358 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 89 AND `country_country_translation`.`language_code` = 'ru' ); args=(89, 'ru') +2015-07-28 11:19:34,361 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 85 AND `country_country_translation`.`language_code` = 'ru' ); args=(85, 'ru') +2015-07-28 11:19:34,363 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 201 AND `country_country_translation`.`language_code` = 'ru' ); args=(201, 'ru') +2015-07-28 11:19:34,365 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 82 AND `country_country_translation`.`language_code` = 'ru' ); args=(82, 'ru') +2015-07-28 11:19:34,368 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 86 AND `country_country_translation`.`language_code` = 'ru' ); args=(86, 'ru') +2015-07-28 11:19:34,370 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 55 AND `country_country_translation`.`language_code` = 'ru' ); args=(55, 'ru') +2015-07-28 11:19:34,372 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 87 AND `country_country_translation`.`language_code` = 'ru' ); args=(87, 'ru') +2015-07-28 11:19:34,375 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 43 AND `country_country_translation`.`language_code` = 'ru' ); args=(43, 'ru') +2015-07-28 11:19:34,377 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 99 AND `country_country_translation`.`language_code` = 'ru' ); args=(99, 'ru') +2015-07-28 11:19:34,379 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 98 AND `country_country_translation`.`language_code` = 'ru' ); args=(98, 'ru') +2015-07-28 11:19:34,382 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 93 AND `country_country_translation`.`language_code` = 'ru' ); args=(93, 'ru') +2015-07-28 11:19:34,384 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 39 AND `country_country_translation`.`language_code` = 'ru' ); args=(39, 'ru') +2015-07-28 11:19:34,386 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 33 AND `country_country_translation`.`language_code` = 'ru' ); args=(33, 'ru') +2015-07-28 11:19:34,389 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 155 AND `country_country_translation`.`language_code` = 'ru' ); args=(155, 'ru') +2015-07-28 11:19:34,391 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 91 AND `country_country_translation`.`language_code` = 'ru' ); args=(91, 'ru') +2015-07-28 11:19:34,393 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 45 AND `country_country_translation`.`language_code` = 'ru' ); args=(45, 'ru') +2015-07-28 11:19:34,395 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 92 AND `country_country_translation`.`language_code` = 'ru' ); args=(92, 'ru') +2015-07-28 11:19:34,398 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 94 AND `country_country_translation`.`language_code` = 'ru' ); args=(94, 'ru') +2015-07-28 11:19:34,400 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 40 AND `country_country_translation`.`language_code` = 'ru' ); args=(40, 'ru') +2015-07-28 11:19:34,403 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 34 AND `country_country_translation`.`language_code` = 'ru' ); args=(34, 'ru') +2015-07-28 11:19:34,405 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 41 AND `country_country_translation`.`language_code` = 'ru' ); args=(41, 'ru') +2015-07-28 11:19:34,407 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 198 AND `country_country_translation`.`language_code` = 'ru' ); args=(198, 'ru') +2015-07-28 11:19:34,409 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 42 AND `country_country_translation`.`language_code` = 'ru' ); args=(42, 'ru') +2015-07-28 11:19:34,412 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 36 AND `country_country_translation`.`language_code` = 'ru' ); args=(36, 'ru') +2015-07-28 11:19:34,414 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 97 AND `country_country_translation`.`language_code` = 'ru' ); args=(97, 'ru') +2015-07-28 11:19:34,417 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 44 AND `country_country_translation`.`language_code` = 'ru' ); args=(44, 'ru') +2015-07-28 11:19:34,419 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 100 AND `country_country_translation`.`language_code` = 'ru' ); args=(100, 'ru') +2015-07-28 11:19:34,421 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 108 AND `country_country_translation`.`language_code` = 'ru' ); args=(108, 'ru') +2015-07-28 11:19:34,423 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 105 AND `country_country_translation`.`language_code` = 'ru' ); args=(105, 'ru') +2015-07-28 11:19:34,426 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 101 AND `country_country_translation`.`language_code` = 'ru' ); args=(101, 'ru') +2015-07-28 11:19:34,428 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 109 AND `country_country_translation`.`language_code` = 'ru' ); args=(109, 'ru') +2015-07-28 11:19:34,433 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 106 AND `country_country_translation`.`language_code` = 'ru' ); args=(106, 'ru') +2015-07-28 11:19:34,435 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 103 AND `country_country_translation`.`language_code` = 'ru' ); args=(103, 'ru') +2015-07-28 11:19:34,437 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 107 AND `country_country_translation`.`language_code` = 'ru' ); args=(107, 'ru') +2015-07-28 11:19:34,448 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 127 AND `country_country_translation`.`language_code` = 'ru' ); args=(127, 'ru') +2015-07-28 11:19:34,450 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 124 AND `country_country_translation`.`language_code` = 'ru' ); args=(124, 'ru') +2015-07-28 11:19:34,452 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 115 AND `country_country_translation`.`language_code` = 'ru' ); args=(115, 'ru') +2015-07-28 11:19:34,455 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 121 AND `country_country_translation`.`language_code` = 'ru' ); args=(121, 'ru') +2015-07-28 11:19:34,457 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 117 AND `country_country_translation`.`language_code` = 'ru' ); args=(117, 'ru') +2015-07-28 11:19:34,459 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 130 AND `country_country_translation`.`language_code` = 'ru' ); args=(130, 'ru') +2015-07-28 11:19:34,462 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 118 AND `country_country_translation`.`language_code` = 'ru' ); args=(118, 'ru') +2015-07-28 11:19:34,464 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 128 AND `country_country_translation`.`language_code` = 'ru' ); args=(128, 'ru') +2015-07-28 11:19:34,466 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 126 AND `country_country_translation`.`language_code` = 'ru' ); args=(126, 'ru') +2015-07-28 11:19:34,469 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 110 AND `country_country_translation`.`language_code` = 'ru' ); args=(110, 'ru') +2015-07-28 11:19:34,471 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 123 AND `country_country_translation`.`language_code` = 'ru' ); args=(123, 'ru') +2015-07-28 11:19:34,474 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 116 AND `country_country_translation`.`language_code` = 'ru' ); args=(116, 'ru') +2015-07-28 11:19:34,476 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 129 AND `country_country_translation`.`language_code` = 'ru' ); args=(129, 'ru') +2015-07-28 11:19:34,478 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 58 AND `country_country_translation`.`language_code` = 'ru' ); args=(58, 'ru') +2015-07-28 11:19:34,481 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 205 AND `country_country_translation`.`language_code` = 'ru' ); args=(205, 'ru') +2015-07-28 11:19:34,483 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 112 AND `country_country_translation`.`language_code` = 'ru' ); args=(112, 'ru') +2015-07-28 11:19:34,485 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 111 AND `country_country_translation`.`language_code` = 'ru' ); args=(111, 'ru') +2015-07-28 11:19:34,488 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 120 AND `country_country_translation`.`language_code` = 'ru' ); args=(120, 'ru') +2015-07-28 11:19:34,490 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 125 AND `country_country_translation`.`language_code` = 'ru' ); args=(125, 'ru') +2015-07-28 11:19:34,492 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 119 AND `country_country_translation`.`language_code` = 'ru' ); args=(119, 'ru') +2015-07-28 11:19:34,495 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 131 AND `country_country_translation`.`language_code` = 'ru' ); args=(131, 'ru') +2015-07-28 11:19:34,497 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 138 AND `country_country_translation`.`language_code` = 'ru' ); args=(138, 'ru') +2015-07-28 11:19:34,499 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 134 AND `country_country_translation`.`language_code` = 'ru' ); args=(134, 'ru') +2015-07-28 11:19:34,502 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 136 AND `country_country_translation`.`language_code` = 'ru' ); args=(136, 'ru') +2015-07-28 11:19:34,504 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 135 AND `country_country_translation`.`language_code` = 'ru' ); args=(135, 'ru') +2015-07-28 11:19:34,506 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 139 AND `country_country_translation`.`language_code` = 'ru' ); args=(139, 'ru') +2015-07-28 11:19:34,509 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 140 AND `country_country_translation`.`language_code` = 'ru' ); args=(140, 'ru') +2015-07-28 11:19:34,511 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 132 AND `country_country_translation`.`language_code` = 'ru' ); args=(132, 'ru') +2015-07-28 11:19:34,513 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 137 AND `country_country_translation`.`language_code` = 'ru' ); args=(137, 'ru') +2015-07-28 11:19:34,516 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 175 AND `country_country_translation`.`language_code` = 'ru' ); args=(175, 'ru') +2015-07-28 11:19:34,518 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 2 AND `country_country_translation`.`language_code` = 'ru' ); args=(2, 'ru') +2015-07-28 11:19:34,521 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 185 AND `country_country_translation`.`language_code` = 'ru' ); args=(185, 'ru') +2015-07-28 11:19:34,523 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 141 AND `country_country_translation`.`language_code` = 'ru' ); args=(141, 'ru') +2015-07-28 11:19:34,525 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 133 AND `country_country_translation`.`language_code` = 'ru' ); args=(133, 'ru') +2015-07-28 11:19:34,528 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 37 AND `country_country_translation`.`language_code` = 'ru' ); args=(37, 'ru') +2015-07-28 11:19:34,530 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 147 AND `country_country_translation`.`language_code` = 'ru' ); args=(147, 'ru') +2015-07-28 11:19:34,532 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 153 AND `country_country_translation`.`language_code` = 'ru' ); args=(153, 'ru') +2015-07-28 11:19:34,535 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 151 AND `country_country_translation`.`language_code` = 'ru' ); args=(151, 'ru') +2015-07-28 11:19:34,537 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 142 AND `country_country_translation`.`language_code` = 'ru' ); args=(142, 'ru') +2015-07-28 11:19:34,539 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 145 AND `country_country_translation`.`language_code` = 'ru' ); args=(145, 'ru') +2015-07-28 11:19:34,542 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 154 AND `country_country_translation`.`language_code` = 'ru' ); args=(154, 'ru') +2015-07-28 11:19:34,544 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 143 AND `country_country_translation`.`language_code` = 'ru' ); args=(143, 'ru') +2015-07-28 11:19:34,546 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 148 AND `country_country_translation`.`language_code` = 'ru' ); args=(148, 'ru') +2015-07-28 11:19:34,549 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 152 AND `country_country_translation`.`language_code` = 'ru' ); args=(152, 'ru') +2015-07-28 11:19:34,551 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 150 AND `country_country_translation`.`language_code` = 'ru' ); args=(150, 'ru') +2015-07-28 11:19:34,553 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 156 AND `country_country_translation`.`language_code` = 'ru' ); args=(156, 'ru') +2015-07-28 11:19:34,556 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 159 AND `country_country_translation`.`language_code` = 'ru' ); args=(159, 'ru') +2015-07-28 11:19:34,558 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 157 AND `country_country_translation`.`language_code` = 'ru' ); args=(157, 'ru') +2015-07-28 11:19:34,560 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 172 AND `country_country_translation`.`language_code` = 'ru' ); args=(172, 'ru') +2015-07-28 11:19:34,563 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 196 AND `country_country_translation`.`language_code` = 'ru' ); args=(196, 'ru') +2015-07-28 11:19:34,565 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 168 AND `country_country_translation`.`language_code` = 'ru' ); args=(168, 'ru') +2015-07-28 11:19:34,567 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 171 AND `country_country_translation`.`language_code` = 'ru' ); args=(171, 'ru') +2015-07-28 11:19:34,570 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 160 AND `country_country_translation`.`language_code` = 'ru' ); args=(160, 'ru') +2015-07-28 11:19:34,572 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 174 AND `country_country_translation`.`language_code` = 'ru' ); args=(174, 'ru') +2015-07-28 11:19:34,574 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 122 AND `country_country_translation`.`language_code` = 'ru' ); args=(122, 'ru') +2015-07-28 11:19:34,577 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 162 AND `country_country_translation`.`language_code` = 'ru' ); args=(162, 'ru') +2015-07-28 11:19:34,579 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 22 AND `country_country_translation`.`language_code` = 'ru' ); args=(22, 'ru') +2015-07-28 11:19:34,582 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 114 AND `country_country_translation`.`language_code` = 'ru' ); args=(114, 'ru') +2015-07-28 11:19:34,584 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 149 AND `country_country_translation`.`language_code` = 'ru' ); args=(149, 'ru') +2015-07-28 11:19:34,586 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 169 AND `country_country_translation`.`language_code` = 'ru' ); args=(169, 'ru') +2015-07-28 11:19:34,589 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 190 AND `country_country_translation`.`language_code` = 'ru' ); args=(190, 'ru') +2015-07-28 11:19:34,591 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 95 AND `country_country_translation`.`language_code` = 'ru' ); args=(95, 'ru') +2015-07-28 11:19:34,593 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 102 AND `country_country_translation`.`language_code` = 'ru' ); args=(102, 'ru') +2015-07-28 11:19:34,596 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 158 AND `country_country_translation`.`language_code` = 'ru' ); args=(158, 'ru') +2015-07-28 11:19:34,598 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 164 AND `country_country_translation`.`language_code` = 'ru' ); args=(164, 'ru') +2015-07-28 11:19:34,600 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 173 AND `country_country_translation`.`language_code` = 'ru' ); args=(173, 'ru') +2015-07-28 11:19:34,603 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 206 AND `country_country_translation`.`language_code` = 'ru' ); args=(206, 'ru') +2015-07-28 11:19:34,605 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 166 AND `country_country_translation`.`language_code` = 'ru' ); args=(166, 'ru') +2015-07-28 11:19:34,607 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 165 AND `country_country_translation`.`language_code` = 'ru' ); args=(165, 'ru') +2015-07-28 11:19:34,610 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 161 AND `country_country_translation`.`language_code` = 'ru' ); args=(161, 'ru') +2015-07-28 11:19:34,612 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 170 AND `country_country_translation`.`language_code` = 'ru' ); args=(170, 'ru') +2015-07-28 11:19:34,614 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 187 AND `country_country_translation`.`language_code` = 'ru' ); args=(187, 'ru') +2015-07-28 11:19:34,617 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 167 AND `country_country_translation`.`language_code` = 'ru' ); args=(167, 'ru') +2015-07-28 11:19:34,619 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 177 AND `country_country_translation`.`language_code` = 'ru' ); args=(177, 'ru') +2015-07-28 11:19:34,621 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 184 AND `country_country_translation`.`language_code` = 'ru' ); args=(184, 'ru') +2015-07-28 11:19:34,624 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 176 AND `country_country_translation`.`language_code` = 'ru' ); args=(176, 'ru') +2015-07-28 11:19:34,626 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 180 AND `country_country_translation`.`language_code` = 'ru' ); args=(180, 'ru') +2015-07-28 11:19:34,629 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 182 AND `country_country_translation`.`language_code` = 'ru' ); args=(182, 'ru') +2015-07-28 11:19:34,631 [DEBUG] django.db.backends: (0.000) SELECT `country_country_translation`.`id`, `country_country_translation`.`name`, `country_country_translation`.`description`, `country_country_translation`.`transport`, `country_country_translation`.`rules`, `country_country_translation`.`documents`, `country_country_translation`.`consulate`, `country_country_translation`.`title`, `country_country_translation`.`descriptions`, `country_country_translation`.`keywords`, `country_country_translation`.`language_code`, `country_country_translation`.`master_id` FROM `country_country_translation` WHERE (`country_country_translation`.`master_id` = 183 AND `country_country_translation`.`language_code` = 'ru' ); args=(183, 'ru') +2015-07-28 11:20:01,181 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() +2015-07-28 11:20:01,205 [DEBUG] django.db.backends: (0.001) SHOW TABLES; args=() diff --git a/proj/decorators.py b/proj/decorators.py new file mode 100644 index 00000000..149b9358 --- /dev/null +++ b/proj/decorators.py @@ -0,0 +1,16 @@ +from functools import wraps + +from django.template import RequestContext +from django.shortcuts import render_to_response + + +def render_to(tpl): + def decorator(func): + @wraps(func) + def wrapper(request, *args, **kwargs): + out = func(request, *args, **kwargs) + if isinstance(out, dict): + out = render_to_response(tpl, out, RequestContext(request)) + return out + return wrapper + return decorator \ No newline at end of file diff --git a/templates/admin/accounts/user_change.html b/templates/admin/accounts/user_change.html index 2b31a009..f7b40762 100644 --- a/templates/admin/accounts/user_change.html +++ b/templates/admin/accounts/user_change.html @@ -23,8 +23,20 @@ } }); return false; + }); + $('#gen_pass').click(function(){ + $('#id_new_password').val(generatePassword()); }) - }) + }); + function generatePassword() { + var length = 8, + charset = "abcdefghijklnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789", + retVal = ""; + for (var i = 0, n = charset.length; i < length; ++i) { + retVal += charset.charAt(Math.floor(Math.random() * n)); + } + return retVal; + } ").appendTo("head")})})(window,document,jQuery); \ No newline at end of file diff --git a/templates/client/wizard/first_step.html b/templates/client/wizard/first_step.html new file mode 100644 index 00000000..b71e8518 --- /dev/null +++ b/templates/client/wizard/first_step.html @@ -0,0 +1,218 @@ +{% extends 'client/base_catalog.html' %} + +{% block content_list %} + {{ form.errors }} +
+
+
+ {{ wizard.form.media }} +

Шаг {{ wizard.steps.step1 }}. Основная информация

+
+
{% csrf_token %} + {{ wizard.management_form }} + {# {% if wizard.form.forms %}#} + {# {{ wizard.form.management_form }}#} + {# {% for form in wizard.form.forms %}#} + {# {{ form }}#} + {# {% endfor %}#} + {# {% else %}#} + {% with wizard.form as form %} +
+
+
+ + {{ form.theme }} +
+
+ + {{ form.tag }} +
+
+
+ +

Описание выставки

+ +
+
+ {{ form.name }} +
+
+ +
+
+ {{ form.main_title }} +
+
+ +
+
+ {{ form.description }} +
+
+ +
+ +
+ + +
+
+
+ + {{ form.date_start }} +
+
+ + {{ form.date_end }} +
+
+
+
+ +
+ +
+ +

Локация

+ +
+
+

Место проведения:

+ {{ form.place }} +
+
+ +
+
+

Страна:

+ {{ form.country }} +
+ +
+

Город:

+ {{ form.city }} +
+
+ +
+
+ +
+

Дополнительная информация

+ +
+ + +
+ +
+
+ + + +
+ +
+ {{ form.periodic }} +
+
+ +
+ +
+
+ +
+ + +
+ + + +
+
+
+ +
+
+ {{ form.web_site }} + + {{ form.products }} + +
+ +
+
+ +
+ + +
+
+ {#
#} + {# #} + {#
#} + +
+ + {{ form.time_start }} +
+ +
+ + {{ form.time_end }} +
+ + {# #} +
+ +
+
+ +
+
+ + + +
+
+
+ +
+ +
+ +
+ +
+ + {% endwith %} +
+ +
+
+

Шаг 2. Статистика и условия участия

+
+
+ +
+
+

Шаг 3. Добавление фото

+
+
+ +
+
+ {# {% endif %}#} +{% endblock %} diff --git a/templates/client/wizard/second_step.html b/templates/client/wizard/second_step.html new file mode 100644 index 00000000..5e75559b --- /dev/null +++ b/templates/client/wizard/second_step.html @@ -0,0 +1,310 @@ +{% extends 'client/base_catalog.html' %} + +{% block content_list %} + {{ form.errors }} +
+

Добавить событие

+
+
+ {{ wizard.form.media }} +
+
+

Шаг 1. Основная информация

+ + +
+
+ + + +
+
+

Шаг 2. Статистика и условия участия

+ +
+
+ 0,9 баллов к рейтингу
+
+
+ +
{% csrf_token %} + {{ wizard.management_form }} + {% if wizard.form.forms %} + {{ wizard.form.management_form }} + {% for form in wizard.form.forms %} + {{ form }} + {% endfor %} + {% else %} + {% with wizard.form as form %} +
+ +
+ +
+ + {{ form.found_year }} +
+ +
+
+ +
+ +
+ +
+ + +
+ +
+ {{ form.statistic_year }} +
+ +
+ +
+ {{ form.visitors }} +
+ +
+ {{ form.partisipants }} +
+ +
+ {{ form.square }} + м² +
+
+ +
+
+ +
+ + +
+ +
+
+
+
+ {{ form.countries }} +
+
+
+
+
+ +
+ + + +
+ +
+ +

Стоимость посещения и участия

+ +
+
+ +
+
+ +
Стоимость билетов
+ +
+ +
    + +
  • + {{ form.one_day }} + +
  • + +
  • + {{ form.all_days }} + +
  • + +
+ +
Предварительная регистрация
+ +
+ +
+ +
+ +
    + +
  • + {{ form.pre_one_day }} + +
  • + +
  • + {{ form.pre_all_days }} + +
  • + +
+ +
Регистрация на стойке
+ +
+ +
+ +
+ +
+
+ +
Стоимость аренды 1м²
+ +
    + +
  • + {{ form.equiped }} + +
  • + +
  • + {{ form.unequiped }} + +
  • + +
  • + {{ form.open_square }} + +
  • + +
+ +
+ +
+ + +
+ {{ form.min_square }} + м² +
+
+ +
+ +
+ + +
+ {{ form.registration_depos }} + +
+
+ +
+ +
+ + +
+
+
+ {{ form.deadline_date }} +
+
+
+
+ +
+
+ +
+
+ +
+ +
+ +
+
+ + +
+

более полная информация повышает рейтинг вашего мероприятия и позволяет ранжировать + его выше других

+
+
+ +
+ + {% if wizard.steps.prev %} + + + {% endif %} + + +
+
+ +
+
+
+

Шаг 3. Добавление фото

+ + +
+
+
+{% endwith %} +{% endif %} + +{% endblock %} \ No newline at end of file diff --git a/templates/client/wizard/wizard.html b/templates/client/wizard/wizard.html new file mode 100644 index 00000000..0fc0748c --- /dev/null +++ b/templates/client/wizard/wizard.html @@ -0,0 +1,23 @@ +{% extends 'client/base_catalog.html' %} +{% block content_list %} + {{ wizard.form.media }} +

Step {{ wizard.steps.step1 }} of {{ wizard.steps.count }}

+
{% csrf_token %} + +{{ wizard.management_form }} +{% if wizard.form.forms %} + {{ wizard.form.management_form }} + {% for form in wizard.form.forms %} + {{ form }} + {% endfor %} +{% else %} + {{ wizard.form }} +{% endif %} +
+{% if wizard.steps.prev %} + + +{% endif %} + +
+{% endblock %} \ No newline at end of file diff --git a/templates/done.html b/templates/done.html new file mode 100644 index 00000000..1f404dc1 --- /dev/null +++ b/templates/done.html @@ -0,0 +1 @@ +{{form_data}} \ No newline at end of file diff --git a/templates/registration/acquire_email.html b/templates/registration/acquire_email.html new file mode 100644 index 00000000..17a0c5f0 --- /dev/null +++ b/templates/registration/acquire_email.html @@ -0,0 +1,27 @@ +{% extends "client/base_page.html" %} + +{% block title %}Email confirmation{% endblock %} + +{% block page_body %} + +

Enter your email

+ +{% if form.errors %} +

Please correct the errors below:

+{% endif %} +
{% csrf_token %} +
+
+ + +{# #} +
+
+ +
+ +{% endblock %} + +{% block content-related %} +

Please enter your valid email, to activate account we will send you an email on this e-mail address

+{% endblock %} \ No newline at end of file diff --git a/templates/registration/social_registration_complete.html b/templates/registration/social_registration_complete.html new file mode 100644 index 00000000..755add9b --- /dev/null +++ b/templates/registration/social_registration_complete.html @@ -0,0 +1,8 @@ +{% extends "client/base_page.html" %} + +{% block title %}Registration complete{% endblock %} + +{% block page_body %} +

Check your email

+

An activation link has been sent to the email address you supplied, along with instructions for activating your account.

+{% endblock %} \ No newline at end of file diff --git a/wizard/__init__.py b/wizard/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/wizard/forms.py b/wizard/forms.py new file mode 100644 index 00000000..e60e10ec --- /dev/null +++ b/wizard/forms.py @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- +from django import forms +from theme.models import Theme, Tag +from place_exposition.models import PlaceExposition +from city.models import City +from country.models import Country + +choices = ((0, ''), (1.0, u'Ежегодно'), (2.0, u'2 раза в год'), (3.0, u'3 раза в год'), (4.0, u'4 раза в год'), + (5.0, u'5 раз в год'), (0.5, u'Раз в 2 года'), ( + 0.33, u'Раз в 3 года'), (0.25, u'Раз в 4 года')) + + +class ExpoForm1(forms.Form): + """ + main information about exposition + """ + theme = forms.ModelChoiceField(queryset=Theme.objects.filter(id=50)) + tag = forms.ModelChoiceField(queryset=Tag.objects.filter(id=50)) + name = forms.CharField(max_length=255, widget=forms.TextInput(attrs={'placeholder': "Введите название выставки"})) + main_title = forms.CharField(max_length=255, widget=forms.TextInput(attrs={'placeholder': "Краткое описание выставки (необязательно)"})) + description = forms.CharField(widget=forms.Textarea(attrs={'placeholder': "Полное описание выставки", 'cols':30, 'rows':10})) + date_start = forms.DateField(widget=forms.TextInput(attrs={'class':'data dateFrom', 'placeholder':'дд.мм.гг'})) + date_end = forms.DateField(widget=forms.TextInput(attrs={'class':'data dateTo','placeholder':'дд.мм.гг'})) + country = forms.ModelChoiceField(queryset=Country.objects.filter(id=50)) + city = forms.ModelChoiceField(queryset=City.objects.language('ru').filter(id=900052419)) + place = forms.ModelChoiceField(queryset=PlaceExposition.objects.filter(id=50)) + audience1 = forms.BooleanField(required=False) + audience2 = forms.BooleanField(required=False) + audience3 = forms.BooleanField(required=False) + periodic = forms.ChoiceField(choices=choices) + membership1= forms.BooleanField(required=False) + membership2= forms.BooleanField(required=False) + membership3= forms.BooleanField(required=False) + web_site = forms.URLField(required=False, widget=forms.TextInput(attrs={'placeholder': "Веб-сайт (необязательно)"})) + products = forms.CharField(widget=forms.Textarea(attrs={'placeholder': "Экспонируемые продукты", 'cols':30, 'rows':10})) + time_start = forms.TimeField() + time_end = forms.TimeField() + logo = forms.ImageField(widget=forms.FileInput(attrs={'class':"button big icon-clip"}), required=False) + + +class ExpoForm2(forms.Form): + """ + statistics + """ + found_year = forms.IntegerField() + statistic_year = forms.IntegerField(widget=forms.TextInput(attrs={'placeholder':'введите год'})) + visitors = forms.IntegerField(widget=forms.TextInput(attrs={'placeholder':'количество посетителей'})) + partisipants = forms.IntegerField(widget=forms.TextInput(attrs={'placeholder':'количество учасников'})) + square = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'площадь'})) + countries = forms.ModelChoiceField(queryset=Country.objects.filter(id=50)) + + # ticket price + pre_one_day = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'на один день'})) + pre_all_days = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'на все дни'})) + one_day = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'на один день'})) + all_days = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'на все дни'})) + + # rent price + equiped = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'оборудованная площадь'})) + unequiped = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'необорудованная площадь'})) + open_square = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'открытая площадь'})) + min_square = forms.FloatField() + registration_depos = forms.FloatField() + deadline_date = forms.DateField(widget=forms.TextInput(attrs={'placeholder':'дд.мм.гг'})) + diff --git a/wizard/models.py b/wizard/models.py new file mode 100644 index 00000000..71a83623 --- /dev/null +++ b/wizard/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/wizard/tests.py b/wizard/tests.py new file mode 100644 index 00000000..501deb77 --- /dev/null +++ b/wizard/tests.py @@ -0,0 +1,16 @@ +""" +This file demonstrates writing tests using the unittest module. These will pass +when you run "manage.py test". + +Replace this with more appropriate tests for your application. +""" + +from django.test import TestCase + + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.assertEqual(1 + 1, 2) diff --git a/wizard/urls.py b/wizard/urls.py new file mode 100644 index 00000000..188c3901 --- /dev/null +++ b/wizard/urls.py @@ -0,0 +1,8 @@ +from django.conf.urls import patterns + +from wizard.forms import ExpoForm1, ExpoForm2 +from wizard.views import ExpoWizard + +urlpatterns = patterns('', + (r'^$', ExpoWizard.as_view([ExpoForm1, ExpoForm2])) +) \ No newline at end of file diff --git a/wizard/views.py b/wizard/views.py new file mode 100644 index 00000000..30a3ad5a --- /dev/null +++ b/wizard/views.py @@ -0,0 +1,89 @@ +from django.shortcuts import render_to_response +from django.contrib.formtools.wizard.views import SessionWizardView +from django.core.files.storage import default_storage, FileSystemStorage +import os +from proj import settings +from wizard import forms +from exposition.models import Exposition, Statistic +from functions.form_check import translit_with_separator + + +# defining different template for every form +TEMPLATES = {'0':'client/wizard/first_step.html', '1':'client/wizard/second_step.html'} + + + +class ExpoWizard(SessionWizardView): + location=os.path.join(settings.MEDIA_ROOT, 'temp', 'files') + file_storage = FileSystemStorage(location, settings.MEDIA_URL) + + def done(self, form_list, **kwargs): + upload_file = form_list[0].cleaned_data['logo'] + data = self.get_all_cleaned_data() + expo = Exposition.objects.language('ru').create( + name = data.get('name'), + data_begin = data.get('date_start'), + data_end = data.get('date_end'), + main_title = data.get('main_title'), + description = data.get('description'), + products = data.get('products'), + country = data.get('country', 1), + city = data.get('city', 1), + place = data.get('place', 1), + periodic = data.get('periodic'), + web_page = data.get('web_site'), + logo = data.get('logo'), + + foundation_year = data.get('found_year'), + area = data.get('square'), + price_day = '%i %s'%(data.get('one_day'), self.request.POST['oneDayCurrency1']), + price_all = '%i %s'%(data.get('all_days'), self.request.POST['allDaysCurrency1']), + price_day_bar = '%i %s'%(data.get('pre_one_day'),self.request.POST['oneDayCurrency1']), + price_all_bar = '%i %s'%(data.get('pre_all_days'),self.request.POST['allDaysCurrency1']), + + min_area = data.get('min_square'), + registration_payment = data.get('registration_depos'), + application_deadline = data.get('deadline_date'), + min_closed_area = data.get('unequiped'), + min_open_area = data.get('open_square'), + min_closed_equipped_area = data.get('equiped'), + url = translit_with_separator(data.get('name')), + quality_label= 0, + audience = 0 + ) + expo.tag = [data.get('tag')] + expo.theme = [data.get('theme')] + if data['membership1']: + expo.quality_label = (expo.quality_label| Exposition.quality_label.exporating) + if data['membership2']: + expo.quality_label = (expo.quality_label| Exposition.quality_label.rsva) + if data['membership3']: + expo.quality_label = (expo.quality_label| Exposition.quality_label.ufi) + + if data['audience1']: + expo.audience = (expo.audience | Exposition.audience.experts) + if data['audience2']: + expo.audience = expo.audience | getattr(Exposition.audience, 'experts and consumers') + if data['audience3']: + expo.audience = expo.audience | (getattr(Exposition.audience, 'general public')) + + expo.save() + + Statistic.objects.language().create( + exposition = expo, + year = data.get('statistic_year'), + visitors = data.get('visitors'), + members = data.get('partisipants'), + countries = data.get('countries'), + area = data.get('square') + ) + + if upload_file: + self.file_storage.delete(upload_file.name) + return render_to_response('done.html', { + 'form_data': [form.cleaned_data for form in form_list], + }) + + def get_template_names(self): + return [TEMPLATES[self.steps.current]] + From 726bfde90158a43f680e0948b6b194505537bbbb Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Thu, 27 Aug 2015 17:42:21 +0300 Subject: [PATCH 02/45] Added file upload application --- accounts/admin.py | 2 +- fileupload/__init__.py | 0 fileupload/admin.py | 4 + fileupload/models.py | 29 + fileupload/response.py | 38 + fileupload/serialize.py | 38 + fileupload/templatetags/__init__.py | 0 fileupload/templatetags/upload_tags.py | 82 + fileupload/tests.py | 16 + fileupload/urls.py | 17 + fileupload/views.py | 62 + proj/settings.py | 3 +- proj/urls.py | 2 + registration/backends/default/views.py | 11 + .../file_upload/css/blueimp-gallery.min.css | 1 + static/file_upload/css/demo-ie8.css | 21 + static/file_upload/css/demo.css | 67 + .../css/jquery.fileupload-ui-noscript.css | 27 + .../file_upload/css/jquery.fileupload-ui.css | 68 + static/file_upload/css/style.css | 19 + static/file_upload/img/loading.gif | Bin 0 -> 3897 bytes static/file_upload/img/progressbar.gif | Bin 0 -> 3323 bytes static/file_upload/js/app.js | 106 ++ static/file_upload/js/bootstrap.min.js | 6 + static/file_upload/js/canvas-to-blob.min.js | 1 + .../js/cors/jquery.postmessage-transport.js | 118 ++ .../js/cors/jquery.xdr-transport.js | 87 ++ static/file_upload/js/csrf.js | 22 + .../js/jquery.blueimp-gallery.min.js | 1 + static/file_upload/js/jquery.cookie.js | 90 ++ .../js/jquery.fileupload-angular.js | 402 +++++ .../file_upload/js/jquery.fileupload-audio.js | 106 ++ .../file_upload/js/jquery.fileupload-image.js | 292 ++++ .../js/jquery.fileupload-jquery-ui.js | 138 ++ .../js/jquery.fileupload-process.js | 164 ++ static/file_upload/js/jquery.fileupload-ui.js | 643 ++++++++ .../js/jquery.fileupload-validate.js | 117 ++ .../file_upload/js/jquery.fileupload-video.js | 106 ++ static/file_upload/js/jquery.fileupload.js | 1336 +++++++++++++++++ .../file_upload/js/jquery.iframe-transport.js | 205 +++ static/file_upload/js/jquery.ui.widget.js | 282 ++++ static/file_upload/js/load-image.min.js | 1 + static/file_upload/js/locale.js | 29 + static/file_upload/js/main.js | 77 + static/file_upload/js/tmpl.min.js | 1 + .../file_upload/js/vendor/jquery.ui.widget.js | 530 +++++++ templates/client/base_catalog.html | 2 +- .../fileupload/picture_angular_form.html | 207 +++ .../fileupload/picture_basic_form.html | 130 ++ .../fileupload/picture_basicplus_form.html | 221 +++ .../fileupload/fileupload/picture_form.html | 102 ++ .../fileupload/picture_jquery_form.html | 255 ++++ templates/client/fileupload/upload_base.html | 52 + wizard/urls.py | 5 +- 54 files changed, 6336 insertions(+), 5 deletions(-) create mode 100644 fileupload/__init__.py create mode 100644 fileupload/admin.py create mode 100644 fileupload/models.py create mode 100644 fileupload/response.py create mode 100644 fileupload/serialize.py create mode 100644 fileupload/templatetags/__init__.py create mode 100644 fileupload/templatetags/upload_tags.py create mode 100644 fileupload/tests.py create mode 100644 fileupload/urls.py create mode 100644 fileupload/views.py create mode 100644 static/file_upload/css/blueimp-gallery.min.css create mode 100644 static/file_upload/css/demo-ie8.css create mode 100644 static/file_upload/css/demo.css create mode 100644 static/file_upload/css/jquery.fileupload-ui-noscript.css create mode 100644 static/file_upload/css/jquery.fileupload-ui.css create mode 100644 static/file_upload/css/style.css create mode 100644 static/file_upload/img/loading.gif create mode 100644 static/file_upload/img/progressbar.gif create mode 100644 static/file_upload/js/app.js create mode 100644 static/file_upload/js/bootstrap.min.js create mode 100644 static/file_upload/js/canvas-to-blob.min.js create mode 100644 static/file_upload/js/cors/jquery.postmessage-transport.js create mode 100644 static/file_upload/js/cors/jquery.xdr-transport.js create mode 100644 static/file_upload/js/csrf.js create mode 100644 static/file_upload/js/jquery.blueimp-gallery.min.js create mode 100644 static/file_upload/js/jquery.cookie.js create mode 100644 static/file_upload/js/jquery.fileupload-angular.js create mode 100644 static/file_upload/js/jquery.fileupload-audio.js create mode 100644 static/file_upload/js/jquery.fileupload-image.js create mode 100644 static/file_upload/js/jquery.fileupload-jquery-ui.js create mode 100644 static/file_upload/js/jquery.fileupload-process.js create mode 100644 static/file_upload/js/jquery.fileupload-ui.js create mode 100644 static/file_upload/js/jquery.fileupload-validate.js create mode 100644 static/file_upload/js/jquery.fileupload-video.js create mode 100644 static/file_upload/js/jquery.fileupload.js create mode 100644 static/file_upload/js/jquery.iframe-transport.js create mode 100644 static/file_upload/js/jquery.ui.widget.js create mode 100644 static/file_upload/js/load-image.min.js create mode 100644 static/file_upload/js/locale.js create mode 100644 static/file_upload/js/main.js create mode 100644 static/file_upload/js/tmpl.min.js create mode 100644 static/file_upload/js/vendor/jquery.ui.widget.js create mode 100644 templates/client/fileupload/fileupload/picture_angular_form.html create mode 100644 templates/client/fileupload/fileupload/picture_basic_form.html create mode 100644 templates/client/fileupload/fileupload/picture_basicplus_form.html create mode 100644 templates/client/fileupload/fileupload/picture_form.html create mode 100644 templates/client/fileupload/fileupload/picture_jquery_form.html create mode 100644 templates/client/fileupload/upload_base.html diff --git a/accounts/admin.py b/accounts/admin.py index ec8b1047..81eac80e 100644 --- a/accounts/admin.py +++ b/accounts/admin.py @@ -41,7 +41,7 @@ def user_change(request, url): # try get user by url if doesnt work by id if user is None: user = User.objects.safe_get(url=url) - #redirect to list of all users if cannot find user + # redirect to list of all users if cannot find user if user is None: return HttpResponseRedirect('/admin/accounts/all') diff --git a/fileupload/__init__.py b/fileupload/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/fileupload/admin.py b/fileupload/admin.py new file mode 100644 index 00000000..faa5cdc2 --- /dev/null +++ b/fileupload/admin.py @@ -0,0 +1,4 @@ +from fileupload.models import Picture +from django.contrib import admin + +admin.site.register(Picture) \ No newline at end of file diff --git a/fileupload/models.py b/fileupload/models.py new file mode 100644 index 00000000..1150bf0d --- /dev/null +++ b/fileupload/models.py @@ -0,0 +1,29 @@ +# encoding: utf-8 +from django.db import models + + +class Picture(models.Model): + """This is a small demo using just two fields. The slug field is really not + necessary, but makes the code simpler. ImageField depends on PIL or + pillow (where Pillow is easily installable in a virtualenv. If you have + problems installing pillow, use a more generic FileField instead. + + """ + file = models.ImageField(upload_to="wizard_pictures") + slug = models.SlugField(max_length=50, blank=True) + + def __unicode__(self): + return self.file.name + + @models.permalink + def get_absolute_url(self): + return ('upload-new', ) + + def save(self, *args, **kwargs): + self.slug = self.file.name + super(Picture, self).save(*args, **kwargs) + + def delete(self, *args, **kwargs): + """delete -- Remove to leave file.""" + self.file.delete(False) + super(Picture, self).delete(*args, **kwargs) diff --git a/fileupload/response.py b/fileupload/response.py new file mode 100644 index 00000000..334eb29e --- /dev/null +++ b/fileupload/response.py @@ -0,0 +1,38 @@ +# encoding: utf-8 +from django.http import HttpResponse +import json + +MIMEANY = '*/*' +MIMEJSON = 'application/json' +MIMETEXT = 'text/plain' + + +def response_mimetype(request): + """response_mimetype -- Return a proper response mimetype, accordingly to + what the client accepts, as available in the `HTTP_ACCEPT` header. + + request -- a HttpRequest instance. + + """ + can_json = MIMEJSON in request.META['HTTP_ACCEPT'] + can_json |= MIMEANY in request.META['HTTP_ACCEPT'] + return MIMEJSON if can_json else MIMETEXT + + +class JSONResponse(HttpResponse): + """JSONResponse -- Extends HTTPResponse to handle JSON format response. + + This response can be used in any view that should return a json stream of + data. + + Usage: + + def a_iew(request): + content = {'key': 'value'} + return JSONResponse(content, mimetype=response_mimetype(request)) + + """ + def __init__(self, obj='', json_opts=None, mimetype=MIMEJSON, *args, **kwargs): + json_opts = json_opts if isinstance(json_opts, dict) else {} + content = json.dumps(obj, **json_opts) + super(JSONResponse, self).__init__(content, mimetype, *args, **kwargs) diff --git a/fileupload/serialize.py b/fileupload/serialize.py new file mode 100644 index 00000000..4494e79f --- /dev/null +++ b/fileupload/serialize.py @@ -0,0 +1,38 @@ +# encoding: utf-8 +import mimetypes +import re +from django.core.urlresolvers import reverse + + +def order_name(name): + """order_name -- Limit a text to 20 chars length, if necessary strips the + middle of the text and substitute it for an ellipsis. + + name -- text to be limited. + + """ + name = re.sub(r'^.*/', '', name) + if len(name) <= 20: + return name + return name[:10] + "..." + name[-7:] + + +def serialize(instance, file_attr='file'): + """serialize -- Serialize a Picture instance into a dict. + + instance -- Picture instance + file_attr -- attribute name that contains the FileField or ImageField + + """ + obj = getattr(instance, file_attr) + return { + 'url': obj.url, + 'name': order_name(obj.name), + 'type': mimetypes.guess_type(obj.path)[0] or 'image/png', + 'thumbnailUrl': obj.url, + 'size': obj.size, + 'deleteUrl': reverse('upload-delete', args=[instance.pk]), + 'deleteType': 'DELETE', + } + + diff --git a/fileupload/templatetags/__init__.py b/fileupload/templatetags/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/fileupload/templatetags/upload_tags.py b/fileupload/templatetags/upload_tags.py new file mode 100644 index 00000000..d492e0ba --- /dev/null +++ b/fileupload/templatetags/upload_tags.py @@ -0,0 +1,82 @@ +from django import template + +register = template.Library() + +@register.simple_tag +def upload_js(): + return """ + + + + +""" + + + + + + diff --git a/fileupload/tests.py b/fileupload/tests.py new file mode 100644 index 00000000..501deb77 --- /dev/null +++ b/fileupload/tests.py @@ -0,0 +1,16 @@ +""" +This file demonstrates writing tests using the unittest module. These will pass +when you run "manage.py test". + +Replace this with more appropriate tests for your application. +""" + +from django.test import TestCase + + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.assertEqual(1 + 1, 2) diff --git a/fileupload/urls.py b/fileupload/urls.py new file mode 100644 index 00000000..27dbdd1e --- /dev/null +++ b/fileupload/urls.py @@ -0,0 +1,17 @@ +# encoding: utf-8 +from django.conf.urls import patterns, url +from fileupload.views import ( + BasicVersionCreateView, BasicPlusVersionCreateView, + jQueryVersionCreateView, AngularVersionCreateView, + PictureCreateView, PictureDeleteView, PictureListView, + ) + +urlpatterns = patterns('', + # url(r'^basic/$', BasicVersionCreateView.as_view(), name='upload-basic'), + # url(r'^basic/plus/$', BasicPlusVersionCreateView.as_view(), name='upload-basic-plus'), + url(r'^new/$', PictureCreateView.as_view(), name='upload-new'), + # url(r'^angular/$', AngularVersionCreateView.as_view(), name='upload-angular'), + # url(r'^jquery-ui/$', jQueryVersionCreateView.as_view(), name='upload-jquery'), + url(r'^delete/(?P\d+)$', PictureDeleteView.as_view(), name='upload-delete'), + url(r'^view/$', PictureListView.as_view(), name='upload-view'), +) diff --git a/fileupload/views.py b/fileupload/views.py new file mode 100644 index 00000000..360c1933 --- /dev/null +++ b/fileupload/views.py @@ -0,0 +1,62 @@ +# encoding: utf-8 +import json + +from django.http import HttpResponse +from django.views.generic import CreateView, DeleteView, ListView +from .models import Picture +from .response import JSONResponse, response_mimetype +from .serialize import serialize + + +class PictureCreateView(CreateView): + model = Picture + fields = "__all__" + template_name = 'client/fileupload/fileupload/picture_form.html' + + def form_valid(self, form): + self.object = form.save() + files = [serialize(self.object)] + data = {'files': files} + response = JSONResponse(data, mimetype=response_mimetype(self.request)) + response['Content-Disposition'] = 'inline; filename=files.json' + return response + + def form_invalid(self, form): + data = json.dumps(form.errors) + return HttpResponse(content=data, status=400, content_type='application/json') + +class BasicVersionCreateView(PictureCreateView): + template_name = 'client/fileupload/fileupload/picture_basic_form.html' + + +class BasicPlusVersionCreateView(PictureCreateView): + template_name = 'client/fileupload/fileupload/picture_basicplus_form.html' + +class AngularVersionCreateView(PictureCreateView): + template_name = 'client/fileupload/fileupload/picture_angular_form.html' + + +class jQueryVersionCreateView(PictureCreateView): + template_name = 'client/fileupload/fileupload/picture_jquery_form.html' + + +class PictureDeleteView(DeleteView): + model = Picture + + def delete(self, request, *args, **kwargs): + self.object = self.get_object() + self.object.delete() + response = JSONResponse(True, mimetype=response_mimetype(request)) + response['Content-Disposition'] = 'inline; filename=files.json' + return response + + +class PictureListView(ListView): + model = Picture + + def render_to_response(self, context, **response_kwargs): + files = [ serialize(p) for p in self.get_queryset() ] + data = {'files': files} + response = JSONResponse(data, mimetype=response_mimetype(self.request)) + response['Content-Disposition'] = 'inline; filename=files.json' + return response diff --git a/proj/settings.py b/proj/settings.py index 1268efa5..fff456c2 100644 --- a/proj/settings.py +++ b/proj/settings.py @@ -315,7 +315,8 @@ INSTALLED_APPS = ( 'pymorphy', # ?? 'password_reset', # reset password 'django_crontab', # crons - 'social.apps.django_app.default', # social auth + 'social.apps.django_app.default', # social auth, + 'fileupload', ) diff --git a/proj/urls.py b/proj/urls.py index c73029c6..f0f15a91 100644 --- a/proj/urls.py +++ b/proj/urls.py @@ -29,6 +29,8 @@ sitemaps = { handler404 = 'proj.views.error404' urlpatterns = patterns('', + url(r'^wizard/', include('wizard.urls')), + url(r'^acquire_email/$', 'registration.backends.default.views.acquire_email', name = 'acquire_email'), url(r'^rss/', include('core.urls')), #url(r'^__debug__/', include(debug_toolbar.urls)), url(r'^sitemap-(?P
.+)\.xml$', views.sitemap, {'sitemaps': sitemaps}), diff --git a/registration/backends/default/views.py b/registration/backends/default/views.py index b1edd557..29721193 100644 --- a/registration/backends/default/views.py +++ b/registration/backends/default/views.py @@ -249,6 +249,9 @@ def LoginView(request): HttpResponseRedirect('/') from accounts.forms import RegistrationCompleteForm, RecoveryForm +from django.shortcuts import render + + def complete_registration(request): if request.is_ajax(): response = {'success': False} @@ -264,6 +267,14 @@ def complete_registration(request): else: return HttpResponse('not ajax') +def acquire_email(request, template_name="registration/acquire_email.html"): + """ + Request email for the create user flow for logins that don't specify their email address. + """ + backend = request.session['partial_pipeline']['backend'] + return render(request, template_name, {"backend": backend}) + + def pswd_recovery(request): #if request.is_ajax(): response = {'success': False} diff --git a/static/file_upload/css/blueimp-gallery.min.css b/static/file_upload/css/blueimp-gallery.min.css new file mode 100644 index 00000000..7cfad0c4 --- /dev/null +++ b/static/file_upload/css/blueimp-gallery.min.css @@ -0,0 +1 @@ +@charset 'UTF-8';.blueimp-gallery,.blueimp-gallery>.slides>.slide>.slide-content{position:absolute;top:0;right:0;bottom:0;left:0;-moz-backface-visibility:hidden}.blueimp-gallery>.slides>.slide>.slide-content{margin:auto;max-width:100%;max-height:100%;opacity:1}.blueimp-gallery{position:fixed;z-index:9999;overflow:hidden;background:#000;background:rgba(0,0,0,0.9);opacity:0;visibility:hidden;display:none;direction:ltr;-ms-touch-action:none}.blueimp-gallery-carousel{position:relative;z-index:auto;height:432px;max-width:768px;margin:1em auto;box-shadow:0 0 10px #000}.blueimp-gallery-display{display:block;visibility:visible;opacity:1}.blueimp-gallery>.slides{position:relative;height:100%;overflow:hidden}.blueimp-gallery>.slides>.slide{position:relative;float:left;height:100%;text-align:center;-webkit-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);-moz-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);-ms-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);-o-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);transition-timing-function:cubic-bezier(0.645,0.045,0.355,1)}.blueimp-gallery,.blueimp-gallery>.slides>.slide>.slide-content{-webkit-transition:opacity .5s linear;-moz-transition:opacity .5s linear;-ms-transition:opacity .5s linear;-o-transition:opacity .5s linear;transition:opacity .5s linear}.blueimp-gallery>.slides>.slide-loading{background:url(../img/loading.gif) center no-repeat;background-size:64px 64px}.blueimp-gallery>.slides>.slide-loading>.slide-content{opacity:0}.blueimp-gallery>.slides>.slide-error{background:url(../img/error.png) center no-repeat}.blueimp-gallery>.slides>.slide-error>.slide-content{display:none}.blueimp-gallery>.prev,.blueimp-gallery>.next{position:absolute;top:50%;left:15px;width:40px;height:40px;margin-top:-23px;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-decoration:none;text-shadow:0 0 2px #000;text-align:center;background:#222;background:rgba(0,0,0,0.5);-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;cursor:pointer;display:none}.blueimp-gallery>.next{left:auto;right:15px}.blueimp-gallery>.close,.blueimp-gallery>.title{position:absolute;top:15px;left:15px;margin:0 40px 0 0;font-size:20px;line-height:30px;color:#fff;text-shadow:0 0 2px #000;opacity:.8;display:none}.blueimp-gallery>.close{padding:15px;right:15px;left:auto;margin:-15px;font-size:30px;text-decoration:none;cursor:pointer}.blueimp-gallery>.play-pause{position:absolute;right:15px;bottom:15px;width:15px;height:15px;background:url(../img/play-pause.png) 0 0 no-repeat;cursor:pointer;opacity:.5;display:none}.blueimp-gallery-playing>.play-pause{background-position:-15px 0}.blueimp-gallery-controls>.prev,.blueimp-gallery-controls>.next,.blueimp-gallery-controls>.close,.blueimp-gallery-controls>.title,.blueimp-gallery-controls>.play-pause{display:block;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.blueimp-gallery-single>.prev,.blueimp-gallery-left>.prev,.blueimp-gallery-single>.next,.blueimp-gallery-right>.next,.blueimp-gallery-single>.play-pause{display:none}.blueimp-gallery>.slides>.slide>.slide-content,.blueimp-gallery>.prev,.blueimp-gallery>.next,.blueimp-gallery>.close,.blueimp-gallery>.play-pause{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}body:last-child .blueimp-gallery>.slides>.slide-error{background-image:url(../img/error.svg)}body:last-child .blueimp-gallery>.play-pause{width:20px;height:20px;background-size:40px 20px;background-image:url(../img/play-pause.svg)}body:last-child .blueimp-gallery-playing>.play-pause{background-position:-20px 0}@media(max-width:767px){.blueimp-gallery-carousel{height:270px;max-width:480px}}*+html .blueimp-gallery>.slides>.slide{min-height:300px}*+html .blueimp-gallery>.slides>.slide>.slide-content{position:relative}.blueimp-gallery>.indicator{position:absolute;top:auto;right:15px;bottom:15px;left:15px;margin:0 40px;padding:0;list-style:none;text-align:center;line-height:10px;display:none}.blueimp-gallery>.indicator>li{display:inline-block;width:9px;height:9px;margin:6px 3px 0 3px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;border:1px solid transparent;background:#ccc;background:rgba(255,255,255,0.25) center no-repeat;border-radius:5px;box-shadow:0 0 2px #000;opacity:.5;cursor:pointer}.blueimp-gallery>.indicator>.active{background-color:#fff;border-color:#fff;opacity:.8}.blueimp-gallery-controls>.indicator{display:block;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.blueimp-gallery-single>.indicator{display:none}.blueimp-gallery>.indicator{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}*+html .blueimp-gallery>.indicator>li{display:inline}.blueimp-gallery>.slides>.slide>.video-content>video,.blueimp-gallery>.slides>.slide>.video-content>img{position:absolute;top:0;right:0;bottom:0;left:0;-moz-backface-visibility:hidden}.blueimp-gallery>.slides>.slide>.video-content>video,.blueimp-gallery>.slides>.slide>.video-content>img{margin:auto;max-width:100%;max-height:100%;opacity:1}.blueimp-gallery>.slides>.slide>.video-content>a{position:absolute;top:50%;right:0;left:0;margin:-64px auto 0;width:128px;height:128px;background:url(../img/video-play.png) center no-repeat;opacity:.8;cursor:pointer}.blueimp-gallery>.slides>.slide>.video-playing>a,.blueimp-gallery>.slides>.slide>.video-playing>img{display:none}.blueimp-gallery>.slides>.slide>.video-content>video{display:none}.blueimp-gallery>.slides>.slide>.video-playing>video{display:block}.blueimp-gallery>.slides>.slide>.video-loading>a{background:url(../img/loading.gif) center no-repeat;background-size:64px 64px}body:last-child .blueimp-gallery>.slides>.slide>.video-content>a{background-image:url(../img/video-play.svg)}*+html .blueimp-gallery>.slides>.slide>.video-content{height:100%}*+html .blueimp-gallery>.slides>.slide>.video-content>a{left:50%;margin-left:-64px} \ No newline at end of file diff --git a/static/file_upload/css/demo-ie8.css b/static/file_upload/css/demo-ie8.css new file mode 100644 index 00000000..262493d0 --- /dev/null +++ b/static/file_upload/css/demo-ie8.css @@ -0,0 +1,21 @@ +@charset "UTF-8"; +/* + * jQuery File Upload Demo CSS Fixes for IE<9 1.0.0 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +.navigation { + list-style: none; + padding: 0; + margin: 1em 0; +} +.navigation li { + display: inline; + margin-right: 10px; +} diff --git a/static/file_upload/css/demo.css b/static/file_upload/css/demo.css new file mode 100644 index 00000000..841f80d1 --- /dev/null +++ b/static/file_upload/css/demo.css @@ -0,0 +1,67 @@ +@charset "UTF-8"; +/* + * jQuery File Upload Demo CSS 1.0.2 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +body { + max-width: 750px; + margin: 0 auto; + padding: 1em; + font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; + font-size: 1em; + line-height: 1.4em; + background: #222; + color: #fff; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} +a { + color: orange; + text-decoration: none; +} +img { + border: 0; + vertical-align: middle; +} +h1 { + line-height: 1em; +} +blockquote { + padding: 0 0 0 15px; + margin: 0 0 20px; + border-left: 5px solid #eee; +} +table { + width: 100%; + margin: 10px 0; +} + +.fileupload-progress { + margin: 10px 0; +} +.fileupload-progress .progress-extended { + margin-top: 5px; +} +.error { + color: red; +} + +@media (min-width: 481px) { + .navigation { + list-style: none; + padding: 0; + } + .navigation li { + display: inline-block; + } + .navigation li:not(:first-child):before { + content: '| '; + } +} diff --git a/static/file_upload/css/jquery.fileupload-ui-noscript.css b/static/file_upload/css/jquery.fileupload-ui-noscript.css new file mode 100644 index 00000000..c4504855 --- /dev/null +++ b/static/file_upload/css/jquery.fileupload-ui-noscript.css @@ -0,0 +1,27 @@ +@charset "UTF-8"; +/* + * jQuery File Upload UI Plugin NoScript CSS 1.0 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2012, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +.fileinput-button input { + position: static; + opacity: 1; + filter: none; + transform: none; + font-size: inherit; + direction: inherit; +} + +.fileinput-button span, +.fileinput-button i, +.fileupload-buttonbar .delete, +.fileupload-buttonbar .toggle { + display: none; +} diff --git a/static/file_upload/css/jquery.fileupload-ui.css b/static/file_upload/css/jquery.fileupload-ui.css new file mode 100644 index 00000000..f81b34c7 --- /dev/null +++ b/static/file_upload/css/jquery.fileupload-ui.css @@ -0,0 +1,68 @@ +@charset "UTF-8"; +/* + * jQuery File Upload UI Plugin CSS 8.8.1 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2010, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +.fileinput-button { + position: relative; + overflow: hidden; +} +.fileinput-button input { + position: absolute; + top: 0; + right: 0; + margin: 0; + opacity: 0; + filter: alpha(opacity=0); + transform: translate(-300px, 0) scale(4); + font-size: 23px; + direction: ltr; + cursor: pointer; +} +.fileupload-buttonbar .btn, +.fileupload-buttonbar .toggle { + margin-bottom: 5px; +} +.progress-animated .progress-bar, +.progress-animated .bar { + background: url(../img/progressbar.gif) !important; + filter: none; +} +.fileupload-loading { + float: right; + width: 32px; + height: 32px; + background: url(../img/loading.gif) center no-repeat; + background-size: contain; + display: none; +} +.fileupload-processing .fileupload-loading { + display: block; +} +.files audio, +.files video { + max-width: 300px; +} + +@media (max-width: 767px) { + .fileupload-buttonbar .toggle, + .files .toggle, + .files .btn span { + display: none; + } + .files .name { + width: 80px; + word-wrap: break-word; + } + .files audio, + .files video { + max-width: 80px; + } +} diff --git a/static/file_upload/css/style.css b/static/file_upload/css/style.css new file mode 100644 index 00000000..6f1a7f2d --- /dev/null +++ b/static/file_upload/css/style.css @@ -0,0 +1,19 @@ +@charset "UTF-8"; +/* + * jQuery File Upload Plugin CSS Example 8.8.2 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +body { + padding-top: 60px; +} + +.preview img { + max-height:50px; +} \ No newline at end of file diff --git a/static/file_upload/img/loading.gif b/static/file_upload/img/loading.gif new file mode 100644 index 0000000000000000000000000000000000000000..90f28cbdbb390b095e0d619cbe8d91208798e58f GIT binary patch literal 3897 zcmZvfcR1T?8^ABwb_x$y{p1+>Yb$`dLr?0DW)y5y-57+?!PEJmyrlv?FQgU)K z^$+m(2RfoVbqYWS0G%+J=-j=drD>|8AS+KxL%o*)0)PM?>H*Mx2iHt~mnWZ=N>W+t zB|S>mk9=ZpYXc!T7UZI&`(-T$A=k$fH%{0DUBGwg!#nk?dE^E3gDApBHVTIQQFjd% z@8i*q&q?bJ^`q%$4G<}clybdVd-s{xsx+KupPg;W4bOvd7w*pJ;3oEg_PFlG;yL8+oShz**1=iDRZ*E(Q<#5R=A*XP5H_Y=1xJoCem%-&eKb6zV0ff z>legqW&{=3KP~Y8@#^3-+sNyevrSganP&X1J3*?KZrnP&@8z-DF>$5H-D+bme&k}k z=b(j;=N4)0R8Q6PZLj2pkrz)`V_M!E?dlE7mCX3opU@wz96Zurx4FmWL37=7TCuG9 z`GkMU?-=3W2u(X1pJ+1-D8$#M3IyxB%pDQB;2(M(eo?G5D~tz~6dTT3ItGfkWI&$< z&#Xo;(n_Kq+TlC@hpWm<{qK@(J8G++We#hbNi^se<6nV2;T4 zNDqriR!3dHvF711Txh1!vT{};LzV^uLH;6l)wR@$;KDJa`VOrZ+ccMJt-r043s&2t^bewdCj@xurE^v)WL95dQ z!~&h-7Yqg)+cJl7{=U2?_+E7^{JVv*AQbVh@R_RBt12dDs-#^ZEg=TA;LKR69HAv*?v1IO*LrVkl0@jm)`Yw>Ei;Cb<`Ge=JHj9g^C7+M?`w@g>lBl#q%UG z`}!%t5@M1z}?nB z*Tj60Y$FR82XGHd41y*mrUDeYh38hddS#Y*SGE@ZP#F{1I^fy8Y9@AY`0m};Z?t1t zvl@XaOzm2oTG^`5GXjVpu-2S*n4*kB%YDv4k&aM?8%y+(ZsV3)1mZz23da;)wH@7&`|Ado=<=+Ih>-Zw;?kA^kOQDkl*L3<;+? z<|M0rPu_-Pn1S;!V&9?Lji{M@0Mr#T9>Bk`lq`z3P)1&h>Ho;*au|vDvsVjp-qT0e z*UUfQ?Gpz$g9n2bA}a7zWNb7tHVzcwml}2{C{dOsk47z6B0pahT~Ju4TqIILBp68& zNmxrkQf(GrV^cF{Yg;>8XC;}Vr=*X4p!6N-twSOZPz$&PLr@%}eIZ zD~Lt1l{LgdQhk+JLo-cX3#q!jvb?Lbps#;m@ZHexhyq{?ko#d0H90e$K08CzSlrS) zWo6dl)B48d)b`HU-u~MD$9uai7`L)G>3*T{10aZCYqqL(n*#FQw0j@zj_M(+#c zyVt!MW{V+4vZ?)+0bac?NfTw2K79`dH+R{6nT57bfL{LIoi7Ag$(vz$+eju9d$7B zJG&Z{dzkyk1G(>p`qfHW#%#yxr>AUYK0KOvygWa*I`naEY4hR2MjvI{YUR`Z@fYi( z@9Pv+(V>39D#Fg`k5 zAvd8jHQhWpvV^33oSVP7D7mS*y)&b|zlvB`kzM|}?rCIuU=S7LEHVa$xY zK7bdtLDWL^SFw^20+{?ObjZr9KUx(0o0SBj_xZyoID`D^`r^?VSAjk}{spA|BzpP` z*n{4_ZGkmTM)r5(MRv|pCYSwXX2mHCy0;?C3wFJlI=Ud1imCcH_f;o6U;m-fmBwF| zxeaFV_F$)h(s28}mNsGy`ZELug@>6%MYAH2>|xIMd-hlX4DyCpx2_fIxR&9HR| zOo=QmRf1OdI|P;~oA(JKyL+Po2Z!q-^EdYxV{T>gIls8gp+tex@r9h|)?()zIoc!` z<-T`fILv04Ax z`;g5e;{OrXwNr!u98>p5O4V$kGW+Q$xy7wyq-@a{rvp{O^`YL+YM=2l%U^u_1752E zp+H?P>LBTO+=z(KcG8T2As`wFiAndgQX_?Fb7*g8g`&_orui5i9PU;=s2FX6FR#co zE~~Dn%@VI68P?So8?|?o7*sXav^B}J^pd-Y`tL^zz~d9Gy3^POy}9|$k4r+sE2(Oq zblxd%Y40fR?Z;>w9%bM7>MRCe0$W>a1Ua)1%pg!3Ef2a&@`nE+@wdq?gKL=1$&mG5 zc=xRumn_dNMN(4+^D|}e-AyHhgXp*ONwPc4Gw0}8JwtWo>9B=>)bspG45{b5-#-%j z#bmSnf0`_jYO*x%*xv*H2=qB?SKiue@ymKb_UgCALL`qak+Q!sG{OTY*|7f zF|)MHlBhu2NPE6kwyB8|f2F;hBma7LM{kKLHEAkujx^eiH``22TTe~S&x|jOJYJkz zURwXOva!82K-vG?eb}>euy=GkG2A=!`dKFQr>UIzv90~@YW71c)Ya_7S_1LJKEn=2 za9pc*k?HqfnAE_>s??ukJY)v<(7$cFuo!w*RiJ0d-5_)cb6+|EH)TS4n7hww64>2( zX`J7xEP2C2?VS3M{VJ)C5ViP4(Z`>SCWHnQ7<3K_6^4f~Mj(aUsSP$sAU+{HDVa|% zjWr{KUyB;EnHVu#ZXuo!TYQ1qV?~J(RTVWMwIb943uEgYoSL4Q{n!XxSX^4BEKja{T3;I9*k1pzv%fm_`3SgoyubBr<2{X$I3cSkh@M@_ zva>k51!i{|%nxvFY7J+Rb3l)ox#Z|V1(l_kR#-t@$lq>-DPeX*yA#-ro8yw)#5xk? z+50S$Vwd${7o-V=V1Vdg4meiIid>Ez$~Vn1NH?g!jTGE3bC@Dm6pR*Gx184p0Mz~i D^>?LD literal 0 HcmV?d00001 diff --git a/static/file_upload/img/progressbar.gif b/static/file_upload/img/progressbar.gif new file mode 100644 index 0000000000000000000000000000000000000000..fbcce6bc9abfcc7893e65ef20b3e77ee16ec37b1 GIT binary patch literal 3323 zcmcK7eNYp38VB%=tbvu|O{=v;j+Z$Bg`>zI2IVD3Ovp-%sA$2LilR;|zMv9BB_t%- zylmcIh`dQLinJh9P{0Ja6I28#3PquysCf3GB1bBEXgfV_qnx8-n07k#kNmNdnVrvm zpZz`0v#~Ih7`{0em<2RA0wa|vr`!U1uI~v zF&O+zyfdOBoHdq{xOf7$)mN>lwcHgLVd-HT}JxYe94Gv(X_H__aHV~b7Ud4Pvk@t?84W?#& z+#WmNc5cUNoapyda#-P`2+n z-sGAbb$_$TW887}6BiJKaV$E-69{23pNeG2=_;8-CM9c*OiHOp|F9Igl_JQHqf)Y3 zhR7s(mQBh5ER~A&6^|p|OQqmd+(8 zZCb1qD*K}>!|B|YVuCsS=V0!N=?-)po(^$x*kptYX9N)B^~VJ^d7-@(M1WK;9&Liw~wO?NN(E}be} z`e0?=)*y}@Xkgx6S$ZS(8d|ifzK_`x?=N$)pWk;s0Ve?`qDX{%L@X0)6guz8Adh+qh(mq90aE=iAZp(dGccGHgmlkOke19p-dfci z@1Ni#x_B;&@l8icy*4roEXN?9&vh-w;n!Fp3;~Dn4#aOVi22tbo-KY@B1*TAgMsta zMh~68EXdvgJe$<9yOgn~E8aiQNo1$l`FUCI52J)nHW8+@|McSTe{t30@NpO^cv#waY+68ew4oT={#AGoA?Je^k$f`&u}bW zOjoRA_$utq5rspZ;5HXZvqE1#D) z5*M}9jPoq=-V*<cQuuK%yr=$XZl2k``40P4ol60hjb({{!c5Rtn3Urk4?uRRFNQuFGPhZnTBMO zu{W&|u4t53w>M}v(wtDAV!oHP(QY&~_X0qupII*-&GksTPf#SZ#4eaOCrG~hUblo4 zya(R){3rfyxiH2%l{iN;xS(G)OWOx8>UV9u+Vm_iN98oT20F}U!8utl4(lm=E)S6) zN~xM^Q?U;_!Ku4seH{bquy+4OfwlV{0C?tW&XteqJmP<|V)6eK9ey(~1Sbd1rgF1{ zd@&*xkriY}MS><}4DI}o3>d2jm74@fNpg-Vf(zPY?8nj=O8o$gp_gzr3~{MEs({T( z5+EcMIErR!`wwLZHp{c_?{mEhe%dlbNH8E^nm+5|owEXTR;S2+hYWR^j zWB!qbQWumI=vg;ZQvO$8W9QeMX~YdqNb^K%y~T6@tCTOlSM-j*$OOSSZX6cRfzPb* zP-Q}8v|6Q&$hAFfGA(f5>_XzuqhFP@h(0x@%#tsExSB}v(zy6^qc>xW*XCVMBPKf` zF>gsuD~+eKuRP{tWLo#OoJ2?fR@_0f5Olf}}Khc$ZhB$$3I7S9&n z^G{G0pQnju2Md}?zmbrthis.$items.length-1||0>b?void 0:this.sliding?this.$element.one("slid",function(){c.to(b)}):d==b?this.pause().cycle():this.slide(b>d?"next":"prev",a(this.$items[b]))},b.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},b.prototype.next=function(){return this.sliding?void 0:this.slide("next")},b.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},b.prototype.slide=function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g="next"==b?"left":"right",h="next"==b?"first":"last",i=this;if(!e.length){if(!this.options.wrap)return;e=this.$element.find(".item")[h]()}this.sliding=!0,f&&this.pause();var j=a.Event("slide.bs.carousel",{relatedTarget:e[0],direction:g});if(!e.hasClass("active")){if(this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var b=a(i.$indicators.children()[i.getActiveIndex()]);b&&b.addClass("active")})),a.support.transition&&this.$element.hasClass("slide")){if(this.$element.trigger(j),j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),d.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)}).emulateTransitionEnd(600)}else{if(this.$element.trigger(j),j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c),g="string"==typeof c?c:f.slide;e||d.data("bs.carousel",e=new b(this,f)),"number"==typeof c?e.to(c):g?e[g]():f.interval&&e.pause().cycle()})},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",function(b){var c,d=a(this),e=a(d.attr("data-target")||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),d.data()),g=d.attr("data-slide-to");g&&(f.interval=!1),e.carousel(f),(g=d.attr("data-slide-to"))&&e.data("bs.carousel").to(g),b.preventDefault()}),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var b=a(this);b.carousel(b.data())})})}(window.jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.transitioning=null,this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.DEFAULTS={toggle:!0},b.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},b.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b=a.Event("show.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.$parent&&this.$parent.find("> .panel > .in");if(c&&c.length){var d=c.data("bs.collapse");if(d&&d.transitioning)return;c.collapse("hide"),d||c.data("bs.collapse",null)}var e=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[e](0),this.transitioning=1;var f=function(){this.$element.removeClass("collapsing").addClass("in")[e]("auto"),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return f.call(this);var g=a.camelCase(["scroll",e].join("-"));this.$element.one(a.support.transition.end,a.proxy(f,this)).emulateTransitionEnd(350)[e](this.$element[0][g])}}},b.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1;var d=function(){this.transitioning=0,this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")};return a.support.transition?(this.$element[c](0).one(a.support.transition.end,a.proxy(d,this)).emulateTransitionEnd(350),void 0):d.call(this)}}},b.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("bs.collapse"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c);e||d.data("bs.collapse",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.bs.collapse.data-api","[data-toggle=collapse]",function(b){var c,d=a(this),e=d.attr("data-target")||b.preventDefault()||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,""),f=a(e),g=f.data("bs.collapse"),h=g?"toggle":d.data(),i=d.attr("data-parent"),j=i&&a(i);g&&g.transitioning||(j&&j.find('[data-toggle=collapse][data-parent="'+i+'"]').not(d).addClass("collapsed"),d[f.hasClass("in")?"addClass":"removeClass"]("collapsed")),f.collapse(h)})}(window.jQuery),+function(a){"use strict";function b(){a(d).remove(),a(e).each(function(b){var d=c(a(this));d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown")),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown"))})}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}var d=".dropdown-backdrop",e="[data-toggle=dropdown]",f=function(b){a(b).on("click.bs.dropdown",this.toggle)};f.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){if("ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(''}),b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),b.prototype.constructor=b,b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},b.prototype.hasContent=function(){return this.getTitle()||this.getContent()},b.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},b.prototype.tip=function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip};var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof c&&c;e||d.data("bs.popover",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),+function(a){"use strict";function b(c,d){var e,f=a.proxy(this.process,this);this.$element=a(c).is("body")?a(window):a(c),this.$body=a("body"),this.$scrollElement=this.$element.on("scroll.bs.scroll-spy.data-api",f),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||(e=a(c).attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.offsets=a([]),this.targets=a([]),this.activeTarget=null,this.refresh(),this.process()}b.DEFAULTS={offset:10},b.prototype.refresh=function(){var b=this.$element[0]==window?"offset":"position";this.offsets=a([]),this.targets=a([]);var c=this;this.$body.find(this.selector).map(function(){var d=a(this),e=d.data("target")||d.attr("href"),f=/^#\w/.test(e)&&a(e);return f&&f.length&&[[f[b]().top+(!a.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){c.offsets.push(this[0]),c.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,d=c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(b>=d)return g!=(a=f.last()[0])&&this.activate(a);for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(!e[a+1]||b<=e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,a(this.selector).parents(".active").removeClass("active");var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate")};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),+function(a){"use strict";var b=function(b){this.element=a(b)};b.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a")[0],f=a.Event("show.bs.tab",{relatedTarget:e});if(b.trigger(f),!f.isDefaultPrevented()){var g=a(d);this.activate(b.parent("li"),c),this.activate(g,g.parent(),function(){b.trigger({type:"shown.bs.tab",relatedTarget:e})})}}},b.prototype.activate=function(b,c,d){function e(){f.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),g?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var f=c.find("> .active"),g=d&&a.support.transition&&f.hasClass("fade");g?f.one(a.support.transition.end,e).emulateTransitionEnd(150):e(),f.removeClass("in")};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new b(this)),"string"==typeof c&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),+function(a){"use strict";var b=function(c,d){this.options=a.extend({},b.DEFAULTS,d),this.$window=a(window).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(c),this.affixed=this.unpin=null,this.checkPosition()};b.RESET="affix affix-top affix-bottom",b.DEFAULTS={offset:0},b.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},b.prototype.checkPosition=function(){if(this.$element.is(":visible")){var c=a(document).height(),d=this.$window.scrollTop(),e=this.$element.offset(),f=this.options.offset,g=f.top,h=f.bottom;"object"!=typeof f&&(h=g=f),"function"==typeof g&&(g=f.top()),"function"==typeof h&&(h=f.bottom());var i=null!=this.unpin&&d+this.unpin<=e.top?!1:null!=h&&e.top+this.$element.height()>=c-h?"bottom":null!=g&&g>=d?"top":!1;this.affixed!==i&&(this.unpin&&this.$element.css("top",""),this.affixed=i,this.unpin="bottom"==i?e.top-d:null,this.$element.removeClass(b.RESET).addClass("affix"+(i?"-"+i:"")),"bottom"==i&&this.$element.offset({top:document.body.offsetHeight-h-this.$element.height()}))}};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof c&&c;e||d.data("bs.affix",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery); \ No newline at end of file diff --git a/static/file_upload/js/canvas-to-blob.min.js b/static/file_upload/js/canvas-to-blob.min.js new file mode 100644 index 00000000..7ee3553a --- /dev/null +++ b/static/file_upload/js/canvas-to-blob.min.js @@ -0,0 +1 @@ +!function(t){"use strict";var e=t.HTMLCanvasElement&&t.HTMLCanvasElement.prototype,n=t.Blob&&function(){try{return Boolean(new Blob)}catch(t){return!1}}(),o=n&&t.Uint8Array&&function(){try{return 100===new Blob([new Uint8Array(100)]).size}catch(t){return!1}}(),r=t.BlobBuilder||t.WebKitBlobBuilder||t.MozBlobBuilder||t.MSBlobBuilder,i=(n||r)&&t.atob&&t.ArrayBuffer&&t.Uint8Array&&function(t){var e,i,a,l,u,B;for(e=t.split(",")[0].indexOf("base64")>=0?atob(t.split(",")[1]):decodeURIComponent(t.split(",")[1]),i=new ArrayBuffer(e.length),a=new Uint8Array(i),l=0;l').prop('href', options.postMessage)[0], + target = loc.protocol + '//' + loc.host, + xhrUpload = options.xhr().upload; + return { + send: function (_, completeCallback) { + counter += 1; + var message = { + id: 'postmessage-transport-' + counter + }, + eventName = 'message.' + message.id; + iframe = $( + '' + ).bind('load', function () { + $.each(names, function (i, name) { + message[name] = options[name]; + }); + message.dataType = message.dataType.replace('postmessage ', ''); + $(window).bind(eventName, function (e) { + e = e.originalEvent; + var data = e.data, + ev; + if (e.origin === target && data.id === message.id) { + if (data.type === 'progress') { + ev = document.createEvent('Event'); + ev.initEvent(data.type, false, true); + $.extend(ev, data); + xhrUpload.dispatchEvent(ev); + } else { + completeCallback( + data.status, + data.statusText, + {postmessage: data.result}, + data.headers + ); + iframe.remove(); + $(window).unbind(eventName); + } + } + }); + iframe[0].contentWindow.postMessage( + message, + target + ); + }).appendTo(document.body); + }, + abort: function () { + if (iframe) { + iframe.remove(); + } + } + }; + } + }); + +})); diff --git a/static/file_upload/js/cors/jquery.xdr-transport.js b/static/file_upload/js/cors/jquery.xdr-transport.js new file mode 100644 index 00000000..d769f452 --- /dev/null +++ b/static/file_upload/js/cors/jquery.xdr-transport.js @@ -0,0 +1,87 @@ +/* + * jQuery XDomainRequest Transport Plugin 1.1.3 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2011, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + * + * Based on Julian Aubourg's ajaxHooks xdr.js: + * https://github.com/jaubourg/ajaxHooks/ + */ + +/*jslint unparam: true */ +/*global define, window, XDomainRequest */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define(['jquery'], factory); + } else { + // Browser globals: + factory(window.jQuery); + } +}(function ($) { + 'use strict'; + if (window.XDomainRequest && !$.support.cors) { + $.ajaxTransport(function (s) { + if (s.crossDomain && s.async) { + if (s.timeout) { + s.xdrTimeout = s.timeout; + delete s.timeout; + } + var xdr; + return { + send: function (headers, completeCallback) { + var addParamChar = /\?/.test(s.url) ? '&' : '?'; + function callback(status, statusText, responses, responseHeaders) { + xdr.onload = xdr.onerror = xdr.ontimeout = $.noop; + xdr = null; + completeCallback(status, statusText, responses, responseHeaders); + } + xdr = new XDomainRequest(); + // XDomainRequest only supports GET and POST: + if (s.type === 'DELETE') { + s.url = s.url + addParamChar + '_method=DELETE'; + s.type = 'POST'; + } else if (s.type === 'PUT') { + s.url = s.url + addParamChar + '_method=PUT'; + s.type = 'POST'; + } else if (s.type === 'PATCH') { + s.url = s.url + addParamChar + '_method=PATCH'; + s.type = 'POST'; + } + xdr.open(s.type, s.url); + xdr.onload = function () { + callback( + 200, + 'OK', + {text: xdr.responseText}, + 'Content-Type: ' + xdr.contentType + ); + }; + xdr.onerror = function () { + callback(404, 'Not Found'); + }; + if (s.xdrTimeout) { + xdr.ontimeout = function () { + callback(0, 'timeout'); + }; + xdr.timeout = s.xdrTimeout; + } + xdr.send((s.hasContent && s.data) || null); + }, + abort: function () { + if (xdr) { + xdr.onerror = $.noop(); + xdr.abort(); + } + } + }; + } + }); + } +})); diff --git a/static/file_upload/js/csrf.js b/static/file_upload/js/csrf.js new file mode 100644 index 00000000..aec99cc7 --- /dev/null +++ b/static/file_upload/js/csrf.js @@ -0,0 +1,22 @@ +// modify jquery ajax to add csrtoken when doing "local" requests +$('html').ajaxSend(function(event, xhr, settings) { + function getCookie(name) { + var cookieValue = null; + if (document.cookie && document.cookie != '') { + var cookies = document.cookie.split(';'); + for (var i = 0; i < cookies.length; i++) { + var cookie = jQuery.trim(cookies[i]); + // Does this cookie string begin with the name we want? + if (cookie.substring(0, name.length + 1) == (name + '=')) { + cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); + break; + } + } + } + return cookieValue; + } + if (!(/^http:.*/.test(settings.url) || /^https:.*/.test(settings.url))) { + // Only send the token to relative URLs i.e. locally. + xhr.setRequestHeader("X-CSRFToken", getCookie('csrftoken')); + } +}); diff --git a/static/file_upload/js/jquery.blueimp-gallery.min.js b/static/file_upload/js/jquery.blueimp-gallery.min.js new file mode 100644 index 00000000..3aa02545 --- /dev/null +++ b/static/file_upload/js/jquery.blueimp-gallery.min.js @@ -0,0 +1 @@ +!function(t){"use strict";"function"==typeof define&&define.amd?define(["./blueimp-helper"],t):(window.blueimp=window.blueimp||{},window.blueimp.Gallery=t(window.blueimp.helper||window.jQuery))}(function(t){"use strict";function e(t,i){return t&&t.length&&void 0!==document.body.style.maxHeight?this&&this.options===e.prototype.options?(this.list=t,this.num=t.length,this.initOptions(i),this.initialize(),void 0):new e(t,i):!1}return t.extend(e.prototype,{options:{container:"#blueimp-gallery",slidesContainer:"div",titleElement:"h3",displayClass:"blueimp-gallery-display",controlsClass:"blueimp-gallery-controls",singleClass:"blueimp-gallery-single",leftEdgeClass:"blueimp-gallery-left",rightEdgeClass:"blueimp-gallery-right",playingClass:"blueimp-gallery-playing",slideClass:"slide",slideLoadingClass:"slide-loading",slideErrorClass:"slide-error",slideContentClass:"slide-content",toggleClass:"toggle",prevClass:"prev",nextClass:"next",closeClass:"close",playPauseClass:"play-pause",typeProperty:"type",titleProperty:"title",urlProperty:"href",clearSlides:!0,stretchImages:!1,toggleControlsOnReturn:!0,toggleSlideshowOnSpace:!0,enableKeyboardNavigation:!0,closeOnEscape:!0,closeOnSlideClick:!0,closeOnSwipeUpOrDown:!0,emulateTouchEvents:!0,hidePageScrollbars:!0,disableScroll:!0,carousel:!1,continuous:!0,unloadElements:!0,startSlideshow:!1,slideshowInterval:5e3,index:0,preloadRange:2,transitionSpeed:400,slideshowTransitionSpeed:void 0,event:void 0,onopen:void 0,onslide:void 0,onslideend:void 0,onslidecomplete:void 0,onclose:void 0},carouselOptions:{hidePageScrollbars:!1,toggleControlsOnReturn:!1,toggleSlideshowOnSpace:!1,enableKeyboardNavigation:!1,closeOnEscape:!1,closeOnSlideClick:!1,closeOnSwipeUpOrDown:!1,disableScroll:!1,startSlideshow:!0},support:function(t){var e,i,s,n={touch:void 0!==window.ontouchstart||window.DocumentTouch&&document instanceof DocumentTouch},o={webkitTransition:{end:"webkitTransitionEnd",prefix:"-webkit-"},MozTransition:{end:"transitionend",prefix:"-moz-"},OTransition:{end:"otransitionend",prefix:"-o-"},transition:{end:"transitionend",prefix:""}};for(e in o)if(o.hasOwnProperty(e)&&void 0!==t.style[e]){i=o[e],i.name=e,n.transition=i;break}return document.body.appendChild(t),i&&(e=i.name.slice(0,-9)+"ransform",void 0!==t.style[e]&&(t.style[e]="translateZ(0)",s=window.getComputedStyle(t).getPropertyValue(i.prefix+"transform"),n.transform={prefix:i.prefix,name:e,translate:!0,translateZ:s&&"none"!==s})),void 0!==t.style.backgroundSize&&(t.style.backgroundSize="contain",n.backgroundSize={contain:"contain"===window.getComputedStyle(t).getPropertyValue("background-size")}),document.body.removeChild(t),n}(document.createElement("div")),initialize:function(){return this.initStartIndex(),this.initWidget()===!1?!1:(this.initEventListeners(),this.options.onopen&&this.options.onopen.call(this),this.onslide(this.index),this.ontransitionend(),this.options.startSlideshow&&this.play(),void 0)},slide:function(t,e){window.clearTimeout(this.timeout);var i,s,n,o=this.index;if(o!==t&&1!==this.num){if(e||(e=this.options.transitionSpeed),this.support.transition){for(this.options.continuous||(t=this.circle(t)),i=Math.abs(o-t)/(o-t),this.options.continuous&&(s=i,i=-this.positions[this.circle(t)]/this.slideWidth,i!==s&&(t=-i*this.num+t)),n=Math.abs(o-t)-1;n;)n-=1,this.move(this.circle((t>o?t:o)-n-1),this.slideWidth*i,0);t=this.circle(t),this.move(o,this.slideWidth*i,e),this.move(t,0,e),this.options.continuous&&this.move(this.circle(t-i),-(this.slideWidth*i),0)}else t=this.circle(t),this.animate(o*-this.slideWidth,t*-this.slideWidth,e);this.onslide(t)}},getIndex:function(){return this.index},getNumber:function(){return this.num},prev:function(){(this.options.continuous||this.index)&&this.slide(this.index-1)},next:function(){(this.options.continuous||this.index1&&(this.timeout=this.setTimeout(this.slide,[this.index+1,this.options.slideshowTransitionSpeed],this.interval)),this.container.addClass(this.options.playingClass)},pause:function(){window.clearTimeout(this.timeout),this.interval=null,this.container.removeClass(this.options.playingClass)},add:function(t){var e;for(this.list=this.list.concat(t),this.num=this.list.length,this.num>2&&null===this.options.continuous&&(this.options.continuous=!0,this.container.removeClass(this.options.leftEdgeClass)),this.container.removeClass(this.options.rightEdgeClass).removeClass(this.options.singleClass),e=this.num-t.length;ei?(s.slidesContainer[0].style.left=e+"px",s.ontransitionend(),window.clearInterval(o),void 0):(s.slidesContainer[0].style.left=(e-t)*(Math.floor(100*(l/i))/100)+t+"px",void 0)},4)},preventDefault:function(t){t.preventDefault?t.preventDefault():t.returnValue=!1},onresize:function(){this.initSlides(!0)},onmousedown:function(t){t.which&&1===t.which&&(t.preventDefault(),(t.originalEvent||t).touches=[{pageX:t.pageX,pageY:t.pageY}],this.ontouchstart(t))},onmousemove:function(t){this.touchStart&&((t.originalEvent||t).touches=[{pageX:t.pageX,pageY:t.pageY}],this.ontouchmove(t))},onmouseup:function(t){this.touchStart&&(this.ontouchend(t),delete this.touchStart)},onmouseout:function(e){if(this.touchStart){var i=e.target,s=e.relatedTarget;(!s||s!==i&&!t.contains(i,s))&&this.onmouseup(e)}},ontouchstart:function(t){var e=(t.originalEvent||t).touches[0];this.touchStart={x:e.pageX,y:e.pageY,time:Date.now()},this.isScrolling=void 0,this.touchDelta={}},ontouchmove:function(t){var e,i,s=(t.originalEvent||t).touches[0],n=(t.originalEvent||t).scale,o=this.index;if(!(s.length>1||n&&1!==n))if(this.options.disableScroll&&t.preventDefault(),this.touchDelta={x:s.pageX-this.touchStart.x,y:s.pageY-this.touchStart.y},e=this.touchDelta.x,void 0===this.isScrolling&&(this.isScrolling=this.isScrolling||Math.abs(e)0||o===this.num-1&&0>e?Math.abs(e)/this.slideWidth+1:1,i=[o],o&&i.push(o-1),o20||Math.abs(this.touchDelta.x)>r/2,d=!o&&this.touchDelta.x>0||o===this.num-1&&this.touchDelta.x<0,c=!h&&this.options.closeOnSwipeUpOrDown&&(a&&Math.abs(this.touchDelta.y)>20||Math.abs(this.touchDelta.y)>this.slideHeight/2);this.options.continuous&&(d=!1),t=this.touchDelta.x<0?-1:1,this.isScrolling?c?this.close():this.translateY(o,0,l):h&&!d?(e=o+t,i=o-t,s=r*t,n=-r*t,this.options.continuous?(this.move(this.circle(e),s,0),this.move(this.circle(o-2*t),n,0)):e>=0&&ethis.container[0].clientHeight&&(s.style.maxHeight=this.container[0].clientHeight),this.interval&&this.slides[this.index]===n&&this.play(),this.setTimeout(this.options.onslidecomplete,[i,n]))},onload:function(t){this.oncomplete(t)},onerror:function(t){this.oncomplete(t)},onkeydown:function(t){switch(t.which||t.keyCode){case 13:this.options.toggleControlsOnReturn&&(this.preventDefault(t),this.toggleControls());break;case 27:this.options.closeOnEscape&&this.close();break;case 32:this.options.toggleSlideshowOnSpace&&(this.preventDefault(t),this.toggleSlideshow());break;case 37:this.options.enableKeyboardNavigation&&(this.preventDefault(t),this.prev());break;case 39:this.options.enableKeyboardNavigation&&(this.preventDefault(t),this.next())}},handleClick:function(e){var i=this.options,s=e.target||e.srcElement,n=s.parentNode,o=function(e){return t(s).hasClass(e)||t(n).hasClass(e)};n===this.slidesContainer[0]?(this.preventDefault(e),i.closeOnSlideClick?this.close():this.toggleControls()):n.parentNode&&n.parentNode===this.slidesContainer[0]?(this.preventDefault(e),this.toggleControls()):o(i.toggleClass)?(this.preventDefault(e),this.toggleControls()):o(i.prevClass)?(this.preventDefault(e),this.prev()):o(i.nextClass)?(this.preventDefault(e),this.next()):o(i.closeClass)?(this.preventDefault(e),this.close()):o(i.playPauseClass)&&(this.preventDefault(e),this.toggleSlideshow())},onclick:function(t){return this.options.emulateTouchEvents&&this.touchDelta&&(Math.abs(this.touchDelta.x)>20||Math.abs(this.touchDelta.y)>20)?(delete this.touchDelta,void 0):this.handleClick(t)},updateEdgeClasses:function(t){t?this.container.removeClass(this.options.leftEdgeClass):this.container.addClass(this.options.leftEdgeClass),t===this.num-1?this.container.addClass(this.options.rightEdgeClass):this.container.removeClass(this.options.rightEdgeClass)},handleSlide:function(t){this.options.continuous||this.updateEdgeClasses(t),this.loadElements(t),this.options.unloadElements&&this.unloadElements(t),this.setTitle(t)},onslide:function(t){this.index=t,this.handleSlide(t),this.setTimeout(this.options.onslide,[t,this.slides[t]])},setTitle:function(t){var e=this.slides[t].firstChild.title,i=this.titleElement;i.length&&(this.titleElement.empty(),e&&i[0].appendChild(document.createTextNode(e)))},setTimeout:function(t,e,i){var s=this;return t&&window.setTimeout(function(){t.apply(s,e||[])},i||0)},imageFactory:function(e,i){var s,n,o,l=this,r=this.imagePrototype.cloneNode(!1),a=e,h=this.options.stretchImages&&this.support.backgroundSize&&this.support.backgroundSize.contain,d=function(e){if(!s){if(e={type:e.type,target:n},!n.parentNode)return l.setTimeout(d,[e]);s=!0,t(r).off("load error",d),h&&"load"===e.type&&(n.style.background='url("'+a+'") center no-repeat',n.style.backgroundSize="contain"),i(e)}};return"string"!=typeof a&&(a=this.getItemProperty(e,this.options.urlProperty),o=this.getItemProperty(e,this.options.titleProperty)),h?n=this.elementPrototype.cloneNode(!1):(n=r,r.draggable=!1),o&&(n.title=o),t(r).on("load error",d),r.src=a,n},createElement:function(e,i){var s=e&&this.getItemProperty(e,this.options.typeProperty),n=s&&this[s.split("/")[0]+"Factory"]||this.imageFactory,o=e&&n.call(this,e,i);return o||(o=this.elementPrototype.cloneNode(!1),this.setTimeout(i,[{type:"error",target:o}])),t(o).addClass(this.options.slideContentClass),o},loadElement:function(e){this.elements[e]||(this.slides[e].firstChild?this.elements[e]=t(this.slides[e]).hasClass(this.options.slideErrorClass)?3:2:(this.elements[e]=1,t(this.slides[e]).addClass(this.options.slideLoadingClass),this.slides[e].appendChild(this.createElement(this.list[e],this.proxyListener))))},loadElements:function(t){var e,i=Math.min(this.num,2*this.options.preloadRange+1),s=t;for(e=0;i>e;e+=1)s+=e*(0===e%2?-1:1),s=this.circle(s),this.loadElement(s)},unloadElements:function(t){var e,i,s;for(e in this.elements)this.elements.hasOwnProperty(e)&&(s=Math.abs(t-e),s>this.options.preloadRange&&s+this.options.preloadRanget?-this.slideWidth:this.index= unit.size) { + return prefix + (bytes / unit.size).toFixed(2) + suffix; + } + i += 1; + } + }; + }; + }) + + // The FileUploadController initializes the fileupload widget and + // provides scope methods to control the File Upload functionality: + .controller('FileUploadController', [ + '$scope', '$element', '$attrs', '$window', 'fileUpload', + function ($scope, $element, $attrs, $window, fileUpload) { + var uploadMethods = { + progress: function () { + return $element.fileupload('progress'); + }, + active: function () { + return $element.fileupload('active'); + }, + option: function (option, data) { + return $element.fileupload('option', option, data); + }, + add: function (data) { + return $element.fileupload('add', data); + }, + send: function (data) { + return $element.fileupload('send', data); + }, + process: function (data) { + return $element.fileupload('process', data); + }, + processing: function (data) { + return $element.fileupload('processing', data); + } + }; + $scope.disabled = !$window.jQuery.support.fileInput; + $scope.queue = $scope.queue || []; + $scope.clear = function (files) { + var queue = this.queue, + i = queue.length, + file = files, + length = 1; + if (angular.isArray(files)) { + file = files[0]; + length = files.length; + } + while (i) { + i -= 1; + if (queue[i] === file) { + return queue.splice(i, length); + } + } + }; + $scope.replace = function (oldFiles, newFiles) { + var queue = this.queue, + file = oldFiles[0], + i, + j; + for (i = 0; i < queue.length; i += 1) { + if (queue[i] === file) { + for (j = 0; j < newFiles.length; j += 1) { + queue[i + j] = newFiles[j]; + } + return; + } + } + }; + $scope.applyOnQueue = function (method) { + var list = this.queue.slice(0), + i, + file; + for (i = 0; i < list.length; i += 1) { + file = list[i]; + if (file[method]) { + file[method](); + } + } + }; + $scope.submit = function () { + this.applyOnQueue('$submit'); + }; + $scope.cancel = function () { + this.applyOnQueue('$cancel'); + }; + // Add upload methods to the scope: + angular.extend($scope, uploadMethods); + // The fileupload widget will initialize with + // the options provided via "data-"-parameters, + // as well as those given via options object: + $element.fileupload(angular.extend( + {scope: function () { + return $scope; + }}, + fileUpload.defaults + )).on('fileuploadadd', function (e, data) { + data.scope = $scope.option('scope'); + }).on([ + 'fileuploadadd', + 'fileuploadsubmit', + 'fileuploadsend', + 'fileuploaddone', + 'fileuploadfail', + 'fileuploadalways', + 'fileuploadprogress', + 'fileuploadprogressall', + 'fileuploadstart', + 'fileuploadstop', + 'fileuploadchange', + 'fileuploadpaste', + 'fileuploaddrop', + 'fileuploaddragover', + 'fileuploadchunksend', + 'fileuploadchunkdone', + 'fileuploadchunkfail', + 'fileuploadchunkalways', + 'fileuploadprocessstart', + 'fileuploadprocess', + 'fileuploadprocessdone', + 'fileuploadprocessfail', + 'fileuploadprocessalways', + 'fileuploadprocessstop' + ].join(' '), function (e, data) { + if ($scope.$emit(e.type, data).defaultPrevented) { + e.preventDefault(); + } + }).on('remove', function () { + // Remove upload methods from the scope, + // when the widget is removed: + var method; + for (method in uploadMethods) { + if (uploadMethods.hasOwnProperty(method)) { + delete $scope[method]; + } + } + }); + // Observe option changes: + $scope.$watch( + $attrs.fileUpload, + function (newOptions) { + if (newOptions) { + $element.fileupload('option', newOptions); + } + } + ); + } + ]) + + // Provide File Upload progress feedback: + .controller('FileUploadProgressController', [ + '$scope', '$attrs', '$parse', + function ($scope, $attrs, $parse) { + var fn = $parse($attrs.fileUploadProgress), + update = function () { + var progress = fn($scope); + if (!progress || !progress.total) { + return; + } + $scope.num = Math.floor( + progress.loaded / progress.total * 100 + ); + }; + update(); + $scope.$watch( + $attrs.fileUploadProgress + '.loaded', + function (newValue, oldValue) { + if (newValue !== oldValue) { + update(); + } + } + ); + } + ]) + + // Display File Upload previews: + .controller('FileUploadPreviewController', [ + '$scope', '$element', '$attrs', '$parse', + function ($scope, $element, $attrs, $parse) { + var fn = $parse($attrs.fileUploadPreview), + file = fn($scope); + if (file.preview) { + $element.append(file.preview); + } + } + ]) + + .directive('fileUpload', function () { + return { + controller: 'FileUploadController' + }; + }) + + .directive('fileUploadProgress', function () { + return { + controller: 'FileUploadProgressController' + }; + }) + + .directive('fileUploadPreview', function () { + return { + controller: 'FileUploadPreviewController' + }; + }) + + // Enhance the HTML5 download attribute to + // allow drag&drop of files to the desktop: + .directive('download', function () { + return function (scope, elm) { + elm.on('dragstart', function (e) { + try { + e.originalEvent.dataTransfer.setData( + 'DownloadURL', + [ + 'application/octet-stream', + elm.prop('download'), + elm.prop('href') + ].join(':') + ); + } catch (ignore) {} + }); + }; + }); + +})); diff --git a/static/file_upload/js/jquery.fileupload-audio.js b/static/file_upload/js/jquery.fileupload-audio.js new file mode 100644 index 00000000..f59c2fa5 --- /dev/null +++ b/static/file_upload/js/jquery.fileupload-audio.js @@ -0,0 +1,106 @@ +/* + * jQuery File Upload Audio Preview Plugin 1.0.3 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, unparam: true, regexp: true */ +/*global define, window, document */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define([ + 'jquery', + 'load-image', + './jquery.fileupload-process' + ], factory); + } else { + // Browser globals: + factory( + window.jQuery, + window.loadImage + ); + } +}(function ($, loadImage) { + 'use strict'; + + // Prepend to the default processQueue: + $.blueimp.fileupload.prototype.options.processQueue.unshift( + { + action: 'loadAudio', + // Use the action as prefix for the "@" options: + prefix: true, + fileTypes: '@', + maxFileSize: '@', + disabled: '@disableAudioPreview' + }, + { + action: 'setAudio', + name: '@audioPreviewName', + disabled: '@disableAudioPreview' + } + ); + + // The File Upload Audio Preview plugin extends the fileupload widget + // with audio preview functionality: + $.widget('blueimp.fileupload', $.blueimp.fileupload, { + + options: { + // The regular expression for the types of audio files to load, + // matched against the file type: + loadAudioFileTypes: /^audio\/.*$/ + }, + + _audioElement: document.createElement('audio'), + + processActions: { + + // Loads the audio file given via data.files and data.index + // as audio element if the browser supports playing it. + // Accepts the options fileTypes (regular expression) + // and maxFileSize (integer) to limit the files to load: + loadAudio: function (data, options) { + if (options.disabled) { + return data; + } + var file = data.files[data.index], + url, + audio; + if (this._audioElement.canPlayType && + this._audioElement.canPlayType(file.type) && + ($.type(options.maxFileSize) !== 'number' || + file.size <= options.maxFileSize) && + (!options.fileTypes || + options.fileTypes.test(file.type))) { + url = loadImage.createObjectURL(file); + if (url) { + audio = this._audioElement.cloneNode(false); + audio.src = url; + audio.controls = true; + data.audio = audio; + return data; + } + } + return data; + }, + + // Sets the audio element as a property of the file object: + setAudio: function (data, options) { + if (data.audio && !options.disabled) { + data.files[data.index][options.name || 'preview'] = data.audio; + } + return data; + } + + } + + }); + +})); diff --git a/static/file_upload/js/jquery.fileupload-image.js b/static/file_upload/js/jquery.fileupload-image.js new file mode 100644 index 00000000..84474a7b --- /dev/null +++ b/static/file_upload/js/jquery.fileupload-image.js @@ -0,0 +1,292 @@ +/* + * jQuery File Upload Image Preview & Resize Plugin 1.2.3 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, unparam: true, regexp: true */ +/*global define, window, document, DataView, Blob, Uint8Array */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define([ + 'jquery', + 'load-image', + 'load-image-meta', + 'load-image-exif', + 'load-image-ios', + 'canvas-to-blob', + './jquery.fileupload-process' + ], factory); + } else { + // Browser globals: + factory( + window.jQuery, + window.loadImage + ); + } +}(function ($, loadImage) { + 'use strict'; + + // Prepend to the default processQueue: + $.blueimp.fileupload.prototype.options.processQueue.unshift( + { + action: 'loadImageMetaData', + disableImageHead: '@', + disableExif: '@', + disableExifThumbnail: '@', + disableExifSub: '@', + disableExifGps: '@', + disabled: '@disableImageMetaDataLoad' + }, + { + action: 'loadImage', + // Use the action as prefix for the "@" options: + prefix: true, + fileTypes: '@', + maxFileSize: '@', + noRevoke: '@', + disabled: '@disableImageLoad' + }, + { + action: 'resizeImage', + // Use "image" as prefix for the "@" options: + prefix: 'image', + maxWidth: '@', + maxHeight: '@', + minWidth: '@', + minHeight: '@', + crop: '@', + disabled: '@disableImageResize' + }, + { + action: 'saveImage', + disabled: '@disableImageResize' + }, + { + action: 'saveImageMetaData', + disabled: '@disableImageMetaDataSave' + }, + { + action: 'resizeImage', + // Use "preview" as prefix for the "@" options: + prefix: 'preview', + maxWidth: '@', + maxHeight: '@', + minWidth: '@', + minHeight: '@', + crop: '@', + orientation: '@', + thumbnail: '@', + canvas: '@', + disabled: '@disableImagePreview' + }, + { + action: 'setImage', + name: '@imagePreviewName', + disabled: '@disableImagePreview' + } + ); + + // The File Upload Resize plugin extends the fileupload widget + // with image resize functionality: + $.widget('blueimp.fileupload', $.blueimp.fileupload, { + + options: { + // The regular expression for the types of images to load: + // matched against the file type: + loadImageFileTypes: /^image\/(gif|jpeg|png)$/, + // The maximum file size of images to load: + loadImageMaxFileSize: 10000000, // 10MB + // The maximum width of resized images: + imageMaxWidth: 1920, + // The maximum height of resized images: + imageMaxHeight: 1080, + // Define if resized images should be cropped or only scaled: + imageCrop: false, + // Disable the resize image functionality by default: + disableImageResize: true, + // The maximum width of the preview images: + previewMaxWidth: 80, + // The maximum height of the preview images: + previewMaxHeight: 80, + // Defines the preview orientation (1-8) or takes the orientation + // value from Exif data if set to true: + previewOrientation: true, + // Create the preview using the Exif data thumbnail: + previewThumbnail: true, + // Define if preview images should be cropped or only scaled: + previewCrop: false, + // Define if preview images should be resized as canvas elements: + previewCanvas: true + }, + + processActions: { + + // Loads the image given via data.files and data.index + // as img element if the browser supports canvas. + // Accepts the options fileTypes (regular expression) + // and maxFileSize (integer) to limit the files to load: + loadImage: function (data, options) { + if (options.disabled) { + return data; + } + var that = this, + file = data.files[data.index], + dfd = $.Deferred(); + if (($.type(options.maxFileSize) === 'number' && + file.size > options.maxFileSize) || + (options.fileTypes && + !options.fileTypes.test(file.type)) || + !loadImage( + file, + function (img) { + if (img.src) { + data.img = img; + } + dfd.resolveWith(that, [data]); + }, + options + )) { + return data; + } + return dfd.promise(); + }, + + // Resizes the image given as data.canvas or data.img + // and updates data.canvas or data.img with the resized image. + // Accepts the options maxWidth, maxHeight, minWidth, + // minHeight, canvas and crop: + resizeImage: function (data, options) { + if (options.disabled) { + return data; + } + var that = this, + dfd = $.Deferred(), + resolve = function (newImg) { + data[newImg.getContext ? 'canvas' : 'img'] = newImg; + dfd.resolveWith(that, [data]); + }, + thumbnail, + img, + newImg; + options = $.extend({canvas: true}, options); + if (data.exif) { + if (options.orientation === true) { + options.orientation = data.exif.get('Orientation'); + } + if (options.thumbnail) { + thumbnail = data.exif.get('Thumbnail'); + if (thumbnail) { + loadImage(thumbnail, resolve, options); + return dfd.promise(); + } + } + } + img = (options.canvas && data.canvas) || data.img; + if (img) { + newImg = loadImage.scale(img, options); + if (newImg.width !== img.width || + newImg.height !== img.height) { + resolve(newImg); + return dfd.promise(); + } + } + return data; + }, + + // Saves the processed image given as data.canvas + // inplace at data.index of data.files: + saveImage: function (data, options) { + if (!data.canvas || options.disabled) { + return data; + } + var that = this, + file = data.files[data.index], + name = file.name, + dfd = $.Deferred(), + callback = function (blob) { + if (!blob.name) { + if (file.type === blob.type) { + blob.name = file.name; + } else if (file.name) { + blob.name = file.name.replace( + /\..+$/, + '.' + blob.type.substr(6) + ); + } + } + // Store the created blob at the position + // of the original file in the files list: + data.files[data.index] = blob; + dfd.resolveWith(that, [data]); + }; + // Use canvas.mozGetAsFile directly, to retain the filename, as + // Gecko doesn't support the filename option for FormData.append: + if (data.canvas.mozGetAsFile) { + callback(data.canvas.mozGetAsFile( + (/^image\/(jpeg|png)$/.test(file.type) && name) || + ((name && name.replace(/\..+$/, '')) || + 'blob') + '.png', + file.type + )); + } else if (data.canvas.toBlob) { + data.canvas.toBlob(callback, file.type); + } else { + return data; + } + return dfd.promise(); + }, + + loadImageMetaData: function (data, options) { + if (options.disabled) { + return data; + } + var that = this, + dfd = $.Deferred(); + loadImage.parseMetaData(data.files[data.index], function (result) { + $.extend(data, result); + dfd.resolveWith(that, [data]); + }, options); + return dfd.promise(); + }, + + saveImageMetaData: function (data, options) { + if (!(data.imageHead && data.canvas && + data.canvas.toBlob && !options.disabled)) { + return data; + } + var file = data.files[data.index], + blob = new Blob([ + data.imageHead, + // Resized images always have a head size of 20 bytes, + // including the JPEG marker and a minimal JFIF header: + this._blobSlice.call(file, 20) + ], {type: file.type}); + blob.name = file.name; + data.files[data.index] = blob; + return data; + }, + + // Sets the resized version of the image as a property of the + // file object, must be called after "saveImage": + setImage: function (data, options) { + var img = data.canvas || data.img; + if (img && !options.disabled) { + data.files[data.index][options.name || 'preview'] = img; + } + return data; + } + + } + + }); + +})); diff --git a/static/file_upload/js/jquery.fileupload-jquery-ui.js b/static/file_upload/js/jquery.fileupload-jquery-ui.js new file mode 100644 index 00000000..05dd7a61 --- /dev/null +++ b/static/file_upload/js/jquery.fileupload-jquery-ui.js @@ -0,0 +1,138 @@ +/* + * jQuery File Upload jQuery UI Plugin 8.7.0 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, unparam: true */ +/*global define, window */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define(['jquery', './jquery.fileupload-ui'], factory); + } else { + // Browser globals: + factory(window.jQuery); + } +}(function ($) { + 'use strict'; + + $.widget('blueimp.fileupload', $.blueimp.fileupload, { + + options: { + progress: function (e, data) { + if (data.context) { + data.context.find('.progress').progressbar( + 'option', + 'value', + parseInt(data.loaded / data.total * 100, 10) + ); + } + }, + progressall: function (e, data) { + var $this = $(this); + $this.find('.fileupload-progress') + .find('.progress').progressbar( + 'option', + 'value', + parseInt(data.loaded / data.total * 100, 10) + ).end() + .find('.progress-extended').each(function () { + $(this).html( + ($this.data('blueimp-fileupload') || + $this.data('fileupload')) + ._renderExtendedProgress(data) + ); + }); + } + }, + + _renderUpload: function (func, files) { + var node = this._super(func, files), + showIconText = $(window).width() > 480; + node.find('.progress').empty().progressbar(); + node.find('.start').button({ + icons: {primary: 'ui-icon-circle-arrow-e'}, + text: showIconText + }); + node.find('.cancel').button({ + icons: {primary: 'ui-icon-cancel'}, + text: showIconText + }); + return node; + }, + + _renderDownload: function (func, files) { + var node = this._super(func, files), + showIconText = $(window).width() > 480; + node.find('.delete').button({ + icons: {primary: 'ui-icon-trash'}, + text: showIconText + }); + return node; + }, + + _transition: function (node) { + var deferred = $.Deferred(); + if (node.hasClass('fade')) { + node.fadeToggle( + this.options.transitionDuration, + this.options.transitionEasing, + function () { + deferred.resolveWith(node); + } + ); + } else { + deferred.resolveWith(node); + } + return deferred; + }, + + _create: function () { + this._super(); + this.element + .find('.fileupload-buttonbar') + .find('.fileinput-button').each(function () { + var input = $(this).find('input:file').detach(); + $(this) + .button({icons: {primary: 'ui-icon-plusthick'}}) + .append(input); + }) + .end().find('.start') + .button({icons: {primary: 'ui-icon-circle-arrow-e'}}) + .end().find('.cancel') + .button({icons: {primary: 'ui-icon-cancel'}}) + .end().find('.delete') + .button({icons: {primary: 'ui-icon-trash'}}) + .end().find('.progress').progressbar(); + }, + + _destroy: function () { + this.element + .find('.fileupload-buttonbar') + .find('.fileinput-button').each(function () { + var input = $(this).find('input:file').detach(); + $(this) + .button('destroy') + .append(input); + }) + .end().find('.start') + .button('destroy') + .end().find('.cancel') + .button('destroy') + .end().find('.delete') + .button('destroy') + .end().find('.progress').progressbar('destroy'); + this._super(); + } + + }); + +})); diff --git a/static/file_upload/js/jquery.fileupload-process.js b/static/file_upload/js/jquery.fileupload-process.js new file mode 100644 index 00000000..87042c3d --- /dev/null +++ b/static/file_upload/js/jquery.fileupload-process.js @@ -0,0 +1,164 @@ +/* + * jQuery File Upload Processing Plugin 1.2.2 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2012, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, unparam: true */ +/*global define, window */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define([ + 'jquery', + './jquery.fileupload' + ], factory); + } else { + // Browser globals: + factory( + window.jQuery + ); + } +}(function ($) { + 'use strict'; + + var originalAdd = $.blueimp.fileupload.prototype.options.add; + + // The File Upload Processing plugin extends the fileupload widget + // with file processing functionality: + $.widget('blueimp.fileupload', $.blueimp.fileupload, { + + options: { + // The list of processing actions: + processQueue: [ + /* + { + action: 'log', + type: 'debug' + } + */ + ], + add: function (e, data) { + var $this = $(this); + data.process(function () { + return $this.fileupload('process', data); + }); + originalAdd.call(this, e, data); + } + }, + + processActions: { + /* + log: function (data, options) { + console[options.type]( + 'Processing "' + data.files[data.index].name + '"' + ); + } + */ + }, + + _processFile: function (data) { + var that = this, + dfd = $.Deferred().resolveWith(that, [data]), + chain = dfd.promise(); + this._trigger('process', null, data); + $.each(data.processQueue, function (i, settings) { + var func = function (data) { + return that.processActions[settings.action].call( + that, + data, + settings + ); + }; + chain = chain.pipe(func, settings.always && func); + }); + chain + .done(function () { + that._trigger('processdone', null, data); + that._trigger('processalways', null, data); + }) + .fail(function () { + that._trigger('processfail', null, data); + that._trigger('processalways', null, data); + }); + return chain; + }, + + // Replaces the settings of each processQueue item that + // are strings starting with an "@", using the remaining + // substring as key for the option map, + // e.g. "@autoUpload" is replaced with options.autoUpload: + _transformProcessQueue: function (options) { + var processQueue = []; + $.each(options.processQueue, function () { + var settings = {}, + action = this.action, + prefix = this.prefix === true ? action : this.prefix; + $.each(this, function (key, value) { + if ($.type(value) === 'string' && + value.charAt(0) === '@') { + settings[key] = options[ + value.slice(1) || (prefix ? prefix + + key.charAt(0).toUpperCase() + key.slice(1) : key) + ]; + } else { + settings[key] = value; + } + + }); + processQueue.push(settings); + }); + options.processQueue = processQueue; + }, + + // Returns the number of files currently in the processsing queue: + processing: function () { + return this._processing; + }, + + // Processes the files given as files property of the data parameter, + // returns a Promise object that allows to bind callbacks: + process: function (data) { + var that = this, + options = $.extend({}, this.options, data); + if (options.processQueue && options.processQueue.length) { + this._transformProcessQueue(options); + if (this._processing === 0) { + this._trigger('processstart'); + } + $.each(data.files, function (index) { + var opts = index ? $.extend({}, options) : options, + func = function () { + return that._processFile(opts); + }; + opts.index = index; + that._processing += 1; + that._processingQueue = that._processingQueue.pipe(func, func) + .always(function () { + that._processing -= 1; + if (that._processing === 0) { + that._trigger('processstop'); + } + }); + }); + } + return this._processingQueue; + }, + + _create: function () { + this._super(); + this._processing = 0; + this._processingQueue = $.Deferred().resolveWith(this) + .promise(); + } + + }); + +})); diff --git a/static/file_upload/js/jquery.fileupload-ui.js b/static/file_upload/js/jquery.fileupload-ui.js new file mode 100644 index 00000000..59381fcb --- /dev/null +++ b/static/file_upload/js/jquery.fileupload-ui.js @@ -0,0 +1,643 @@ +/* + * jQuery File Upload User Interface Plugin 8.8.1 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2010, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, unparam: true, regexp: true */ +/*global define, window, URL, webkitURL, FileReader */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define([ + 'jquery', + 'tmpl', + './jquery.fileupload-image', + './jquery.fileupload-audio', + './jquery.fileupload-video', + './jquery.fileupload-validate' + ], factory); + } else { + // Browser globals: + factory( + window.jQuery, + window.tmpl + ); + } +}(function ($, tmpl, loadImage) { + 'use strict'; + + $.blueimp.fileupload.prototype._specialOptions.push( + 'filesContainer', + 'uploadTemplateId', + 'downloadTemplateId' + ); + + // The UI version extends the file upload widget + // and adds complete user interface interaction: + $.widget('blueimp.fileupload', $.blueimp.fileupload, { + + options: { + // By default, files added to the widget are uploaded as soon + // as the user clicks on the start buttons. To enable automatic + // uploads, set the following option to true: + autoUpload: false, + // The ID of the upload template: + uploadTemplateId: 'template-upload', + // The ID of the download template: + downloadTemplateId: 'template-download', + // The container for the list of files. If undefined, it is set to + // an element with class "files" inside of the widget element: + filesContainer: undefined, + // By default, files are appended to the files container. + // Set the following option to true, to prepend files instead: + prependFiles: false, + // The expected data type of the upload response, sets the dataType + // option of the $.ajax upload requests: + dataType: 'json', + + // Function returning the current number of files, + // used by the maxNumberOfFiles validation: + getNumberOfFiles: function () { + return this.filesContainer.children().length; + }, + + // Callback to retrieve the list of files from the server response: + getFilesFromResponse: function (data) { + if (data.result && $.isArray(data.result.files)) { + return data.result.files; + } + return []; + }, + + // The add callback is invoked as soon as files are added to the fileupload + // widget (via file input selection, drag & drop or add API call). + // See the basic file upload widget for more information: + add: function (e, data) { + var $this = $(this), + that = $this.data('blueimp-fileupload') || + $this.data('fileupload'), + options = that.options, + files = data.files; + data.process(function () { + return $this.fileupload('process', data); + }).always(function () { + data.context = that._renderUpload(files).data('data', data); + that._renderPreviews(data); + options.filesContainer[ + options.prependFiles ? 'prepend' : 'append' + ](data.context); + that._forceReflow(data.context); + that._transition(data.context).done( + function () { + if ((that._trigger('added', e, data) !== false) && + (options.autoUpload || data.autoUpload) && + data.autoUpload !== false && !data.files.error) { + data.submit(); + } + } + ); + }); + }, + // Callback for the start of each file upload request: + send: function (e, data) { + var that = $(this).data('blueimp-fileupload') || + $(this).data('fileupload'); + if (data.context && data.dataType && + data.dataType.substr(0, 6) === 'iframe') { + // Iframe Transport does not support progress events. + // In lack of an indeterminate progress bar, we set + // the progress to 100%, showing the full animated bar: + data.context + .find('.progress').addClass( + !$.support.transition && 'progress-animated' + ) + .attr('aria-valuenow', 100) + .children().first().css( + 'width', + '100%' + ); + } + return that._trigger('sent', e, data); + }, + // Callback for successful uploads: + done: function (e, data) { + var that = $(this).data('blueimp-fileupload') || + $(this).data('fileupload'), + getFilesFromResponse = data.getFilesFromResponse || + that.options.getFilesFromResponse, + files = getFilesFromResponse(data), + template, + deferred; + if (data.context) { + data.context.each(function (index) { + var file = files[index] || + {error: 'Empty file upload result'}; + deferred = that._addFinishedDeferreds(); + that._transition($(this)).done( + function () { + var node = $(this); + template = that._renderDownload([file]) + .replaceAll(node); + that._forceReflow(template); + that._transition(template).done( + function () { + data.context = $(this); + that._trigger('completed', e, data); + that._trigger('finished', e, data); + deferred.resolve(); + } + ); + } + ); + }); + } else { + template = that._renderDownload(files)[ + that.options.prependFiles ? 'prependTo' : 'appendTo' + ](that.options.filesContainer); + that._forceReflow(template); + deferred = that._addFinishedDeferreds(); + that._transition(template).done( + function () { + data.context = $(this); + that._trigger('completed', e, data); + that._trigger('finished', e, data); + deferred.resolve(); + } + ); + } + }, + // Callback for failed (abort or error) uploads: + fail: function (e, data) { + var that = $(this).data('blueimp-fileupload') || + $(this).data('fileupload'), + template, + deferred; + if (data.context) { + data.context.each(function (index) { + if (data.errorThrown !== 'abort') { + var file = data.files[index]; + file.error = file.error || data.errorThrown || + true; + deferred = that._addFinishedDeferreds(); + that._transition($(this)).done( + function () { + var node = $(this); + template = that._renderDownload([file]) + .replaceAll(node); + that._forceReflow(template); + that._transition(template).done( + function () { + data.context = $(this); + that._trigger('failed', e, data); + that._trigger('finished', e, data); + deferred.resolve(); + } + ); + } + ); + } else { + deferred = that._addFinishedDeferreds(); + that._transition($(this)).done( + function () { + $(this).remove(); + that._trigger('failed', e, data); + that._trigger('finished', e, data); + deferred.resolve(); + } + ); + } + }); + } else if (data.errorThrown !== 'abort') { + data.context = that._renderUpload(data.files)[ + that.options.prependFiles ? 'prependTo' : 'appendTo' + ](that.options.filesContainer) + .data('data', data); + that._forceReflow(data.context); + deferred = that._addFinishedDeferreds(); + that._transition(data.context).done( + function () { + data.context = $(this); + that._trigger('failed', e, data); + that._trigger('finished', e, data); + deferred.resolve(); + } + ); + } else { + that._trigger('failed', e, data); + that._trigger('finished', e, data); + that._addFinishedDeferreds().resolve(); + } + }, + // Callback for upload progress events: + progress: function (e, data) { + if (data.context) { + var progress = Math.floor(data.loaded / data.total * 100); + data.context.find('.progress') + .attr('aria-valuenow', progress) + .children().first().css( + 'width', + progress + '%' + ); + } + }, + // Callback for global upload progress events: + progressall: function (e, data) { + var $this = $(this), + progress = Math.floor(data.loaded / data.total * 100), + globalProgressNode = $this.find('.fileupload-progress'), + extendedProgressNode = globalProgressNode + .find('.progress-extended'); + if (extendedProgressNode.length) { + extendedProgressNode.html( + ($this.data('blueimp-fileupload') || $this.data('fileupload')) + ._renderExtendedProgress(data) + ); + } + globalProgressNode + .find('.progress') + .attr('aria-valuenow', progress) + .children().first().css( + 'width', + progress + '%' + ); + }, + // Callback for uploads start, equivalent to the global ajaxStart event: + start: function (e) { + var that = $(this).data('blueimp-fileupload') || + $(this).data('fileupload'); + that._resetFinishedDeferreds(); + that._transition($(this).find('.fileupload-progress')).done( + function () { + that._trigger('started', e); + } + ); + }, + // Callback for uploads stop, equivalent to the global ajaxStop event: + stop: function (e) { + var that = $(this).data('blueimp-fileupload') || + $(this).data('fileupload'), + deferred = that._addFinishedDeferreds(); + $.when.apply($, that._getFinishedDeferreds()) + .done(function () { + that._trigger('stopped', e); + }); + that._transition($(this).find('.fileupload-progress')).done( + function () { + $(this).find('.progress') + .attr('aria-valuenow', '0') + .children().first().css('width', '0%'); + $(this).find('.progress-extended').html(' '); + deferred.resolve(); + } + ); + }, + processstart: function () { + $(this).addClass('fileupload-processing'); + }, + processstop: function () { + $(this).removeClass('fileupload-processing'); + }, + // Callback for file deletion: + destroy: function (e, data) { + var that = $(this).data('blueimp-fileupload') || + $(this).data('fileupload'), + removeNode = function () { + that._transition(data.context).done( + function () { + $(this).remove(); + that._trigger('destroyed', e, data); + } + ); + }; + if (data.url) { + $.ajax(data).done(removeNode); + } else { + removeNode(); + } + } + }, + + _resetFinishedDeferreds: function () { + this._finishedUploads = []; + }, + + _addFinishedDeferreds: function (deferred) { + if (!deferred) { + deferred = $.Deferred(); + } + this._finishedUploads.push(deferred); + return deferred; + }, + + _getFinishedDeferreds: function () { + return this._finishedUploads; + }, + + // Link handler, that allows to download files + // by drag & drop of the links to the desktop: + _enableDragToDesktop: function () { + var link = $(this), + url = link.prop('href'), + name = link.prop('download'), + type = 'application/octet-stream'; + link.bind('dragstart', function (e) { + try { + e.originalEvent.dataTransfer.setData( + 'DownloadURL', + [type, name, url].join(':') + ); + } catch (ignore) {} + }); + }, + + _formatFileSize: function (bytes) { + if (typeof bytes !== 'number') { + return ''; + } + if (bytes >= 1000000000) { + return (bytes / 1000000000).toFixed(2) + ' GB'; + } + if (bytes >= 1000000) { + return (bytes / 1000000).toFixed(2) + ' MB'; + } + return (bytes / 1000).toFixed(2) + ' KB'; + }, + + _formatBitrate: function (bits) { + if (typeof bits !== 'number') { + return ''; + } + if (bits >= 1000000000) { + return (bits / 1000000000).toFixed(2) + ' Gbit/s'; + } + if (bits >= 1000000) { + return (bits / 1000000).toFixed(2) + ' Mbit/s'; + } + if (bits >= 1000) { + return (bits / 1000).toFixed(2) + ' kbit/s'; + } + return bits.toFixed(2) + ' bit/s'; + }, + + _formatTime: function (seconds) { + var date = new Date(seconds * 1000), + days = Math.floor(seconds / 86400); + days = days ? days + 'd ' : ''; + return days + + ('0' + date.getUTCHours()).slice(-2) + ':' + + ('0' + date.getUTCMinutes()).slice(-2) + ':' + + ('0' + date.getUTCSeconds()).slice(-2); + }, + + _formatPercentage: function (floatValue) { + return (floatValue * 100).toFixed(2) + ' %'; + }, + + _renderExtendedProgress: function (data) { + return this._formatBitrate(data.bitrate) + ' | ' + + this._formatTime( + (data.total - data.loaded) * 8 / data.bitrate + ) + ' | ' + + this._formatPercentage( + data.loaded / data.total + ) + ' | ' + + this._formatFileSize(data.loaded) + ' / ' + + this._formatFileSize(data.total); + }, + + _renderTemplate: function (func, files) { + if (!func) { + return $(); + } + var result = func({ + files: files, + formatFileSize: this._formatFileSize, + options: this.options + }); + if (result instanceof $) { + return result; + } + return $(this.options.templatesContainer).html(result).children(); + }, + + _renderPreviews: function (data) { + data.context.find('.preview').each(function (index, elm) { + $(elm).append(data.files[index].preview); + }); + }, + + _renderUpload: function (files) { + return this._renderTemplate( + this.options.uploadTemplate, + files + ); + }, + + _renderDownload: function (files) { + return this._renderTemplate( + this.options.downloadTemplate, + files + ).find('a[download]').each(this._enableDragToDesktop).end(); + }, + + _startHandler: function (e) { + e.preventDefault(); + var button = $(e.currentTarget), + template = button.closest('.template-upload'), + data = template.data('data'); + if (data && data.submit && !data.jqXHR && data.submit()) { + button.prop('disabled', true); + } + }, + + _cancelHandler: function (e) { + e.preventDefault(); + var template = $(e.currentTarget).closest('.template-upload'), + data = template.data('data') || {}; + if (!data.jqXHR) { + data.errorThrown = 'abort'; + this._trigger('fail', e, data); + } else { + data.jqXHR.abort(); + } + }, + + _deleteHandler: function (e) { + e.preventDefault(); + var button = $(e.currentTarget); + this._trigger('destroy', e, $.extend({ + context: button.closest('.template-download'), + type: 'DELETE' + }, button.data())); + }, + + _forceReflow: function (node) { + return $.support.transition && node.length && + node[0].offsetWidth; + }, + + _transition: function (node) { + var dfd = $.Deferred(); + if ($.support.transition && node.hasClass('fade') && node.is(':visible')) { + node.bind( + $.support.transition.end, + function (e) { + // Make sure we don't respond to other transitions events + // in the container element, e.g. from button elements: + if (e.target === node[0]) { + node.unbind($.support.transition.end); + dfd.resolveWith(node); + } + } + ).toggleClass('in'); + } else { + node.toggleClass('in'); + dfd.resolveWith(node); + } + return dfd; + }, + + _initButtonBarEventHandlers: function () { + var fileUploadButtonBar = this.element.find('.fileupload-buttonbar'), + filesList = this.options.filesContainer; + this._on(fileUploadButtonBar.find('.start'), { + click: function (e) { + e.preventDefault(); + filesList.find('.start').click(); + } + }); + this._on(fileUploadButtonBar.find('.cancel'), { + click: function (e) { + e.preventDefault(); + filesList.find('.cancel').click(); + } + }); + this._on(fileUploadButtonBar.find('.delete'), { + click: function (e) { + e.preventDefault(); + filesList.find('.toggle:checked') + .closest('.template-download') + .find('.delete').click(); + fileUploadButtonBar.find('.toggle') + .prop('checked', false); + } + }); + this._on(fileUploadButtonBar.find('.toggle'), { + change: function (e) { + filesList.find('.toggle').prop( + 'checked', + $(e.currentTarget).is(':checked') + ); + } + }); + }, + + _destroyButtonBarEventHandlers: function () { + this._off( + this.element.find('.fileupload-buttonbar') + .find('.start, .cancel, .delete'), + 'click' + ); + this._off( + this.element.find('.fileupload-buttonbar .toggle'), + 'change.' + ); + }, + + _initEventHandlers: function () { + this._super(); + this._on(this.options.filesContainer, { + 'click .start': this._startHandler, + 'click .cancel': this._cancelHandler, + 'click .delete': this._deleteHandler + }); + this._initButtonBarEventHandlers(); + }, + + _destroyEventHandlers: function () { + this._destroyButtonBarEventHandlers(); + this._off(this.options.filesContainer, 'click'); + this._super(); + }, + + _enableFileInputButton: function () { + this.element.find('.fileinput-button input') + .prop('disabled', false) + .parent().removeClass('disabled'); + }, + + _disableFileInputButton: function () { + this.element.find('.fileinput-button input') + .prop('disabled', true) + .parent().addClass('disabled'); + }, + + _initTemplates: function () { + var options = this.options; + options.templatesContainer = this.document[0].createElement( + options.filesContainer.prop('nodeName') + ); + if (tmpl) { + if (options.uploadTemplateId) { + options.uploadTemplate = tmpl(options.uploadTemplateId); + } + if (options.downloadTemplateId) { + options.downloadTemplate = tmpl(options.downloadTemplateId); + } + } + }, + + _initFilesContainer: function () { + var options = this.options; + if (options.filesContainer === undefined) { + options.filesContainer = this.element.find('.files'); + } else if (!(options.filesContainer instanceof $)) { + options.filesContainer = $(options.filesContainer); + } + }, + + _initSpecialOptions: function () { + this._super(); + this._initFilesContainer(); + this._initTemplates(); + }, + + _create: function () { + this._super(); + this._resetFinishedDeferreds(); + if (!$.support.fileInput) { + this._disableFileInputButton(); + } + }, + + enable: function () { + var wasDisabled = false; + if (this.options.disabled) { + wasDisabled = true; + } + this._super(); + if (wasDisabled) { + this.element.find('input, button').prop('disabled', false); + this._enableFileInputButton(); + } + }, + + disable: function () { + if (!this.options.disabled) { + this.element.find('input, button').prop('disabled', true); + this._disableFileInputButton(); + } + this._super(); + } + + }); + +})); diff --git a/static/file_upload/js/jquery.fileupload-validate.js b/static/file_upload/js/jquery.fileupload-validate.js new file mode 100644 index 00000000..ee1c2f2e --- /dev/null +++ b/static/file_upload/js/jquery.fileupload-validate.js @@ -0,0 +1,117 @@ +/* + * jQuery File Upload Validation Plugin 1.1.1 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, unparam: true, regexp: true */ +/*global define, window */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define([ + 'jquery', + './jquery.fileupload-process' + ], factory); + } else { + // Browser globals: + factory( + window.jQuery + ); + } +}(function ($) { + 'use strict'; + + // Append to the default processQueue: + $.blueimp.fileupload.prototype.options.processQueue.push( + { + action: 'validate', + // Always trigger this action, + // even if the previous action was rejected: + always: true, + // Options taken from the global options map: + acceptFileTypes: '@', + maxFileSize: '@', + minFileSize: '@', + maxNumberOfFiles: '@', + disabled: '@disableValidation' + } + ); + + // The File Upload Validation plugin extends the fileupload widget + // with file validation functionality: + $.widget('blueimp.fileupload', $.blueimp.fileupload, { + + options: { + /* + // The regular expression for allowed file types, matches + // against either file type or file name: + acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i, + // The maximum allowed file size in bytes: + maxFileSize: 10000000, // 10 MB + // The minimum allowed file size in bytes: + minFileSize: undefined, // No minimal file size + // The limit of files to be uploaded: + maxNumberOfFiles: 10, + */ + + // Function returning the current number of files, + // has to be overriden for maxNumberOfFiles validation: + getNumberOfFiles: $.noop, + + // Error and info messages: + messages: { + maxNumberOfFiles: 'Maximum number of files exceeded', + acceptFileTypes: 'File type not allowed', + maxFileSize: 'File is too large', + minFileSize: 'File is too small' + } + }, + + processActions: { + + validate: function (data, options) { + if (options.disabled) { + return data; + } + var dfd = $.Deferred(), + settings = this.options, + file = data.files[data.index]; + if ($.type(options.maxNumberOfFiles) === 'number' && + (settings.getNumberOfFiles() || 0) + data.files.length > + options.maxNumberOfFiles) { + file.error = settings.i18n('maxNumberOfFiles'); + } else if (options.acceptFileTypes && + !(options.acceptFileTypes.test(file.type) || + options.acceptFileTypes.test(file.name))) { + file.error = settings.i18n('acceptFileTypes'); + } else if (options.maxFileSize && file.size > + options.maxFileSize) { + file.error = settings.i18n('maxFileSize'); + } else if ($.type(file.size) === 'number' && + file.size < options.minFileSize) { + file.error = settings.i18n('minFileSize'); + } else { + delete file.error; + } + if (file.error || data.files.error) { + data.files.error = true; + dfd.rejectWith(this, [data]); + } else { + dfd.resolveWith(this, [data]); + } + return dfd.promise(); + } + + } + + }); + +})); diff --git a/static/file_upload/js/jquery.fileupload-video.js b/static/file_upload/js/jquery.fileupload-video.js new file mode 100644 index 00000000..c8b10193 --- /dev/null +++ b/static/file_upload/js/jquery.fileupload-video.js @@ -0,0 +1,106 @@ +/* + * jQuery File Upload Video Preview Plugin 1.0.3 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, unparam: true, regexp: true */ +/*global define, window, document */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define([ + 'jquery', + 'load-image', + './jquery.fileupload-process' + ], factory); + } else { + // Browser globals: + factory( + window.jQuery, + window.loadImage + ); + } +}(function ($, loadImage) { + 'use strict'; + + // Prepend to the default processQueue: + $.blueimp.fileupload.prototype.options.processQueue.unshift( + { + action: 'loadVideo', + // Use the action as prefix for the "@" options: + prefix: true, + fileTypes: '@', + maxFileSize: '@', + disabled: '@disableVideoPreview' + }, + { + action: 'setVideo', + name: '@videoPreviewName', + disabled: '@disableVideoPreview' + } + ); + + // The File Upload Video Preview plugin extends the fileupload widget + // with video preview functionality: + $.widget('blueimp.fileupload', $.blueimp.fileupload, { + + options: { + // The regular expression for the types of video files to load, + // matched against the file type: + loadVideoFileTypes: /^video\/.*$/ + }, + + _videoElement: document.createElement('video'), + + processActions: { + + // Loads the video file given via data.files and data.index + // as video element if the browser supports playing it. + // Accepts the options fileTypes (regular expression) + // and maxFileSize (integer) to limit the files to load: + loadVideo: function (data, options) { + if (options.disabled) { + return data; + } + var file = data.files[data.index], + url, + video; + if (this._videoElement.canPlayType && + this._videoElement.canPlayType(file.type) && + ($.type(options.maxFileSize) !== 'number' || + file.size <= options.maxFileSize) && + (!options.fileTypes || + options.fileTypes.test(file.type))) { + url = loadImage.createObjectURL(file); + if (url) { + video = this._videoElement.cloneNode(false); + video.src = url; + video.controls = true; + data.video = video; + return data; + } + } + return data; + }, + + // Sets the video element as a property of the file object: + setVideo: function (data, options) { + if (data.video && !options.disabled) { + data.files[data.index][options.name || 'preview'] = data.video; + } + return data; + } + + } + + }); + +})); diff --git a/static/file_upload/js/jquery.fileupload.js b/static/file_upload/js/jquery.fileupload.js new file mode 100644 index 00000000..3a1ec705 --- /dev/null +++ b/static/file_upload/js/jquery.fileupload.js @@ -0,0 +1,1336 @@ +/* + * jQuery File Upload Plugin 5.32.2 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2010, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, unparam: true, regexp: true */ +/*global define, window, document, location, File, Blob, FormData */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define([ + 'jquery', + 'jquery.ui.widget' + ], factory); + } else { + // Browser globals: + factory(window.jQuery); + } +}(function ($) { + 'use strict'; + + // Detect file input support, based on + // http://viljamis.com/blog/2012/file-upload-support-on-mobile/ + $.support.fileInput = !(new RegExp( + // Handle devices which give false positives for the feature detection: + '(Android (1\\.[0156]|2\\.[01]))' + + '|(Windows Phone (OS 7|8\\.0))|(XBLWP)|(ZuneWP)|(WPDesktop)' + + '|(w(eb)?OSBrowser)|(webOS)' + + '|(Kindle/(1\\.0|2\\.[05]|3\\.0))' + ).test(window.navigator.userAgent) || + // Feature detection for all other devices: + $('').prop('disabled')); + + // The FileReader API is not actually used, but works as feature detection, + // as e.g. Safari supports XHR file uploads via the FormData API, + // but not non-multipart XHR file uploads: + $.support.xhrFileUpload = !!(window.XMLHttpRequestUpload && window.FileReader); + $.support.xhrFormDataFileUpload = !!window.FormData; + + // Detect support for Blob slicing (required for chunked uploads): + $.support.blobSlice = window.Blob && (Blob.prototype.slice || + Blob.prototype.webkitSlice || Blob.prototype.mozSlice); + + // The fileupload widget listens for change events on file input fields defined + // via fileInput setting and paste or drop events of the given dropZone. + // In addition to the default jQuery Widget methods, the fileupload widget + // exposes the "add" and "send" methods, to add or directly send files using + // the fileupload API. + // By default, files added via file input selection, paste, drag & drop or + // "add" method are uploaded immediately, but it is possible to override + // the "add" callback option to queue file uploads. + $.widget('blueimp.fileupload', { + + options: { + // The drop target element(s), by the default the complete document. + // Set to null to disable drag & drop support: + dropZone: $(document), + // The paste target element(s), by the default the complete document. + // Set to null to disable paste support: + pasteZone: $(document), + // The file input field(s), that are listened to for change events. + // If undefined, it is set to the file input fields inside + // of the widget element on plugin initialization. + // Set to null to disable the change listener. + fileInput: undefined, + // By default, the file input field is replaced with a clone after + // each input field change event. This is required for iframe transport + // queues and allows change events to be fired for the same file + // selection, but can be disabled by setting the following option to false: + replaceFileInput: true, + // The parameter name for the file form data (the request argument name). + // If undefined or empty, the name property of the file input field is + // used, or "files[]" if the file input name property is also empty, + // can be a string or an array of strings: + paramName: undefined, + // By default, each file of a selection is uploaded using an individual + // request for XHR type uploads. Set to false to upload file + // selections in one request each: + singleFileUploads: true, + // To limit the number of files uploaded with one XHR request, + // set the following option to an integer greater than 0: + limitMultiFileUploads: undefined, + // Set the following option to true to issue all file upload requests + // in a sequential order: + sequentialUploads: false, + // To limit the number of concurrent uploads, + // set the following option to an integer greater than 0: + limitConcurrentUploads: undefined, + // Set the following option to true to force iframe transport uploads: + forceIframeTransport: false, + // Set the following option to the location of a redirect url on the + // origin server, for cross-domain iframe transport uploads: + redirect: undefined, + // The parameter name for the redirect url, sent as part of the form + // data and set to 'redirect' if this option is empty: + redirectParamName: undefined, + // Set the following option to the location of a postMessage window, + // to enable postMessage transport uploads: + postMessage: undefined, + // By default, XHR file uploads are sent as multipart/form-data. + // The iframe transport is always using multipart/form-data. + // Set to false to enable non-multipart XHR uploads: + multipart: true, + // To upload large files in smaller chunks, set the following option + // to a preferred maximum chunk size. If set to 0, null or undefined, + // or the browser does not support the required Blob API, files will + // be uploaded as a whole. + maxChunkSize: undefined, + // When a non-multipart upload or a chunked multipart upload has been + // aborted, this option can be used to resume the upload by setting + // it to the size of the already uploaded bytes. This option is most + // useful when modifying the options object inside of the "add" or + // "send" callbacks, as the options are cloned for each file upload. + uploadedBytes: undefined, + // By default, failed (abort or error) file uploads are removed from the + // global progress calculation. Set the following option to false to + // prevent recalculating the global progress data: + recalculateProgress: true, + // Interval in milliseconds to calculate and trigger progress events: + progressInterval: 100, + // Interval in milliseconds to calculate progress bitrate: + bitrateInterval: 500, + // By default, uploads are started automatically when adding files: + autoUpload: true, + + // Error and info messages: + messages: { + uploadedBytes: 'Uploaded bytes exceed file size' + }, + + // Translation function, gets the message key to be translated + // and an object with context specific data as arguments: + i18n: function (message, context) { + message = this.messages[message] || message.toString(); + if (context) { + $.each(context, function (key, value) { + message = message.replace('{' + key + '}', value); + }); + } + return message; + }, + + // Additional form data to be sent along with the file uploads can be set + // using this option, which accepts an array of objects with name and + // value properties, a function returning such an array, a FormData + // object (for XHR file uploads), or a simple object. + // The form of the first fileInput is given as parameter to the function: + formData: function (form) { + return form.serializeArray(); + }, + + // The add callback is invoked as soon as files are added to the fileupload + // widget (via file input selection, drag & drop, paste or add API call). + // If the singleFileUploads option is enabled, this callback will be + // called once for each file in the selection for XHR file uploads, else + // once for each file selection. + // + // The upload starts when the submit method is invoked on the data parameter. + // The data object contains a files property holding the added files + // and allows you to override plugin options as well as define ajax settings. + // + // Listeners for this callback can also be bound the following way: + // .bind('fileuploadadd', func); + // + // data.submit() returns a Promise object and allows to attach additional + // handlers using jQuery's Deferred callbacks: + // data.submit().done(func).fail(func).always(func); + add: function (e, data) { + if (data.autoUpload || (data.autoUpload !== false && + $(this).fileupload('option', 'autoUpload'))) { + data.process().done(function () { + data.submit(); + }); + } + }, + + // Other callbacks: + + // Callback for the submit event of each file upload: + // submit: function (e, data) {}, // .bind('fileuploadsubmit', func); + + // Callback for the start of each file upload request: + // send: function (e, data) {}, // .bind('fileuploadsend', func); + + // Callback for successful uploads: + // done: function (e, data) {}, // .bind('fileuploaddone', func); + + // Callback for failed (abort or error) uploads: + // fail: function (e, data) {}, // .bind('fileuploadfail', func); + + // Callback for completed (success, abort or error) requests: + // always: function (e, data) {}, // .bind('fileuploadalways', func); + + // Callback for upload progress events: + // progress: function (e, data) {}, // .bind('fileuploadprogress', func); + + // Callback for global upload progress events: + // progressall: function (e, data) {}, // .bind('fileuploadprogressall', func); + + // Callback for uploads start, equivalent to the global ajaxStart event: + // start: function (e) {}, // .bind('fileuploadstart', func); + + // Callback for uploads stop, equivalent to the global ajaxStop event: + // stop: function (e) {}, // .bind('fileuploadstop', func); + + // Callback for change events of the fileInput(s): + // change: function (e, data) {}, // .bind('fileuploadchange', func); + + // Callback for paste events to the pasteZone(s): + // paste: function (e, data) {}, // .bind('fileuploadpaste', func); + + // Callback for drop events of the dropZone(s): + // drop: function (e, data) {}, // .bind('fileuploaddrop', func); + + // Callback for dragover events of the dropZone(s): + // dragover: function (e) {}, // .bind('fileuploaddragover', func); + + // Callback for the start of each chunk upload request: + // chunksend: function (e, data) {}, // .bind('fileuploadchunksend', func); + + // Callback for successful chunk uploads: + // chunkdone: function (e, data) {}, // .bind('fileuploadchunkdone', func); + + // Callback for failed (abort or error) chunk uploads: + // chunkfail: function (e, data) {}, // .bind('fileuploadchunkfail', func); + + // Callback for completed (success, abort or error) chunk upload requests: + // chunkalways: function (e, data) {}, // .bind('fileuploadchunkalways', func); + + // The plugin options are used as settings object for the ajax calls. + // The following are jQuery ajax settings required for the file uploads: + processData: false, + contentType: false, + cache: false + }, + + // A list of options that require reinitializing event listeners and/or + // special initialization code: + _specialOptions: [ + 'fileInput', + 'dropZone', + 'pasteZone', + 'multipart', + 'forceIframeTransport' + ], + + _blobSlice: $.support.blobSlice && function () { + var slice = this.slice || this.webkitSlice || this.mozSlice; + return slice.apply(this, arguments); + }, + + _BitrateTimer: function () { + this.timestamp = ((Date.now) ? Date.now() : (new Date()).getTime()); + this.loaded = 0; + this.bitrate = 0; + this.getBitrate = function (now, loaded, interval) { + var timeDiff = now - this.timestamp; + if (!this.bitrate || !interval || timeDiff > interval) { + this.bitrate = (loaded - this.loaded) * (1000 / timeDiff) * 8; + this.loaded = loaded; + this.timestamp = now; + } + return this.bitrate; + }; + }, + + _isXHRUpload: function (options) { + return !options.forceIframeTransport && + ((!options.multipart && $.support.xhrFileUpload) || + $.support.xhrFormDataFileUpload); + }, + + _getFormData: function (options) { + var formData; + if (typeof options.formData === 'function') { + return options.formData(options.form); + } + if ($.isArray(options.formData)) { + return options.formData; + } + if ($.type(options.formData) === 'object') { + formData = []; + $.each(options.formData, function (name, value) { + formData.push({name: name, value: value}); + }); + return formData; + } + return []; + }, + + _getTotal: function (files) { + var total = 0; + $.each(files, function (index, file) { + total += file.size || 1; + }); + return total; + }, + + _initProgressObject: function (obj) { + var progress = { + loaded: 0, + total: 0, + bitrate: 0 + }; + if (obj._progress) { + $.extend(obj._progress, progress); + } else { + obj._progress = progress; + } + }, + + _initResponseObject: function (obj) { + var prop; + if (obj._response) { + for (prop in obj._response) { + if (obj._response.hasOwnProperty(prop)) { + delete obj._response[prop]; + } + } + } else { + obj._response = {}; + } + }, + + _onProgress: function (e, data) { + if (e.lengthComputable) { + var now = ((Date.now) ? Date.now() : (new Date()).getTime()), + loaded; + if (data._time && data.progressInterval && + (now - data._time < data.progressInterval) && + e.loaded !== e.total) { + return; + } + data._time = now; + loaded = Math.floor( + e.loaded / e.total * (data.chunkSize || data._progress.total) + ) + (data.uploadedBytes || 0); + // Add the difference from the previously loaded state + // to the global loaded counter: + this._progress.loaded += (loaded - data._progress.loaded); + this._progress.bitrate = this._bitrateTimer.getBitrate( + now, + this._progress.loaded, + data.bitrateInterval + ); + data._progress.loaded = data.loaded = loaded; + data._progress.bitrate = data.bitrate = data._bitrateTimer.getBitrate( + now, + loaded, + data.bitrateInterval + ); + // Trigger a custom progress event with a total data property set + // to the file size(s) of the current upload and a loaded data + // property calculated accordingly: + this._trigger('progress', e, data); + // Trigger a global progress event for all current file uploads, + // including ajax calls queued for sequential file uploads: + this._trigger('progressall', e, this._progress); + } + }, + + _initProgressListener: function (options) { + var that = this, + xhr = options.xhr ? options.xhr() : $.ajaxSettings.xhr(); + // Accesss to the native XHR object is required to add event listeners + // for the upload progress event: + if (xhr.upload) { + $(xhr.upload).bind('progress', function (e) { + var oe = e.originalEvent; + // Make sure the progress event properties get copied over: + e.lengthComputable = oe.lengthComputable; + e.loaded = oe.loaded; + e.total = oe.total; + that._onProgress(e, options); + }); + options.xhr = function () { + return xhr; + }; + } + }, + + _isInstanceOf: function (type, obj) { + // Cross-frame instanceof check + return Object.prototype.toString.call(obj) === '[object ' + type + ']'; + }, + + _initXHRData: function (options) { + var that = this, + formData, + file = options.files[0], + // Ignore non-multipart setting if not supported: + multipart = options.multipart || !$.support.xhrFileUpload, + paramName = options.paramName[0]; + options.headers = options.headers || {}; + if (options.contentRange) { + options.headers['Content-Range'] = options.contentRange; + } + if (!multipart || options.blob || !this._isInstanceOf('File', file)) { + options.headers['Content-Disposition'] = 'attachment; filename="' + + encodeURI(file.name) + '"'; + } + if (!multipart) { + options.contentType = file.type; + options.data = options.blob || file; + } else if ($.support.xhrFormDataFileUpload) { + if (options.postMessage) { + // window.postMessage does not allow sending FormData + // objects, so we just add the File/Blob objects to + // the formData array and let the postMessage window + // create the FormData object out of this array: + formData = this._getFormData(options); + if (options.blob) { + formData.push({ + name: paramName, + value: options.blob + }); + } else { + $.each(options.files, function (index, file) { + formData.push({ + name: options.paramName[index] || paramName, + value: file + }); + }); + } + } else { + if (that._isInstanceOf('FormData', options.formData)) { + formData = options.formData; + } else { + formData = new FormData(); + $.each(this._getFormData(options), function (index, field) { + formData.append(field.name, field.value); + }); + } + if (options.blob) { + formData.append(paramName, options.blob, file.name); + } else { + $.each(options.files, function (index, file) { + // This check allows the tests to run with + // dummy objects: + if (that._isInstanceOf('File', file) || + that._isInstanceOf('Blob', file)) { + formData.append( + options.paramName[index] || paramName, + file, + file.name + ); + } + }); + } + } + options.data = formData; + } + // Blob reference is not needed anymore, free memory: + options.blob = null; + }, + + _initIframeSettings: function (options) { + var targetHost = $('').prop('href', options.url).prop('host'); + // Setting the dataType to iframe enables the iframe transport: + options.dataType = 'iframe ' + (options.dataType || ''); + // The iframe transport accepts a serialized array as form data: + options.formData = this._getFormData(options); + // Add redirect url to form data on cross-domain uploads: + if (options.redirect && targetHost && targetHost !== location.host) { + options.formData.push({ + name: options.redirectParamName || 'redirect', + value: options.redirect + }); + } + }, + + _initDataSettings: function (options) { + if (this._isXHRUpload(options)) { + if (!this._chunkedUpload(options, true)) { + if (!options.data) { + this._initXHRData(options); + } + this._initProgressListener(options); + } + if (options.postMessage) { + // Setting the dataType to postmessage enables the + // postMessage transport: + options.dataType = 'postmessage ' + (options.dataType || ''); + } + } else { + this._initIframeSettings(options); + } + }, + + _getParamName: function (options) { + var fileInput = $(options.fileInput), + paramName = options.paramName; + if (!paramName) { + paramName = []; + fileInput.each(function () { + var input = $(this), + name = input.prop('name') || 'file', + i = (input.prop('files') || [1]).length; + while (i) { + paramName.push(name); + i -= 1; + } + }); + if (!paramName.length) { + paramName = [fileInput.prop('name') || 'file']; + } + } else if (!$.isArray(paramName)) { + paramName = [paramName]; + } + return paramName; + }, + + _initFormSettings: function (options) { + // Retrieve missing options from the input field and the + // associated form, if available: + if (!options.form || !options.form.length) { + options.form = $(options.fileInput.prop('form')); + // If the given file input doesn't have an associated form, + // use the default widget file input's form: + if (!options.form.length) { + options.form = $(this.options.fileInput.prop('form')); + } + } + options.paramName = this._getParamName(options); + if (!options.url) { + options.url = options.form.prop('action') || location.href; + } + // The HTTP request method must be "POST" or "PUT": + options.type = (options.type || options.form.prop('method') || '') + .toUpperCase(); + if (options.type !== 'POST' && options.type !== 'PUT' && + options.type !== 'PATCH') { + options.type = 'POST'; + } + if (!options.formAcceptCharset) { + options.formAcceptCharset = options.form.attr('accept-charset'); + } + }, + + _getAJAXSettings: function (data) { + var options = $.extend({}, this.options, data); + this._initFormSettings(options); + this._initDataSettings(options); + return options; + }, + + // jQuery 1.6 doesn't provide .state(), + // while jQuery 1.8+ removed .isRejected() and .isResolved(): + _getDeferredState: function (deferred) { + if (deferred.state) { + return deferred.state(); + } + if (deferred.isResolved()) { + return 'resolved'; + } + if (deferred.isRejected()) { + return 'rejected'; + } + return 'pending'; + }, + + // Maps jqXHR callbacks to the equivalent + // methods of the given Promise object: + _enhancePromise: function (promise) { + promise.success = promise.done; + promise.error = promise.fail; + promise.complete = promise.always; + return promise; + }, + + // Creates and returns a Promise object enhanced with + // the jqXHR methods abort, success, error and complete: + _getXHRPromise: function (resolveOrReject, context, args) { + var dfd = $.Deferred(), + promise = dfd.promise(); + context = context || this.options.context || promise; + if (resolveOrReject === true) { + dfd.resolveWith(context, args); + } else if (resolveOrReject === false) { + dfd.rejectWith(context, args); + } + promise.abort = dfd.promise; + return this._enhancePromise(promise); + }, + + // Adds convenience methods to the data callback argument: + _addConvenienceMethods: function (e, data) { + var that = this, + getPromise = function (data) { + return $.Deferred().resolveWith(that, [data]).promise(); + }; + data.process = function (resolveFunc, rejectFunc) { + if (resolveFunc || rejectFunc) { + data._processQueue = this._processQueue = + (this._processQueue || getPromise(this)) + .pipe(resolveFunc, rejectFunc); + } + return this._processQueue || getPromise(this); + }; + data.submit = function () { + if (this.state() !== 'pending') { + data.jqXHR = this.jqXHR = + (that._trigger('submit', e, this) !== false) && + that._onSend(e, this); + } + return this.jqXHR || that._getXHRPromise(); + }; + data.abort = function () { + if (this.jqXHR) { + return this.jqXHR.abort(); + } + return that._getXHRPromise(); + }; + data.state = function () { + if (this.jqXHR) { + return that._getDeferredState(this.jqXHR); + } + if (this._processQueue) { + return that._getDeferredState(this._processQueue); + } + }; + data.progress = function () { + return this._progress; + }; + data.response = function () { + return this._response; + }; + }, + + // Parses the Range header from the server response + // and returns the uploaded bytes: + _getUploadedBytes: function (jqXHR) { + var range = jqXHR.getResponseHeader('Range'), + parts = range && range.split('-'), + upperBytesPos = parts && parts.length > 1 && + parseInt(parts[1], 10); + return upperBytesPos && upperBytesPos + 1; + }, + + // Uploads a file in multiple, sequential requests + // by splitting the file up in multiple blob chunks. + // If the second parameter is true, only tests if the file + // should be uploaded in chunks, but does not invoke any + // upload requests: + _chunkedUpload: function (options, testOnly) { + options.uploadedBytes = options.uploadedBytes || 0; + var that = this, + file = options.files[0], + fs = file.size, + ub = options.uploadedBytes, + mcs = options.maxChunkSize || fs, + slice = this._blobSlice, + dfd = $.Deferred(), + promise = dfd.promise(), + jqXHR, + upload; + if (!(this._isXHRUpload(options) && slice && (ub || mcs < fs)) || + options.data) { + return false; + } + if (testOnly) { + return true; + } + if (ub >= fs) { + file.error = options.i18n('uploadedBytes'); + return this._getXHRPromise( + false, + options.context, + [null, 'error', file.error] + ); + } + // The chunk upload method: + upload = function () { + // Clone the options object for each chunk upload: + var o = $.extend({}, options), + currentLoaded = o._progress.loaded; + o.blob = slice.call( + file, + ub, + ub + mcs, + file.type + ); + // Store the current chunk size, as the blob itself + // will be dereferenced after data processing: + o.chunkSize = o.blob.size; + // Expose the chunk bytes position range: + o.contentRange = 'bytes ' + ub + '-' + + (ub + o.chunkSize - 1) + '/' + fs; + // Process the upload data (the blob and potential form data): + that._initXHRData(o); + // Add progress listeners for this chunk upload: + that._initProgressListener(o); + jqXHR = ((that._trigger('chunksend', null, o) !== false && $.ajax(o)) || + that._getXHRPromise(false, o.context)) + .done(function (result, textStatus, jqXHR) { + ub = that._getUploadedBytes(jqXHR) || + (ub + o.chunkSize); + // Create a progress event if no final progress event + // with loaded equaling total has been triggered + // for this chunk: + if (currentLoaded + o.chunkSize - o._progress.loaded) { + that._onProgress($.Event('progress', { + lengthComputable: true, + loaded: ub - o.uploadedBytes, + total: ub - o.uploadedBytes + }), o); + } + options.uploadedBytes = o.uploadedBytes = ub; + o.result = result; + o.textStatus = textStatus; + o.jqXHR = jqXHR; + that._trigger('chunkdone', null, o); + that._trigger('chunkalways', null, o); + if (ub < fs) { + // File upload not yet complete, + // continue with the next chunk: + upload(); + } else { + dfd.resolveWith( + o.context, + [result, textStatus, jqXHR] + ); + } + }) + .fail(function (jqXHR, textStatus, errorThrown) { + o.jqXHR = jqXHR; + o.textStatus = textStatus; + o.errorThrown = errorThrown; + that._trigger('chunkfail', null, o); + that._trigger('chunkalways', null, o); + dfd.rejectWith( + o.context, + [jqXHR, textStatus, errorThrown] + ); + }); + }; + this._enhancePromise(promise); + promise.abort = function () { + return jqXHR.abort(); + }; + upload(); + return promise; + }, + + _beforeSend: function (e, data) { + if (this._active === 0) { + // the start callback is triggered when an upload starts + // and no other uploads are currently running, + // equivalent to the global ajaxStart event: + this._trigger('start'); + // Set timer for global bitrate progress calculation: + this._bitrateTimer = new this._BitrateTimer(); + // Reset the global progress values: + this._progress.loaded = this._progress.total = 0; + this._progress.bitrate = 0; + } + // Make sure the container objects for the .response() and + // .progress() methods on the data object are available + // and reset to their initial state: + this._initResponseObject(data); + this._initProgressObject(data); + data._progress.loaded = data.loaded = data.uploadedBytes || 0; + data._progress.total = data.total = this._getTotal(data.files) || 1; + data._progress.bitrate = data.bitrate = 0; + this._active += 1; + // Initialize the global progress values: + this._progress.loaded += data.loaded; + this._progress.total += data.total; + }, + + _onDone: function (result, textStatus, jqXHR, options) { + var total = options._progress.total, + response = options._response; + if (options._progress.loaded < total) { + // Create a progress event if no final progress event + // with loaded equaling total has been triggered: + this._onProgress($.Event('progress', { + lengthComputable: true, + loaded: total, + total: total + }), options); + } + response.result = options.result = result; + response.textStatus = options.textStatus = textStatus; + response.jqXHR = options.jqXHR = jqXHR; + this._trigger('done', null, options); + }, + + _onFail: function (jqXHR, textStatus, errorThrown, options) { + var response = options._response; + if (options.recalculateProgress) { + // Remove the failed (error or abort) file upload from + // the global progress calculation: + this._progress.loaded -= options._progress.loaded; + this._progress.total -= options._progress.total; + } + response.jqXHR = options.jqXHR = jqXHR; + response.textStatus = options.textStatus = textStatus; + response.errorThrown = options.errorThrown = errorThrown; + if ('file' in response.jqXHR.responseJSON) { + response.errorThrown = options.errorThrown = response.jqXHR.responseJSON.file.join(", "); + } + this._trigger('fail', null, options); + }, + + _onAlways: function (jqXHRorResult, textStatus, jqXHRorError, options) { + // jqXHRorResult, textStatus and jqXHRorError are added to the + // options object via done and fail callbacks + this._trigger('always', null, options); + }, + + _onSend: function (e, data) { + if (!data.submit) { + this._addConvenienceMethods(e, data); + } + var that = this, + jqXHR, + aborted, + slot, + pipe, + options = that._getAJAXSettings(data), + send = function () { + that._sending += 1; + // Set timer for bitrate progress calculation: + options._bitrateTimer = new that._BitrateTimer(); + jqXHR = jqXHR || ( + ((aborted || that._trigger('send', e, options) === false) && + that._getXHRPromise(false, options.context, aborted)) || + that._chunkedUpload(options) || $.ajax(options) + ).done(function (result, textStatus, jqXHR) { + that._onDone(result, textStatus, jqXHR, options); + }).fail(function (jqXHR, textStatus, errorThrown) { + that._onFail(jqXHR, textStatus, errorThrown, options); + }).always(function (jqXHRorResult, textStatus, jqXHRorError) { + that._onAlways( + jqXHRorResult, + textStatus, + jqXHRorError, + options + ); + that._sending -= 1; + that._active -= 1; + if (options.limitConcurrentUploads && + options.limitConcurrentUploads > that._sending) { + // Start the next queued upload, + // that has not been aborted: + var nextSlot = that._slots.shift(); + while (nextSlot) { + if (that._getDeferredState(nextSlot) === 'pending') { + nextSlot.resolve(); + break; + } + nextSlot = that._slots.shift(); + } + } + if (that._active === 0) { + // The stop callback is triggered when all uploads have + // been completed, equivalent to the global ajaxStop event: + that._trigger('stop'); + } + }); + return jqXHR; + }; + this._beforeSend(e, options); + if (this.options.sequentialUploads || + (this.options.limitConcurrentUploads && + this.options.limitConcurrentUploads <= this._sending)) { + if (this.options.limitConcurrentUploads > 1) { + slot = $.Deferred(); + this._slots.push(slot); + pipe = slot.pipe(send); + } else { + this._sequence = this._sequence.pipe(send, send); + pipe = this._sequence; + } + // Return the piped Promise object, enhanced with an abort method, + // which is delegated to the jqXHR object of the current upload, + // and jqXHR callbacks mapped to the equivalent Promise methods: + pipe.abort = function () { + aborted = [undefined, 'abort', 'abort']; + if (!jqXHR) { + if (slot) { + slot.rejectWith(options.context, aborted); + } + return send(); + } + return jqXHR.abort(); + }; + return this._enhancePromise(pipe); + } + return send(); + }, + + _onAdd: function (e, data) { + var that = this, + result = true, + options = $.extend({}, this.options, data), + limit = options.limitMultiFileUploads, + paramName = this._getParamName(options), + paramNameSet, + paramNameSlice, + fileSet, + i; + if (!(options.singleFileUploads || limit) || + !this._isXHRUpload(options)) { + fileSet = [data.files]; + paramNameSet = [paramName]; + } else if (!options.singleFileUploads && limit) { + fileSet = []; + paramNameSet = []; + for (i = 0; i < data.files.length; i += limit) { + fileSet.push(data.files.slice(i, i + limit)); + paramNameSlice = paramName.slice(i, i + limit); + if (!paramNameSlice.length) { + paramNameSlice = paramName; + } + paramNameSet.push(paramNameSlice); + } + } else { + paramNameSet = paramName; + } + data.originalFiles = data.files; + $.each(fileSet || data.files, function (index, element) { + var newData = $.extend({}, data); + newData.files = fileSet ? element : [element]; + newData.paramName = paramNameSet[index]; + that._initResponseObject(newData); + that._initProgressObject(newData); + that._addConvenienceMethods(e, newData); + result = that._trigger('add', e, newData); + return result; + }); + return result; + }, + + _replaceFileInput: function (input) { + var inputClone = input.clone(true); + $('
').append(inputClone)[0].reset(); + // Detaching allows to insert the fileInput on another form + // without loosing the file input value: + input.after(inputClone).detach(); + // Avoid memory leaks with the detached file input: + $.cleanData(input.unbind('remove')); + // Replace the original file input element in the fileInput + // elements set with the clone, which has been copied including + // event handlers: + this.options.fileInput = this.options.fileInput.map(function (i, el) { + if (el === input[0]) { + return inputClone[0]; + } + return el; + }); + // If the widget has been initialized on the file input itself, + // override this.element with the file input clone: + if (input[0] === this.element[0]) { + this.element = inputClone; + } + }, + + _handleFileTreeEntry: function (entry, path) { + var that = this, + dfd = $.Deferred(), + errorHandler = function (e) { + if (e && !e.entry) { + e.entry = entry; + } + // Since $.when returns immediately if one + // Deferred is rejected, we use resolve instead. + // This allows valid files and invalid items + // to be returned together in one set: + dfd.resolve([e]); + }, + dirReader; + path = path || ''; + if (entry.isFile) { + if (entry._file) { + // Workaround for Chrome bug #149735 + entry._file.relativePath = path; + dfd.resolve(entry._file); + } else { + entry.file(function (file) { + file.relativePath = path; + dfd.resolve(file); + }, errorHandler); + } + } else if (entry.isDirectory) { + dirReader = entry.createReader(); + dirReader.readEntries(function (entries) { + that._handleFileTreeEntries( + entries, + path + entry.name + '/' + ).done(function (files) { + dfd.resolve(files); + }).fail(errorHandler); + }, errorHandler); + } else { + // Return an empy list for file system items + // other than files or directories: + dfd.resolve([]); + } + return dfd.promise(); + }, + + _handleFileTreeEntries: function (entries, path) { + var that = this; + return $.when.apply( + $, + $.map(entries, function (entry) { + return that._handleFileTreeEntry(entry, path); + }) + ).pipe(function () { + return Array.prototype.concat.apply( + [], + arguments + ); + }); + }, + + _getDroppedFiles: function (dataTransfer) { + dataTransfer = dataTransfer || {}; + var items = dataTransfer.items; + if (items && items.length && (items[0].webkitGetAsEntry || + items[0].getAsEntry)) { + return this._handleFileTreeEntries( + $.map(items, function (item) { + var entry; + if (item.webkitGetAsEntry) { + entry = item.webkitGetAsEntry(); + if (entry) { + // Workaround for Chrome bug #149735: + entry._file = item.getAsFile(); + } + return entry; + } + return item.getAsEntry(); + }) + ); + } + return $.Deferred().resolve( + $.makeArray(dataTransfer.files) + ).promise(); + }, + + _getSingleFileInputFiles: function (fileInput) { + fileInput = $(fileInput); + var entries = fileInput.prop('webkitEntries') || + fileInput.prop('entries'), + files, + value; + if (entries && entries.length) { + return this._handleFileTreeEntries(entries); + } + files = $.makeArray(fileInput.prop('files')); + if (!files.length) { + value = fileInput.prop('value'); + if (!value) { + return $.Deferred().resolve([]).promise(); + } + // If the files property is not available, the browser does not + // support the File API and we add a pseudo File object with + // the input value as name with path information removed: + files = [{name: value.replace(/^.*\\/, '')}]; + } else if (files[0].name === undefined && files[0].fileName) { + // File normalization for Safari 4 and Firefox 3: + $.each(files, function (index, file) { + file.name = file.fileName; + file.size = file.fileSize; + }); + } + return $.Deferred().resolve(files).promise(); + }, + + _getFileInputFiles: function (fileInput) { + if (!(fileInput instanceof $) || fileInput.length === 1) { + return this._getSingleFileInputFiles(fileInput); + } + return $.when.apply( + $, + $.map(fileInput, this._getSingleFileInputFiles) + ).pipe(function () { + return Array.prototype.concat.apply( + [], + arguments + ); + }); + }, + + _onChange: function (e) { + var that = this, + data = { + fileInput: $(e.target), + form: $(e.target.form) + }; + this._getFileInputFiles(data.fileInput).always(function (files) { + data.files = files; + if (that.options.replaceFileInput) { + that._replaceFileInput(data.fileInput); + } + if (that._trigger('change', e, data) !== false) { + that._onAdd(e, data); + } + }); + }, + + _onPaste: function (e) { + var items = e.originalEvent && e.originalEvent.clipboardData && + e.originalEvent.clipboardData.items, + data = {files: []}; + if (items && items.length) { + $.each(items, function (index, item) { + var file = item.getAsFile && item.getAsFile(); + if (file) { + data.files.push(file); + } + }); + if (this._trigger('paste', e, data) === false || + this._onAdd(e, data) === false) { + return false; + } + } + }, + + _onDrop: function (e) { + e.dataTransfer = e.originalEvent && e.originalEvent.dataTransfer; + var that = this, + dataTransfer = e.dataTransfer, + data = {}; + if (dataTransfer && dataTransfer.files && dataTransfer.files.length) { + e.preventDefault(); + this._getDroppedFiles(dataTransfer).always(function (files) { + data.files = files; + if (that._trigger('drop', e, data) !== false) { + that._onAdd(e, data); + } + }); + } + }, + + _onDragOver: function (e) { + e.dataTransfer = e.originalEvent && e.originalEvent.dataTransfer; + var dataTransfer = e.dataTransfer; + if (dataTransfer) { + if (this._trigger('dragover', e) === false) { + return false; + } + if ($.inArray('Files', dataTransfer.types) !== -1) { + dataTransfer.dropEffect = 'copy'; + e.preventDefault(); + } + } + }, + + _initEventHandlers: function () { + if (this._isXHRUpload(this.options)) { + this._on(this.options.dropZone, { + dragover: this._onDragOver, + drop: this._onDrop + }); + this._on(this.options.pasteZone, { + paste: this._onPaste + }); + } + if ($.support.fileInput) { + this._on(this.options.fileInput, { + change: this._onChange + }); + } + }, + + _destroyEventHandlers: function () { + this._off(this.options.dropZone, 'dragover drop'); + this._off(this.options.pasteZone, 'paste'); + this._off(this.options.fileInput, 'change'); + }, + + _setOption: function (key, value) { + var reinit = $.inArray(key, this._specialOptions) !== -1; + if (reinit) { + this._destroyEventHandlers(); + } + this._super(key, value); + if (reinit) { + this._initSpecialOptions(); + this._initEventHandlers(); + } + }, + + _initSpecialOptions: function () { + var options = this.options; + if (options.fileInput === undefined) { + options.fileInput = this.element.is('input[type="file"]') ? + this.element : this.element.find('input[type="file"]'); + } else if (!(options.fileInput instanceof $)) { + options.fileInput = $(options.fileInput); + } + if (!(options.dropZone instanceof $)) { + options.dropZone = $(options.dropZone); + } + if (!(options.pasteZone instanceof $)) { + options.pasteZone = $(options.pasteZone); + } + }, + + _getRegExp: function (str) { + var parts = str.split('/'), + modifiers = parts.pop(); + parts.shift(); + return new RegExp(parts.join('/'), modifiers); + }, + + _isRegExpOption: function (key, value) { + return key !== 'url' && $.type(value) === 'string' && + /^\/.*\/[igm]{0,3}$/.test(value); + }, + + _initDataAttributes: function () { + var that = this, + options = this.options; + // Initialize options set via HTML5 data-attributes: + $.each( + $(this.element[0].cloneNode(false)).data(), + function (key, value) { + if (that._isRegExpOption(key, value)) { + value = that._getRegExp(value); + } + options[key] = value; + } + ); + }, + + _create: function () { + this._initDataAttributes(); + this._initSpecialOptions(); + this._slots = []; + this._sequence = this._getXHRPromise(true); + this._sending = this._active = 0; + this._initProgressObject(this); + this._initEventHandlers(); + }, + + // This method is exposed to the widget API and allows to query + // the number of active uploads: + active: function () { + return this._active; + }, + + // This method is exposed to the widget API and allows to query + // the widget upload progress. + // It returns an object with loaded, total and bitrate properties + // for the running uploads: + progress: function () { + return this._progress; + }, + + // This method is exposed to the widget API and allows adding files + // using the fileupload API. The data parameter accepts an object which + // must have a files property and can contain additional options: + // .fileupload('add', {files: filesList}); + add: function (data) { + var that = this; + if (!data || this.options.disabled) { + return; + } + if (data.fileInput && !data.files) { + this._getFileInputFiles(data.fileInput).always(function (files) { + data.files = files; + that._onAdd(null, data); + }); + } else { + data.files = $.makeArray(data.files); + this._onAdd(null, data); + } + }, + + // This method is exposed to the widget API and allows sending files + // using the fileupload API. The data parameter accepts an object which + // must have a files or fileInput property and can contain additional options: + // .fileupload('send', {files: filesList}); + // The method returns a Promise object for the file upload call. + send: function (data) { + if (data && !this.options.disabled) { + if (data.fileInput && !data.files) { + var that = this, + dfd = $.Deferred(), + promise = dfd.promise(), + jqXHR, + aborted; + promise.abort = function () { + aborted = true; + if (jqXHR) { + return jqXHR.abort(); + } + dfd.reject(null, 'abort', 'abort'); + return promise; + }; + this._getFileInputFiles(data.fileInput).always( + function (files) { + if (aborted) { + return; + } + if (!files.length) { + dfd.reject(); + return; + } + data.files = files; + jqXHR = that._onSend(null, data).then( + function (result, textStatus, jqXHR) { + dfd.resolve(result, textStatus, jqXHR); + }, + function (jqXHR, textStatus, errorThrown) { + dfd.reject(jqXHR, textStatus, errorThrown); + } + ); + } + ); + return this._enhancePromise(promise); + } + data.files = $.makeArray(data.files); + if (data.files.length) { + return this._onSend(null, data); + } + } + return this._getXHRPromise(false, data && data.context); + } + + }); + +})); diff --git a/static/file_upload/js/jquery.iframe-transport.js b/static/file_upload/js/jquery.iframe-transport.js new file mode 100644 index 00000000..073c5fbe --- /dev/null +++ b/static/file_upload/js/jquery.iframe-transport.js @@ -0,0 +1,205 @@ +/* + * jQuery Iframe Transport Plugin 1.7 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2011, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint unparam: true, nomen: true */ +/*global define, window, document */ + +(function (factory) { + 'use strict'; + if (typeof define === 'function' && define.amd) { + // Register as an anonymous AMD module: + define(['jquery'], factory); + } else { + // Browser globals: + factory(window.jQuery); + } +}(function ($) { + 'use strict'; + + // Helper variable to create unique names for the transport iframes: + var counter = 0; + + // The iframe transport accepts three additional options: + // options.fileInput: a jQuery collection of file input fields + // options.paramName: the parameter name for the file form data, + // overrides the name property of the file input field(s), + // can be a string or an array of strings. + // options.formData: an array of objects with name and value properties, + // equivalent to the return data of .serializeArray(), e.g.: + // [{name: 'a', value: 1}, {name: 'b', value: 2}] + $.ajaxTransport('iframe', function (options) { + if (options.async) { + var form, + iframe, + addParamChar; + return { + send: function (_, completeCallback) { + form = $('
'); + form.attr('accept-charset', options.formAcceptCharset); + addParamChar = /\?/.test(options.url) ? '&' : '?'; + // XDomainRequest only supports GET and POST: + if (options.type === 'DELETE') { + options.url = options.url + addParamChar + '_method=DELETE'; + options.type = 'POST'; + } else if (options.type === 'PUT') { + options.url = options.url + addParamChar + '_method=PUT'; + options.type = 'POST'; + } else if (options.type === 'PATCH') { + options.url = options.url + addParamChar + '_method=PATCH'; + options.type = 'POST'; + } + // javascript:false as initial iframe src + // prevents warning popups on HTTPS in IE6. + // IE versions below IE8 cannot set the name property of + // elements that have already been added to the DOM, + // so we set the name along with the iframe HTML markup: + counter += 1; + iframe = $( + '' + ).bind('load', function () { + var fileInputClones, + paramNames = $.isArray(options.paramName) ? + options.paramName : [options.paramName]; + iframe + .unbind('load') + .bind('load', function () { + var response; + // Wrap in a try/catch block to catch exceptions thrown + // when trying to access cross-domain iframe contents: + try { + response = iframe.contents(); + // Google Chrome and Firefox do not throw an + // exception when calling iframe.contents() on + // cross-domain requests, so we unify the response: + if (!response.length || !response[0].firstChild) { + throw new Error(); + } + } catch (e) { + response = undefined; + } + // The complete callback returns the + // iframe content document as response object: + completeCallback( + 200, + 'success', + {'iframe': response} + ); + // Fix for IE endless progress bar activity bug + // (happens on form submits to iframe targets): + $('') + .appendTo(form); + window.setTimeout(function () { + // Removing the form in a setTimeout call + // allows Chrome's developer tools to display + // the response result + form.remove(); + }, 0); + }); + form + .prop('target', iframe.prop('name')) + .prop('action', options.url) + .prop('method', options.type); + if (options.formData) { + $.each(options.formData, function (index, field) { + $('') + .prop('name', field.name) + .val(field.value) + .appendTo(form); + }); + } + if (options.fileInput && options.fileInput.length && + options.type === 'POST') { + fileInputClones = options.fileInput.clone(); + // Insert a clone for each file input field: + options.fileInput.after(function (index) { + return fileInputClones[index]; + }); + if (options.paramName) { + options.fileInput.each(function (index) { + $(this).prop( + 'name', + paramNames[index] || options.paramName + ); + }); + } + // Appending the file input fields to the hidden form + // removes them from their original location: + form + .append(options.fileInput) + .prop('enctype', 'multipart/form-data') + // enctype must be set as encoding for IE: + .prop('encoding', 'multipart/form-data'); + } + form.submit(); + // Insert the file input fields at their original location + // by replacing the clones with the originals: + if (fileInputClones && fileInputClones.length) { + options.fileInput.each(function (index, input) { + var clone = $(fileInputClones[index]); + $(input).prop('name', clone.prop('name')); + clone.replaceWith(input); + }); + } + }); + form.append(iframe).appendTo(document.body); + }, + abort: function () { + if (iframe) { + // javascript:false as iframe src aborts the request + // and prevents warning popups on HTTPS in IE6. + // concat is used to avoid the "Script URL" JSLint error: + iframe + .unbind('load') + .prop('src', 'javascript'.concat(':false;')); + } + if (form) { + form.remove(); + } + } + }; + } + }); + + // The iframe transport returns the iframe content document as response. + // The following adds converters from iframe to text, json, html, xml + // and script. + // Please note that the Content-Type for JSON responses has to be text/plain + // or text/html, if the browser doesn't include application/json in the + // Accept header, else IE will show a download dialog. + // The Content-Type for XML responses on the other hand has to be always + // application/xml or text/xml, so IE properly parses the XML response. + // See also + // https://github.com/blueimp/jQuery-File-Upload/wiki/Setup#content-type-negotiation + $.ajaxSetup({ + converters: { + 'iframe text': function (iframe) { + return iframe && $(iframe[0].body).text(); + }, + 'iframe json': function (iframe) { + return iframe && $.parseJSON($(iframe[0].body).text()); + }, + 'iframe html': function (iframe) { + return iframe && $(iframe[0].body).html(); + }, + 'iframe xml': function (iframe) { + var xmlDoc = iframe && iframe[0]; + return xmlDoc && $.isXMLDoc(xmlDoc) ? xmlDoc : + $.parseXML((xmlDoc.XMLDocument && xmlDoc.XMLDocument.xml) || + $(xmlDoc.body).html()); + }, + 'iframe script': function (iframe) { + return iframe && $.globalEval($(iframe[0].body).text()); + } + } + }); + +})); diff --git a/static/file_upload/js/jquery.ui.widget.js b/static/file_upload/js/jquery.ui.widget.js new file mode 100644 index 00000000..9da8673a --- /dev/null +++ b/static/file_upload/js/jquery.ui.widget.js @@ -0,0 +1,282 @@ +/* + * jQuery UI Widget 1.8.18+amd + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) + * Dual licensed under the MIT or GPL Version 2 licenses. + * http://jquery.org/license + * + * http://docs.jquery.com/UI/Widget + */ + +(function (factory) { + if (typeof define === "function" && define.amd) { + // Register as an anonymous AMD module: + define(["jquery"], factory); + } else { + // Browser globals: + factory(jQuery); + } +}(function( $, undefined ) { + +// jQuery 1.4+ +if ( $.cleanData ) { + var _cleanData = $.cleanData; + $.cleanData = function( elems ) { + for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { + try { + $( elem ).triggerHandler( "remove" ); + // http://bugs.jquery.com/ticket/8235 + } catch( e ) {} + } + _cleanData( elems ); + }; +} else { + var _remove = $.fn.remove; + $.fn.remove = function( selector, keepData ) { + return this.each(function() { + if ( !keepData ) { + if ( !selector || $.filter( selector, [ this ] ).length ) { + $( "*", this ).add( [ this ] ).each(function() { + try { + $( this ).triggerHandler( "remove" ); + // http://bugs.jquery.com/ticket/8235 + } catch( e ) {} + }); + } + } + return _remove.call( $(this), selector, keepData ); + }); + }; +} + +$.widget = function( name, base, prototype ) { + var namespace = name.split( "." )[ 0 ], + fullName; + name = name.split( "." )[ 1 ]; + fullName = namespace + "-" + name; + + if ( !prototype ) { + prototype = base; + base = $.Widget; + } + + // create selector for plugin + $.expr[ ":" ][ fullName ] = function( elem ) { + return !!$.data( elem, name ); + }; + + $[ namespace ] = $[ namespace ] || {}; + $[ namespace ][ name ] = function( options, element ) { + // allow instantiation without initializing for simple inheritance + if ( arguments.length ) { + this._createWidget( options, element ); + } + }; + + var basePrototype = new base(); + // we need to make the options hash a property directly on the new instance + // otherwise we'll modify the options hash on the prototype that we're + // inheriting from +// $.each( basePrototype, function( key, val ) { +// if ( $.isPlainObject(val) ) { +// basePrototype[ key ] = $.extend( {}, val ); +// } +// }); + basePrototype.options = $.extend( true, {}, basePrototype.options ); + $[ namespace ][ name ].prototype = $.extend( true, basePrototype, { + namespace: namespace, + widgetName: name, + widgetEventPrefix: $[ namespace ][ name ].prototype.widgetEventPrefix || name, + widgetBaseClass: fullName + }, prototype ); + + $.widget.bridge( name, $[ namespace ][ name ] ); +}; + +$.widget.bridge = function( name, object ) { + $.fn[ name ] = function( options ) { + var isMethodCall = typeof options === "string", + args = Array.prototype.slice.call( arguments, 1 ), + returnValue = this; + + // allow multiple hashes to be passed on init + options = !isMethodCall && args.length ? + $.extend.apply( null, [ true, options ].concat(args) ) : + options; + + // prevent calls to internal methods + if ( isMethodCall && options.charAt( 0 ) === "_" ) { + return returnValue; + } + + if ( isMethodCall ) { + this.each(function() { + var instance = $.data( this, name ), + methodValue = instance && $.isFunction( instance[options] ) ? + instance[ options ].apply( instance, args ) : + instance; + // TODO: add this back in 1.9 and use $.error() (see #5972) +// if ( !instance ) { +// throw "cannot call methods on " + name + " prior to initialization; " + +// "attempted to call method '" + options + "'"; +// } +// if ( !$.isFunction( instance[options] ) ) { +// throw "no such method '" + options + "' for " + name + " widget instance"; +// } +// var methodValue = instance[ options ].apply( instance, args ); + if ( methodValue !== instance && methodValue !== undefined ) { + returnValue = methodValue; + return false; + } + }); + } else { + this.each(function() { + var instance = $.data( this, name ); + if ( instance ) { + instance.option( options || {} )._init(); + } else { + $.data( this, name, new object( options, this ) ); + } + }); + } + + return returnValue; + }; +}; + +$.Widget = function( options, element ) { + // allow instantiation without initializing for simple inheritance + if ( arguments.length ) { + this._createWidget( options, element ); + } +}; + +$.Widget.prototype = { + widgetName: "widget", + widgetEventPrefix: "", + options: { + disabled: false + }, + _createWidget: function( options, element ) { + // $.widget.bridge stores the plugin instance, but we do it anyway + // so that it's stored even before the _create function runs + $.data( element, this.widgetName, this ); + this.element = $( element ); + this.options = $.extend( true, {}, + this.options, + this._getCreateOptions(), + options ); + + var self = this; + this.element.bind( "remove." + this.widgetName, function() { + self.destroy(); + }); + + this._create(); + this._trigger( "create" ); + this._init(); + }, + _getCreateOptions: function() { + return $.metadata && $.metadata.get( this.element[0] )[ this.widgetName ]; + }, + _create: function() {}, + _init: function() {}, + + destroy: function() { + this.element + .unbind( "." + this.widgetName ) + .removeData( this.widgetName ); + this.widget() + .unbind( "." + this.widgetName ) + .removeAttr( "aria-disabled" ) + .removeClass( + this.widgetBaseClass + "-disabled " + + "ui-state-disabled" ); + }, + + widget: function() { + return this.element; + }, + + option: function( key, value ) { + var options = key; + + if ( arguments.length === 0 ) { + // don't return a reference to the internal hash + return $.extend( {}, this.options ); + } + + if (typeof key === "string" ) { + if ( value === undefined ) { + return this.options[ key ]; + } + options = {}; + options[ key ] = value; + } + + this._setOptions( options ); + + return this; + }, + _setOptions: function( options ) { + var self = this; + $.each( options, function( key, value ) { + self._setOption( key, value ); + }); + + return this; + }, + _setOption: function( key, value ) { + this.options[ key ] = value; + + if ( key === "disabled" ) { + this.widget() + [ value ? "addClass" : "removeClass"]( + this.widgetBaseClass + "-disabled" + " " + + "ui-state-disabled" ) + .attr( "aria-disabled", value ); + } + + return this; + }, + + enable: function() { + return this._setOption( "disabled", false ); + }, + disable: function() { + return this._setOption( "disabled", true ); + }, + + _trigger: function( type, event, data ) { + var prop, orig, + callback = this.options[ type ]; + + data = data || {}; + event = $.Event( event ); + event.type = ( type === this.widgetEventPrefix ? + type : + this.widgetEventPrefix + type ).toLowerCase(); + // the original event may come from any element + // so we need to reset the target on the new event + event.target = this.element[ 0 ]; + + // copy original event properties over to the new event + orig = event.originalEvent; + if ( orig ) { + for ( prop in orig ) { + if ( !( prop in event ) ) { + event[ prop ] = orig[ prop ]; + } + } + } + + this.element.trigger( event, data ); + + return !( $.isFunction(callback) && + callback.call( this.element[0], event, data ) === false || + event.isDefaultPrevented() ); + } +}; + +})); diff --git a/static/file_upload/js/load-image.min.js b/static/file_upload/js/load-image.min.js new file mode 100644 index 00000000..8f04e851 --- /dev/null +++ b/static/file_upload/js/load-image.min.js @@ -0,0 +1 @@ +(function(e){"use strict";var t=function(e,i,a){var n,r,o=document.createElement("img");if(o.onerror=i,o.onload=function(){!r||a&&a.noRevoke||t.revokeObjectURL(r),i&&i(t.scale(o,a))},t.isInstanceOf("Blob",e)||t.isInstanceOf("File",e))n=r=t.createObjectURL(e),o._type=e.type;else{if("string"!=typeof e)return!1;n=e,a&&a.crossOrigin&&(o.crossOrigin=a.crossOrigin)}return n?(o.src=n,o):t.readFile(e,function(e){var t=e.target;t&&t.result?o.src=t.result:i&&i(e)})},i=window.createObjectURL&&window||window.URL&&URL.revokeObjectURL&&URL||window.webkitURL&&webkitURL;t.isInstanceOf=function(e,t){return Object.prototype.toString.call(t)==="[object "+e+"]"},t.transformCoordinates=function(){},t.getTransformedOptions=function(e){return e},t.renderImageToCanvas=function(e,t,i,a,n,r,o,s,d,l){return e.getContext("2d").drawImage(t,i,a,n,r,o,s,d,l),e},t.hasCanvasOption=function(e){return e.canvas||e.crop},t.scale=function(e,i){i=i||{};var a,n,r,o,s,d,l,c,u,g=document.createElement("canvas"),f=e.getContext||t.hasCanvasOption(i)&&g.getContext,h=e.naturalWidth||e.width,m=e.naturalHeight||e.height,p=h,S=m,b=function(){var e=Math.max((r||p)/p,(o||S)/S);e>1&&(p=Math.ceil(p*e),S=Math.ceil(S*e))},v=function(){var e=Math.min((a||p)/p,(n||S)/S);1>e&&(p=Math.ceil(p*e),S=Math.ceil(S*e))};return f&&(i=t.getTransformedOptions(i),l=i.left||0,c=i.top||0,i.sourceWidth?(s=i.sourceWidth,void 0!==i.right&&void 0===i.left&&(l=h-s-i.right)):s=h-l-(i.right||0),i.sourceHeight?(d=i.sourceHeight,void 0!==i.bottom&&void 0===i.top&&(c=m-d-i.bottom)):d=m-c-(i.bottom||0),p=s,S=d),a=i.maxWidth,n=i.maxHeight,r=i.minWidth,o=i.minHeight,f&&a&&n&&i.crop?(p=a,S=n,u=s/d-a/n,0>u?(d=n*s/a,void 0===i.top&&void 0===i.bottom&&(c=(m-d)/2)):u>0&&(s=a*d/n,void 0===i.left&&void 0===i.right&&(l=(h-s)/2))):((i.contain||i.cover)&&(r=a=a||r,o=n=n||o),i.cover?(v(),b()):(b(),v())),f?(g.width=p,g.height=S,t.transformCoordinates(g,i),t.renderImageToCanvas(g,e,l,c,s,d,0,0,p,S)):(e.width=p,e.height=S,e)},t.createObjectURL=function(e){return i?i.createObjectURL(e):!1},t.revokeObjectURL=function(e){return i?i.revokeObjectURL(e):!1},t.readFile=function(e,t,i){if(window.FileReader){var a=new FileReader;if(a.onload=a.onerror=t,i=i||"readAsDataURL",a[i])return a[i](e),a}return!1},"function"==typeof define&&define.amd?define(function(){return t}):e.loadImage=t})(this),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image"],e):e(window.loadImage)}(function(e){"use strict";if(window.navigator&&window.navigator.platform&&/iP(hone|od|ad)/.test(window.navigator.platform)){var t=e.renderImageToCanvas;e.detectSubsampling=function(e){var t,i;return e.width*e.height>1048576?(t=document.createElement("canvas"),t.width=t.height=1,i=t.getContext("2d"),i.drawImage(e,-e.width+1,0),0===i.getImageData(0,0,1,1).data[3]):!1},e.detectVerticalSquash=function(e,t){var i,a,n,r,o,s=e.naturalHeight||e.height,d=document.createElement("canvas"),l=d.getContext("2d");for(t&&(s/=2),d.width=1,d.height=s,l.drawImage(e,0,0),i=l.getImageData(0,0,1,s).data,a=0,n=s,r=s;r>a;)o=i[4*(r-1)+3],0===o?n=r:a=r,r=n+a>>1;return r/s||1},e.renderImageToCanvas=function(i,a,n,r,o,s,d,l,c,u){if("image/jpeg"===a._type){var g,f,h,m,p=i.getContext("2d"),S=document.createElement("canvas"),b=1024,v=S.getContext("2d");if(S.width=b,S.height=b,p.save(),g=e.detectSubsampling(a),g&&(n/=2,r/=2,o/=2,s/=2),f=e.detectVerticalSquash(a,g),g||1!==f){for(r*=f,c=Math.ceil(b*c/o),u=Math.ceil(b*u/s/f),l=0,m=0;s>m;){for(d=0,h=0;o>h;)v.clearRect(0,0,b,b),v.drawImage(a,n,r,o,s,-h,-m,o,s),p.drawImage(S,0,0,b,b,d,l,c,u),h+=b,d+=c;m+=b,l+=u}return p.restore(),i}}return t(i,a,n,r,o,s,d,l,c,u)}}}),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image"],e):e(window.loadImage)}(function(e){"use strict";var t=e.hasCanvasOption;e.hasCanvasOption=function(e){return t(e)||e.orientation},e.transformCoordinates=function(e,t){var i=e.getContext("2d"),a=e.width,n=e.height,r=t.orientation;if(r)switch(r>4&&(e.width=n,e.height=a),r){case 2:i.translate(a,0),i.scale(-1,1);break;case 3:i.translate(a,n),i.rotate(Math.PI);break;case 4:i.translate(0,n),i.scale(1,-1);break;case 5:i.rotate(.5*Math.PI),i.scale(1,-1);break;case 6:i.rotate(.5*Math.PI),i.translate(0,-n);break;case 7:i.rotate(.5*Math.PI),i.translate(a,-n),i.scale(-1,1);break;case 8:i.rotate(-.5*Math.PI),i.translate(-a,0)}},e.getTransformedOptions=function(e){if(!e.orientation||1===e.orientation)return e;var t,i={};for(t in e)e.hasOwnProperty(t)&&(i[t]=e[t]);switch(e.orientation){case 2:i.left=e.right,i.right=e.left;break;case 3:i.left=e.right,i.top=e.bottom,i.right=e.left,i.bottom=e.top;break;case 4:i.top=e.bottom,i.bottom=e.top;break;case 5:i.left=e.top,i.top=e.left,i.right=e.bottom,i.bottom=e.right;break;case 6:i.left=e.top,i.top=e.right,i.right=e.bottom,i.bottom=e.left;break;case 7:i.left=e.bottom,i.top=e.right,i.right=e.top,i.bottom=e.left;break;case 8:i.left=e.bottom,i.top=e.left,i.right=e.top,i.bottom=e.right}return e.orientation>4&&(i.maxWidth=e.maxHeight,i.maxHeight=e.maxWidth,i.minWidth=e.minHeight,i.minHeight=e.minWidth,i.sourceWidth=e.sourceHeight,i.sourceHeight=e.sourceWidth),i}}),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image"],e):e(window.loadImage)}(function(e){"use strict";var t=window.Blob&&(Blob.prototype.slice||Blob.prototype.webkitSlice||Blob.prototype.mozSlice);e.blobSlice=t&&function(){var e=this.slice||this.webkitSlice||this.mozSlice;return e.apply(this,arguments)},e.metaDataParsers={jpeg:{65505:[]}},e.parseMetaData=function(t,i,a){a=a||{};var n=this,r=a.maxMetaDataSize||262144,o={},s=!(window.DataView&&t&&t.size>=12&&"image/jpeg"===t.type&&e.blobSlice);(s||!e.readFile(e.blobSlice.call(t,0,r),function(t){var r,s,d,l,c=t.target.result,u=new DataView(c),g=2,f=u.byteLength-4,h=g;if(65496===u.getUint16(0)){for(;f>g&&(r=u.getUint16(g),r>=65504&&65519>=r||65534===r);){if(s=u.getUint16(g+2)+2,g+s>u.byteLength){console.log("Invalid meta data: Invalid segment size.");break}if(d=e.metaDataParsers.jpeg[r])for(l=0;d.length>l;l+=1)d[l].call(n,u,g,s,o,a);g+=s,h=g}!a.disableImageHead&&h>6&&(o.imageHead=c.slice?c.slice(0,h):new Uint8Array(c).subarray(0,h))}else console.log("Invalid JPEG file: Missing JPEG marker.");i(o)},"readAsArrayBuffer"))&&i(o)}}),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image","load-image-meta"],e):e(window.loadImage)}(function(e){"use strict";e.ExifMap=function(){return this},e.ExifMap.prototype.map={Orientation:274},e.ExifMap.prototype.get=function(e){return this[e]||this[this.map[e]]},e.getExifThumbnail=function(e,t,i){var a,n,r;if(!i||t+i>e.byteLength)return console.log("Invalid Exif data: Invalid thumbnail data."),void 0;for(a=[],n=0;i>n;n+=1)r=e.getUint8(t+n),a.push((16>r?"0":"")+r.toString(16));return"data:image/jpeg,%"+a.join("%")},e.exifTagTypes={1:{getValue:function(e,t){return e.getUint8(t)},size:1},2:{getValue:function(e,t){return String.fromCharCode(e.getUint8(t))},size:1,ascii:!0},3:{getValue:function(e,t,i){return e.getUint16(t,i)},size:2},4:{getValue:function(e,t,i){return e.getUint32(t,i)},size:4},5:{getValue:function(e,t,i){return e.getUint32(t,i)/e.getUint32(t+4,i)},size:8},9:{getValue:function(e,t,i){return e.getInt32(t,i)},size:4},10:{getValue:function(e,t,i){return e.getInt32(t,i)/e.getInt32(t+4,i)},size:8}},e.exifTagTypes[7]=e.exifTagTypes[1],e.getExifValue=function(t,i,a,n,r,o){var s,d,l,c,u,g,f=e.exifTagTypes[n];if(!f)return console.log("Invalid Exif data: Invalid tag type."),void 0;if(s=f.size*r,d=s>4?i+t.getUint32(a+8,o):a+8,d+s>t.byteLength)return console.log("Invalid Exif data: Invalid data offset."),void 0;if(1===r)return f.getValue(t,d,o);for(l=[],c=0;r>c;c+=1)l[c]=f.getValue(t,d+c*f.size,o);if(f.ascii){for(u="",c=0;l.length>c&&(g=l[c],"\0"!==g);c+=1)u+=g;return u}return l},e.parseExifTag=function(t,i,a,n,r){var o=t.getUint16(a,n);r.exif[o]=e.getExifValue(t,i,a,t.getUint16(a+2,n),t.getUint32(a+4,n),n)},e.parseExifTags=function(e,t,i,a,n){var r,o,s;if(i+6>e.byteLength)return console.log("Invalid Exif data: Invalid directory offset."),void 0;if(r=e.getUint16(i,a),o=i+2+12*r,o+4>e.byteLength)return console.log("Invalid Exif data: Invalid directory size."),void 0;for(s=0;r>s;s+=1)this.parseExifTag(e,t,i+2+12*s,a,n);return e.getUint32(o,a)},e.parseExifData=function(t,i,a,n,r){if(!r.disableExif){var o,s,d,l=i+10;if(1165519206===t.getUint32(i+4)){if(l+8>t.byteLength)return console.log("Invalid Exif data: Invalid segment size."),void 0;if(0!==t.getUint16(i+8))return console.log("Invalid Exif data: Missing byte alignment offset."),void 0;switch(t.getUint16(l)){case 18761:o=!0;break;case 19789:o=!1;break;default:return console.log("Invalid Exif data: Invalid byte alignment marker."),void 0}if(42!==t.getUint16(l+2,o))return console.log("Invalid Exif data: Missing TIFF marker."),void 0;s=t.getUint32(l+4,o),n.exif=new e.ExifMap,s=e.parseExifTags(t,l,l+s,o,n),s&&!r.disableExifThumbnail&&(d={exif:{}},s=e.parseExifTags(t,l,l+s,o,d),d.exif[513]&&(n.exif.Thumbnail=e.getExifThumbnail(t,l+d.exif[513],d.exif[514]))),n.exif[34665]&&!r.disableExifSub&&e.parseExifTags(t,l,l+n.exif[34665],o,n),n.exif[34853]&&!r.disableExifGps&&e.parseExifTags(t,l,l+n.exif[34853],o,n)}}},e.metaDataParsers.jpeg[65505].push(e.parseExifData)}),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image","load-image-exif"],e):e(window.loadImage)}(function(e){"use strict";var t,i,a;e.ExifMap.prototype.tags={256:"ImageWidth",257:"ImageHeight",34665:"ExifIFDPointer",34853:"GPSInfoIFDPointer",40965:"InteroperabilityIFDPointer",258:"BitsPerSample",259:"Compression",262:"PhotometricInterpretation",274:"Orientation",277:"SamplesPerPixel",284:"PlanarConfiguration",530:"YCbCrSubSampling",531:"YCbCrPositioning",282:"XResolution",283:"YResolution",296:"ResolutionUnit",273:"StripOffsets",278:"RowsPerStrip",279:"StripByteCounts",513:"JPEGInterchangeFormat",514:"JPEGInterchangeFormatLength",301:"TransferFunction",318:"WhitePoint",319:"PrimaryChromaticities",529:"YCbCrCoefficients",532:"ReferenceBlackWhite",306:"DateTime",270:"ImageDescription",271:"Make",272:"Model",305:"Software",315:"Artist",33432:"Copyright",36864:"ExifVersion",40960:"FlashpixVersion",40961:"ColorSpace",40962:"PixelXDimension",40963:"PixelYDimension",42240:"Gamma",37121:"ComponentsConfiguration",37122:"CompressedBitsPerPixel",37500:"MakerNote",37510:"UserComment",40964:"RelatedSoundFile",36867:"DateTimeOriginal",36868:"DateTimeDigitized",37520:"SubSecTime",37521:"SubSecTimeOriginal",37522:"SubSecTimeDigitized",33434:"ExposureTime",33437:"FNumber",34850:"ExposureProgram",34852:"SpectralSensitivity",34855:"PhotographicSensitivity",34856:"OECF",34864:"SensitivityType",34865:"StandardOutputSensitivity",34866:"RecommendedExposureIndex",34867:"ISOSpeed",34868:"ISOSpeedLatitudeyyy",34869:"ISOSpeedLatitudezzz",37377:"ShutterSpeedValue",37378:"ApertureValue",37379:"BrightnessValue",37380:"ExposureBias",37381:"MaxApertureValue",37382:"SubjectDistance",37383:"MeteringMode",37384:"LightSource",37385:"Flash",37396:"SubjectArea",37386:"FocalLength",41483:"FlashEnergy",41484:"SpatialFrequencyResponse",41486:"FocalPlaneXResolution",41487:"FocalPlaneYResolution",41488:"FocalPlaneResolutionUnit",41492:"SubjectLocation",41493:"ExposureIndex",41495:"SensingMethod",41728:"FileSource",41729:"SceneType",41730:"CFAPattern",41985:"CustomRendered",41986:"ExposureMode",41987:"WhiteBalance",41988:"DigitalZoomRatio",41989:"FocalLengthIn35mmFilm",41990:"SceneCaptureType",41991:"GainControl",41992:"Contrast",41993:"Saturation",41994:"Sharpness",41995:"DeviceSettingDescription",41996:"SubjectDistanceRange",42016:"ImageUniqueID",42032:"CameraOwnerName",42033:"BodySerialNumber",42034:"LensSpecification",42035:"LensMake",42036:"LensModel",42037:"LensSerialNumber",0:"GPSVersionID",1:"GPSLatitudeRef",2:"GPSLatitude",3:"GPSLongitudeRef",4:"GPSLongitude",5:"GPSAltitudeRef",6:"GPSAltitude",7:"GPSTimeStamp",8:"GPSSatellites",9:"GPSStatus",10:"GPSMeasureMode",11:"GPSDOP",12:"GPSSpeedRef",13:"GPSSpeed",14:"GPSTrackRef",15:"GPSTrack",16:"GPSImgDirectionRef",17:"GPSImgDirection",18:"GPSMapDatum",19:"GPSDestLatitudeRef",20:"GPSDestLatitude",21:"GPSDestLongitudeRef",22:"GPSDestLongitude",23:"GPSDestBearingRef",24:"GPSDestBearing",25:"GPSDestDistanceRef",26:"GPSDestDistance",27:"GPSProcessingMethod",28:"GPSAreaInformation",29:"GPSDateStamp",30:"GPSDifferential",31:"GPSHPositioningError"},e.ExifMap.prototype.stringValues={ExposureProgram:{0:"Undefined",1:"Manual",2:"Normal program",3:"Aperture priority",4:"Shutter priority",5:"Creative program",6:"Action program",7:"Portrait mode",8:"Landscape mode"},MeteringMode:{0:"Unknown",1:"Average",2:"CenterWeightedAverage",3:"Spot",4:"MultiSpot",5:"Pattern",6:"Partial",255:"Other"},LightSource:{0:"Unknown",1:"Daylight",2:"Fluorescent",3:"Tungsten (incandescent light)",4:"Flash",9:"Fine weather",10:"Cloudy weather",11:"Shade",12:"Daylight fluorescent (D 5700 - 7100K)",13:"Day white fluorescent (N 4600 - 5400K)",14:"Cool white fluorescent (W 3900 - 4500K)",15:"White fluorescent (WW 3200 - 3700K)",17:"Standard light A",18:"Standard light B",19:"Standard light C",20:"D55",21:"D65",22:"D75",23:"D50",24:"ISO studio tungsten",255:"Other"},Flash:{0:"Flash did not fire",1:"Flash fired",5:"Strobe return light not detected",7:"Strobe return light detected",9:"Flash fired, compulsory flash mode",13:"Flash fired, compulsory flash mode, return light not detected",15:"Flash fired, compulsory flash mode, return light detected",16:"Flash did not fire, compulsory flash mode",24:"Flash did not fire, auto mode",25:"Flash fired, auto mode",29:"Flash fired, auto mode, return light not detected",31:"Flash fired, auto mode, return light detected",32:"No flash function",65:"Flash fired, red-eye reduction mode",69:"Flash fired, red-eye reduction mode, return light not detected",71:"Flash fired, red-eye reduction mode, return light detected",73:"Flash fired, compulsory flash mode, red-eye reduction mode",77:"Flash fired, compulsory flash mode, red-eye reduction mode, return light not detected",79:"Flash fired, compulsory flash mode, red-eye reduction mode, return light detected",89:"Flash fired, auto mode, red-eye reduction mode",93:"Flash fired, auto mode, return light not detected, red-eye reduction mode",95:"Flash fired, auto mode, return light detected, red-eye reduction mode"},SensingMethod:{1:"Undefined",2:"One-chip color area sensor",3:"Two-chip color area sensor",4:"Three-chip color area sensor",5:"Color sequential area sensor",7:"Trilinear sensor",8:"Color sequential linear sensor"},SceneCaptureType:{0:"Standard",1:"Landscape",2:"Portrait",3:"Night scene"},SceneType:{1:"Directly photographed"},CustomRendered:{0:"Normal process",1:"Custom process"},WhiteBalance:{0:"Auto white balance",1:"Manual white balance"},GainControl:{0:"None",1:"Low gain up",2:"High gain up",3:"Low gain down",4:"High gain down"},Contrast:{0:"Normal",1:"Soft",2:"Hard"},Saturation:{0:"Normal",1:"Low saturation",2:"High saturation"},Sharpness:{0:"Normal",1:"Soft",2:"Hard"},SubjectDistanceRange:{0:"Unknown",1:"Macro",2:"Close view",3:"Distant view"},FileSource:{3:"DSC"},ComponentsConfiguration:{0:"",1:"Y",2:"Cb",3:"Cr",4:"R",5:"G",6:"B"},Orientation:{1:"top-left",2:"top-right",3:"bottom-right",4:"bottom-left",5:"left-top",6:"right-top",7:"right-bottom",8:"left-bottom"}},e.ExifMap.prototype.getText=function(e){var t=this.get(e);switch(e){case"LightSource":case"Flash":case"MeteringMode":case"ExposureProgram":case"SensingMethod":case"SceneCaptureType":case"SceneType":case"CustomRendered":case"WhiteBalance":case"GainControl":case"Contrast":case"Saturation":case"Sharpness":case"SubjectDistanceRange":case"FileSource":case"Orientation":return this.stringValues[e][t];case"ExifVersion":case"FlashpixVersion":return String.fromCharCode(t[0],t[1],t[2],t[3]);case"ComponentsConfiguration":return this.stringValues[e][t[0]]+this.stringValues[e][t[1]]+this.stringValues[e][t[2]]+this.stringValues[e][t[3]];case"GPSVersionID":return t[0]+"."+t[1]+"."+t[2]+"."+t[3]}return t+""},t=e.ExifMap.prototype.tags,i=e.ExifMap.prototype.map;for(a in t)t.hasOwnProperty(a)&&(i[t[a]]=a);e.ExifMap.prototype.getAll=function(){var e,i,a={};for(e in this)this.hasOwnProperty(e)&&(i=t[e],i&&(a[i]=this.getText(i)));return a}}); \ No newline at end of file diff --git a/static/file_upload/js/locale.js b/static/file_upload/js/locale.js new file mode 100644 index 00000000..ea64b0a8 --- /dev/null +++ b/static/file_upload/js/locale.js @@ -0,0 +1,29 @@ +/* + * jQuery File Upload Plugin Localization Example 6.5.1 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2012, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*global window */ + +window.locale = { + "fileupload": { + "errors": { + "maxFileSize": "File is too big", + "minFileSize": "File is too small", + "acceptFileTypes": "Filetype not allowed", + "maxNumberOfFiles": "Max number of files exceeded", + "uploadedBytes": "Uploaded bytes exceed file size", + "emptyResult": "Empty file upload result" + }, + "error": "Error", + "start": "Start", + "cancel": "Cancel", + "destroy": "Delete" + } +}; diff --git a/static/file_upload/js/main.js b/static/file_upload/js/main.js new file mode 100644 index 00000000..1850909a --- /dev/null +++ b/static/file_upload/js/main.js @@ -0,0 +1,77 @@ +/* + * jQuery File Upload Plugin JS Example 8.8.2 + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2010, Sebastian Tschan + * https://blueimp.net + * + * Licensed under the MIT license: + * http://www.opensource.org/licenses/MIT + */ + +/*jslint nomen: true, regexp: true */ +/*global $, window, blueimp */ + +$(function () { + 'use strict'; + + // Initialize the jQuery File Upload widget: + $('#fileupload').fileupload({ + // Uncomment the following to send cross-domain cookies: + //xhrFields: {withCredentials: true}, + //url: 'server/php/' + }); + + // Enable iframe cross-domain access via redirect option: + $('#fileupload').fileupload( + 'option', + 'redirect', + window.location.href.replace( + /\/[^\/]*$/, + '/cors/result.html?%s' + ) + ); + + if (window.location.hostname === 'blueimp.github.io') { + // Demo settings: + $('#fileupload').fileupload('option', { + url: '//jquery-file-upload.appspot.com/', + // Enable image resizing, except for Android and Opera, + // which actually support image resizing, but fail to + // send Blob objects via XHR requests: + disableImageResize: /Android(?!.*Chrome)|Opera/ + .test(window.navigator.userAgent), + maxFileSize: 5000000, + acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i + }); + // Upload server status check for browsers with CORS support: + if ($.support.cors) { + $.ajax({ + url: '//jquery-file-upload.appspot.com/', + type: 'HEAD' + }).fail(function () { + $('
') + .text('Upload server currently unavailable - ' + + new Date()) + .appendTo('#fileupload'); + }); + } + } else { + // Load existing files: + $('#fileupload').addClass('fileupload-processing'); + $.ajax({ + // Uncomment the following to send cross-domain cookies: + //xhrFields: {withCredentials: true}, + //url: $('#fileupload').fileupload('option', 'url'), + url: '/upload/view/', + dataType: 'json', + context: $('#fileupload')[0] + }).always(function () { + $(this).removeClass('fileupload-processing'); + }).done(function (result) { + $(this).fileupload('option', 'done') + .call(this, null, {result: result}); + }); + } + +}); diff --git a/static/file_upload/js/tmpl.min.js b/static/file_upload/js/tmpl.min.js new file mode 100644 index 00000000..a7cae528 --- /dev/null +++ b/static/file_upload/js/tmpl.min.js @@ -0,0 +1 @@ +!function(e){"use strict";var n=function(e,t){var r=/[^\w\-\.:]/.test(e)?new Function(n.arg+",tmpl","var _e=tmpl.encode"+n.helper+",_s='"+e.replace(n.regexp,n.func)+"';return _s;"):n.cache[e]=n.cache[e]||n(n.load(e));return t?r(t,n):function(e){return r(e,n)}};n.cache={},n.load=function(e){return document.getElementById(e).innerHTML},n.regexp=/([\s'\\])(?!(?:[^{]|\{(?!%))*%\})|(?:\{%(=|#)([\s\S]+?)%\})|(\{%)|(%\})/g,n.func=function(e,n,t,r,c,u){return n?{"\n":"\\n","\r":"\\r"," ":"\\t"," ":" "}[n]||"\\"+n:t?"="===t?"'+_e("+r+")+'":"'+"+r+"+'":c?"';":u?"_s+='":void 0},n.encReg=/[<>&"'\x00]/g,n.encMap={"<":"<",">":">","&":"&",'"':""","'":"'"},n.encode=function(e){return String(e).replace(n.encReg,function(e){return n.encMap[e]||""})},n.arg="o",n.helper=",print=function(s,e){_s+=e&&(s||'')||_e(s);},include=function(s,d){_s+=tmpl(s,d);}","function"==typeof define&&define.amd?define(function(){return n}):e.tmpl=n}(this); \ No newline at end of file diff --git a/static/file_upload/js/vendor/jquery.ui.widget.js b/static/file_upload/js/vendor/jquery.ui.widget.js new file mode 100644 index 00000000..2d370893 --- /dev/null +++ b/static/file_upload/js/vendor/jquery.ui.widget.js @@ -0,0 +1,530 @@ +/* + * jQuery UI Widget 1.10.3+amd + * https://github.com/blueimp/jQuery-File-Upload + * + * Copyright 2013 jQuery Foundation and other contributors + * Released under the MIT license. + * http://jquery.org/license + * + * http://api.jqueryui.com/jQuery.widget/ + */ + +(function (factory) { + if (typeof define === "function" && define.amd) { + // Register as an anonymous AMD module: + define(["jquery"], factory); + } else { + // Browser globals: + factory(jQuery); + } +}(function( $, undefined ) { + +var uuid = 0, + slice = Array.prototype.slice, + _cleanData = $.cleanData; +$.cleanData = function( elems ) { + for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { + try { + $( elem ).triggerHandler( "remove" ); + // http://bugs.jquery.com/ticket/8235 + } catch( e ) {} + } + _cleanData( elems ); +}; + +$.widget = function( name, base, prototype ) { + var fullName, existingConstructor, constructor, basePrototype, + // proxiedPrototype allows the provided prototype to remain unmodified + // so that it can be used as a mixin for multiple widgets (#8876) + proxiedPrototype = {}, + namespace = name.split( "." )[ 0 ]; + + name = name.split( "." )[ 1 ]; + fullName = namespace + "-" + name; + + if ( !prototype ) { + prototype = base; + base = $.Widget; + } + + // create selector for plugin + $.expr[ ":" ][ fullName.toLowerCase() ] = function( elem ) { + return !!$.data( elem, fullName ); + }; + + $[ namespace ] = $[ namespace ] || {}; + existingConstructor = $[ namespace ][ name ]; + constructor = $[ namespace ][ name ] = function( options, element ) { + // allow instantiation without "new" keyword + if ( !this._createWidget ) { + return new constructor( options, element ); + } + + // allow instantiation without initializing for simple inheritance + // must use "new" keyword (the code above always passes args) + if ( arguments.length ) { + this._createWidget( options, element ); + } + }; + // extend with the existing constructor to carry over any static properties + $.extend( constructor, existingConstructor, { + version: prototype.version, + // copy the object used to create the prototype in case we need to + // redefine the widget later + _proto: $.extend( {}, prototype ), + // track widgets that inherit from this widget in case this widget is + // redefined after a widget inherits from it + _childConstructors: [] + }); + + basePrototype = new base(); + // we need to make the options hash a property directly on the new instance + // otherwise we'll modify the options hash on the prototype that we're + // inheriting from + basePrototype.options = $.widget.extend( {}, basePrototype.options ); + $.each( prototype, function( prop, value ) { + if ( !$.isFunction( value ) ) { + proxiedPrototype[ prop ] = value; + return; + } + proxiedPrototype[ prop ] = (function() { + var _super = function() { + return base.prototype[ prop ].apply( this, arguments ); + }, + _superApply = function( args ) { + return base.prototype[ prop ].apply( this, args ); + }; + return function() { + var __super = this._super, + __superApply = this._superApply, + returnValue; + + this._super = _super; + this._superApply = _superApply; + + returnValue = value.apply( this, arguments ); + + this._super = __super; + this._superApply = __superApply; + + return returnValue; + }; + })(); + }); + constructor.prototype = $.widget.extend( basePrototype, { + // TODO: remove support for widgetEventPrefix + // always use the name + a colon as the prefix, e.g., draggable:start + // don't prefix for widgets that aren't DOM-based + widgetEventPrefix: existingConstructor ? basePrototype.widgetEventPrefix : name + }, proxiedPrototype, { + constructor: constructor, + namespace: namespace, + widgetName: name, + widgetFullName: fullName + }); + + // If this widget is being redefined then we need to find all widgets that + // are inheriting from it and redefine all of them so that they inherit from + // the new version of this widget. We're essentially trying to replace one + // level in the prototype chain. + if ( existingConstructor ) { + $.each( existingConstructor._childConstructors, function( i, child ) { + var childPrototype = child.prototype; + + // redefine the child widget using the same prototype that was + // originally used, but inherit from the new version of the base + $.widget( childPrototype.namespace + "." + childPrototype.widgetName, constructor, child._proto ); + }); + // remove the list of existing child constructors from the old constructor + // so the old child constructors can be garbage collected + delete existingConstructor._childConstructors; + } else { + base._childConstructors.push( constructor ); + } + + $.widget.bridge( name, constructor ); +}; + +$.widget.extend = function( target ) { + var input = slice.call( arguments, 1 ), + inputIndex = 0, + inputLength = input.length, + key, + value; + for ( ; inputIndex < inputLength; inputIndex++ ) { + for ( key in input[ inputIndex ] ) { + value = input[ inputIndex ][ key ]; + if ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) { + // Clone objects + if ( $.isPlainObject( value ) ) { + target[ key ] = $.isPlainObject( target[ key ] ) ? + $.widget.extend( {}, target[ key ], value ) : + // Don't extend strings, arrays, etc. with objects + $.widget.extend( {}, value ); + // Copy everything else by reference + } else { + target[ key ] = value; + } + } + } + } + return target; +}; + +$.widget.bridge = function( name, object ) { + var fullName = object.prototype.widgetFullName || name; + $.fn[ name ] = function( options ) { + var isMethodCall = typeof options === "string", + args = slice.call( arguments, 1 ), + returnValue = this; + + // allow multiple hashes to be passed on init + options = !isMethodCall && args.length ? + $.widget.extend.apply( null, [ options ].concat(args) ) : + options; + + if ( isMethodCall ) { + this.each(function() { + var methodValue, + instance = $.data( this, fullName ); + if ( !instance ) { + return $.error( "cannot call methods on " + name + " prior to initialization; " + + "attempted to call method '" + options + "'" ); + } + if ( !$.isFunction( instance[options] ) || options.charAt( 0 ) === "_" ) { + return $.error( "no such method '" + options + "' for " + name + " widget instance" ); + } + methodValue = instance[ options ].apply( instance, args ); + if ( methodValue !== instance && methodValue !== undefined ) { + returnValue = methodValue && methodValue.jquery ? + returnValue.pushStack( methodValue.get() ) : + methodValue; + return false; + } + }); + } else { + this.each(function() { + var instance = $.data( this, fullName ); + if ( instance ) { + instance.option( options || {} )._init(); + } else { + $.data( this, fullName, new object( options, this ) ); + } + }); + } + + return returnValue; + }; +}; + +$.Widget = function( /* options, element */ ) {}; +$.Widget._childConstructors = []; + +$.Widget.prototype = { + widgetName: "widget", + widgetEventPrefix: "", + defaultElement: "
", + options: { + disabled: false, + + // callbacks + create: null + }, + _createWidget: function( options, element ) { + element = $( element || this.defaultElement || this )[ 0 ]; + this.element = $( element ); + this.uuid = uuid++; + this.eventNamespace = "." + this.widgetName + this.uuid; + this.options = $.widget.extend( {}, + this.options, + this._getCreateOptions(), + options ); + + this.bindings = $(); + this.hoverable = $(); + this.focusable = $(); + + if ( element !== this ) { + $.data( element, this.widgetFullName, this ); + this._on( true, this.element, { + remove: function( event ) { + if ( event.target === element ) { + this.destroy(); + } + } + }); + this.document = $( element.style ? + // element within the document + element.ownerDocument : + // element is window or document + element.document || element ); + this.window = $( this.document[0].defaultView || this.document[0].parentWindow ); + } + + this._create(); + this._trigger( "create", null, this._getCreateEventData() ); + this._init(); + }, + _getCreateOptions: $.noop, + _getCreateEventData: $.noop, + _create: $.noop, + _init: $.noop, + + destroy: function() { + this._destroy(); + // we can probably remove the unbind calls in 2.0 + // all event bindings should go through this._on() + this.element + .unbind( this.eventNamespace ) + // 1.9 BC for #7810 + // TODO remove dual storage + .removeData( this.widgetName ) + .removeData( this.widgetFullName ) + // support: jquery <1.6.3 + // http://bugs.jquery.com/ticket/9413 + .removeData( $.camelCase( this.widgetFullName ) ); + this.widget() + .unbind( this.eventNamespace ) + .removeAttr( "aria-disabled" ) + .removeClass( + this.widgetFullName + "-disabled " + + "ui-state-disabled" ); + + // clean up events and states + this.bindings.unbind( this.eventNamespace ); + this.hoverable.removeClass( "ui-state-hover" ); + this.focusable.removeClass( "ui-state-focus" ); + }, + _destroy: $.noop, + + widget: function() { + return this.element; + }, + + option: function( key, value ) { + var options = key, + parts, + curOption, + i; + + if ( arguments.length === 0 ) { + // don't return a reference to the internal hash + return $.widget.extend( {}, this.options ); + } + + if ( typeof key === "string" ) { + // handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } } + options = {}; + parts = key.split( "." ); + key = parts.shift(); + if ( parts.length ) { + curOption = options[ key ] = $.widget.extend( {}, this.options[ key ] ); + for ( i = 0; i < parts.length - 1; i++ ) { + curOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {}; + curOption = curOption[ parts[ i ] ]; + } + key = parts.pop(); + if ( value === undefined ) { + return curOption[ key ] === undefined ? null : curOption[ key ]; + } + curOption[ key ] = value; + } else { + if ( value === undefined ) { + return this.options[ key ] === undefined ? null : this.options[ key ]; + } + options[ key ] = value; + } + } + + this._setOptions( options ); + + return this; + }, + _setOptions: function( options ) { + var key; + + for ( key in options ) { + this._setOption( key, options[ key ] ); + } + + return this; + }, + _setOption: function( key, value ) { + this.options[ key ] = value; + + if ( key === "disabled" ) { + this.widget() + .toggleClass( this.widgetFullName + "-disabled ui-state-disabled", !!value ) + .attr( "aria-disabled", value ); + this.hoverable.removeClass( "ui-state-hover" ); + this.focusable.removeClass( "ui-state-focus" ); + } + + return this; + }, + + enable: function() { + return this._setOption( "disabled", false ); + }, + disable: function() { + return this._setOption( "disabled", true ); + }, + + _on: function( suppressDisabledCheck, element, handlers ) { + var delegateElement, + instance = this; + + // no suppressDisabledCheck flag, shuffle arguments + if ( typeof suppressDisabledCheck !== "boolean" ) { + handlers = element; + element = suppressDisabledCheck; + suppressDisabledCheck = false; + } + + // no element argument, shuffle and use this.element + if ( !handlers ) { + handlers = element; + element = this.element; + delegateElement = this.widget(); + } else { + // accept selectors, DOM elements + element = delegateElement = $( element ); + this.bindings = this.bindings.add( element ); + } + + $.each( handlers, function( event, handler ) { + function handlerProxy() { + // allow widgets to customize the disabled handling + // - disabled as an array instead of boolean + // - disabled class as method for disabling individual parts + if ( !suppressDisabledCheck && + ( instance.options.disabled === true || + $( this ).hasClass( "ui-state-disabled" ) ) ) { + return; + } + return ( typeof handler === "string" ? instance[ handler ] : handler ) + .apply( instance, arguments ); + } + + // copy the guid so direct unbinding works + if ( typeof handler !== "string" ) { + handlerProxy.guid = handler.guid = + handler.guid || handlerProxy.guid || $.guid++; + } + + var match = event.match( /^(\w+)\s*(.*)$/ ), + eventName = match[1] + instance.eventNamespace, + selector = match[2]; + if ( selector ) { + delegateElement.delegate( selector, eventName, handlerProxy ); + } else { + element.bind( eventName, handlerProxy ); + } + }); + }, + + _off: function( element, eventName ) { + eventName = (eventName || "").split( " " ).join( this.eventNamespace + " " ) + this.eventNamespace; + element.unbind( eventName ).undelegate( eventName ); + }, + + _delay: function( handler, delay ) { + function handlerProxy() { + return ( typeof handler === "string" ? instance[ handler ] : handler ) + .apply( instance, arguments ); + } + var instance = this; + return setTimeout( handlerProxy, delay || 0 ); + }, + + _hoverable: function( element ) { + this.hoverable = this.hoverable.add( element ); + this._on( element, { + mouseenter: function( event ) { + $( event.currentTarget ).addClass( "ui-state-hover" ); + }, + mouseleave: function( event ) { + $( event.currentTarget ).removeClass( "ui-state-hover" ); + } + }); + }, + + _focusable: function( element ) { + this.focusable = this.focusable.add( element ); + this._on( element, { + focusin: function( event ) { + $( event.currentTarget ).addClass( "ui-state-focus" ); + }, + focusout: function( event ) { + $( event.currentTarget ).removeClass( "ui-state-focus" ); + } + }); + }, + + _trigger: function( type, event, data ) { + var prop, orig, + callback = this.options[ type ]; + + data = data || {}; + event = $.Event( event ); + event.type = ( type === this.widgetEventPrefix ? + type : + this.widgetEventPrefix + type ).toLowerCase(); + // the original event may come from any element + // so we need to reset the target on the new event + event.target = this.element[ 0 ]; + + // copy original event properties over to the new event + orig = event.originalEvent; + if ( orig ) { + for ( prop in orig ) { + if ( !( prop in event ) ) { + event[ prop ] = orig[ prop ]; + } + } + } + + this.element.trigger( event, data ); + return !( $.isFunction( callback ) && + callback.apply( this.element[0], [ event ].concat( data ) ) === false || + event.isDefaultPrevented() ); + } +}; + +$.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) { + $.Widget.prototype[ "_" + method ] = function( element, options, callback ) { + if ( typeof options === "string" ) { + options = { effect: options }; + } + var hasOptions, + effectName = !options ? + method : + options === true || typeof options === "number" ? + defaultEffect : + options.effect || defaultEffect; + options = options || {}; + if ( typeof options === "number" ) { + options = { duration: options }; + } + hasOptions = !$.isEmptyObject( options ); + options.complete = callback; + if ( options.delay ) { + element.delay( options.delay ); + } + if ( hasOptions && $.effects && $.effects.effect[ effectName ] ) { + element[ method ]( options ); + } else if ( effectName !== method && element[ effectName ] ) { + element[ effectName ]( options.duration, options.easing, callback ); + } else { + element.queue(function( next ) { + $( this )[ method ](); + if ( callback ) { + callback.call( element[ 0 ] ); + } + next(); + }); + } + }; +}); + +})); diff --git a/templates/client/base_catalog.html b/templates/client/base_catalog.html index 42d7fcaa..47a3ad79 100644 --- a/templates/client/base_catalog.html +++ b/templates/client/base_catalog.html @@ -1,4 +1,4 @@ -{% extends 'blank.html' %} +{% extends 'client/blank.html' %} {% load static %} {% load i18n %} diff --git a/templates/client/fileupload/fileupload/picture_angular_form.html b/templates/client/fileupload/fileupload/picture_angular_form.html new file mode 100644 index 00000000..a5ac9c09 --- /dev/null +++ b/templates/client/fileupload/fileupload/picture_angular_form.html @@ -0,0 +1,207 @@ + + + + + + + +jQuery File Upload Demo - AngularJS version + + + + + + + + + + + + + + + + +
+

Django jQuery File Upload Demo

+

AngularJS version

+ +
+
+

File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for AngularJS.
+ Supports cross-domain, chunked and resumable file uploads and client-side image resizing.

+
+
+ +
{% csrf_token %} + + + +
+
+ + + + Add files... + + + + + +
+
+ +
+ +
+ +
 
+
+
+ {% verbatim %} + + + + + + + + +
+
+ +
+
+
+

+ + {{file.name}} + {{file.name}} + + {{file.name}} +

+
Error {{file.error}}
+
+

{{file.size | formatFileSize}}

+
+
+ + + +
+ {% endverbatim %} +
+
+
+
+

Demo Notes

+
+
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/client/fileupload/fileupload/picture_basic_form.html b/templates/client/fileupload/fileupload/picture_basic_form.html new file mode 100644 index 00000000..6bd17a40 --- /dev/null +++ b/templates/client/fileupload/fileupload/picture_basic_form.html @@ -0,0 +1,130 @@ + + + + + + +Django jQuery File Upload Demo - Basic version + + + + + + + + + + + +
+

Django jQuery File Upload Demo

+

Basic version

+ +
+
+

File Upload widget with multiple file selection, drag&drop support and progress bar for jQuery.
+ Supports cross-domain, chunked and resumable file uploads.

+
+
+ + + + Select files... + + + +
+
+ +
+
+
+ +
+
+
+
+

Demo Notes

+
+
+ +
+
+
+ + + + + + + + + + + + + diff --git a/templates/client/fileupload/fileupload/picture_basicplus_form.html b/templates/client/fileupload/fileupload/picture_basicplus_form.html new file mode 100644 index 00000000..eb1cc1c5 --- /dev/null +++ b/templates/client/fileupload/fileupload/picture_basicplus_form.html @@ -0,0 +1,221 @@ + + + + + + +jQuery File Upload Demo - Basic Plus version + + + + + + + + + + + +
+

Django jQuery File Upload Demo

+

Basic Plus version

+ +
+
+

File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery.
+ Supports cross-domain, chunked and resumable file uploads and client-side image resizing.

+
+
+ + + + Add files... + + + +
+
+ +
+
+
+ +
+
+
+
+

Demo Notes

+
+
+
    +
  • The maximum file size for uploads in this demo is 5 MB (default file size is unlimited).
  • +
  • Only image files (JPG, GIF, PNG) are allowed in this demo (by default there is no file type restriction).
  • +
  • You can drag & drop files from your desktop on this webpage (see Browser support).
  • +
  • Please refer to the project website and documentation for more information.
  • +
  • Built with Twitter's Bootstrap CSS framework and Icons from Glyphicons.
  • +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/client/fileupload/fileupload/picture_form.html b/templates/client/fileupload/fileupload/picture_form.html new file mode 100644 index 00000000..a3cb5767 --- /dev/null +++ b/templates/client/fileupload/fileupload/picture_form.html @@ -0,0 +1,102 @@ +{% extends "client/fileupload/upload_base.html" %} +{% load upload_tags %} +{% load staticfiles %} + +{% block content %} +
+ + +
{% csrf_token %} + + + +
+
+ + + + Add files... + + + + + + + + +
+ +
+ +
+
+
+ +
 
+
+
+ + +
+
+ +
+ + +{% upload_js %} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +{% endblock %} \ No newline at end of file diff --git a/templates/client/fileupload/fileupload/picture_jquery_form.html b/templates/client/fileupload/fileupload/picture_jquery_form.html new file mode 100644 index 00000000..cf0ed04c --- /dev/null +++ b/templates/client/fileupload/fileupload/picture_jquery_form.html @@ -0,0 +1,255 @@ + + + + + + + +Django jQuery File Upload Demo - jQuery UI version + + + + + + + + + + + + + + + + + +

Django jQuery File Upload Demo

+

jQuery UI version

+
+ + +
+ +
+

File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for jQuery UI.
+ Supports cross-domain, chunked and resumable file uploads and client-side image resizing.

+
+ +
{% csrf_token %} + + + +
+
+ + + Add files... + + + + + + + + +
+ + +
+ +
+
+
+

Demo Notes

+
    +
  • The maximum file size for uploads in this demo is 5 MB (default file size is unlimited).
  • +
  • Only image files (JPG, GIF, PNG) are allowed in this demo (by default there is no file type restriction).
  • +
  • Uploaded files will be deleted automatically after 5 minutes (demo setting).
  • +
  • You can drag & drop files from your desktop on this webpage (see Browser support).
  • +
  • Please refer to the project website and documentation for more information.
  • +
  • Built with jQuery UI.
  • +
+ + +{% verbatim %} + + + + +{% endverbatim %} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/client/fileupload/upload_base.html b/templates/client/fileupload/upload_base.html new file mode 100644 index 00000000..1700c17b --- /dev/null +++ b/templates/client/fileupload/upload_base.html @@ -0,0 +1,52 @@ + +{% load staticfiles %} + + + + + + Django Jquery file upload demo + + + + + + + + + + + + + + + + + + +{% block content %} +

No content set

+{% endblock %} + + + diff --git a/wizard/urls.py b/wizard/urls.py index 188c3901..d04ce133 100644 --- a/wizard/urls.py +++ b/wizard/urls.py @@ -1,8 +1,9 @@ -from django.conf.urls import patterns +from django.conf.urls import patterns, url, include from wizard.forms import ExpoForm1, ExpoForm2 from wizard.views import ExpoWizard urlpatterns = patterns('', - (r'^$', ExpoWizard.as_view([ExpoForm1, ExpoForm2])) + url(r'^add-photo/', include('fileupload.urls')), + url(r'^$', ExpoWizard.as_view([ExpoForm1, ExpoForm2])) ) \ No newline at end of file From b5e79649e5f55185b248241e0426efa059c6567d Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Fri, 28 Aug 2015 15:19:40 +0300 Subject: [PATCH 03/45] file upload wizard step 3 and changes from remote master to local develop --- fileupload/__init__.py | 0 fileupload/admin.py | 4 - fileupload/models.py | 29 - fileupload/response.py | 38 - fileupload/serialize.py | 38 - fileupload/templatetags/__init__.py | 0 fileupload/templatetags/upload_tags.py | 82 - fileupload/tests.py | 16 - fileupload/urls.py | 17 - fileupload/views.py | 62 - meta/models.py | 65 +- proj/settings.py | 44 +- .../file_upload/css/blueimp-gallery.min.css | 1 - static/file_upload/css/demo-ie8.css | 21 - static/file_upload/css/demo.css | 67 - .../css/jquery.fileupload-ui-noscript.css | 27 - .../file_upload/css/jquery.fileupload-ui.css | 68 - static/file_upload/css/style.css | 19 - static/file_upload/img/loading.gif | Bin 3897 -> 0 bytes static/file_upload/img/progressbar.gif | Bin 3323 -> 0 bytes static/file_upload/js/app.js | 106 -- static/file_upload/js/bootstrap.min.js | 6 - static/file_upload/js/canvas-to-blob.min.js | 1 - .../js/cors/jquery.postmessage-transport.js | 118 -- .../js/cors/jquery.xdr-transport.js | 87 -- static/file_upload/js/csrf.js | 22 - .../js/jquery.blueimp-gallery.min.js | 1 - static/file_upload/js/jquery.cookie.js | 90 -- .../js/jquery.fileupload-angular.js | 402 ----- .../file_upload/js/jquery.fileupload-audio.js | 106 -- .../file_upload/js/jquery.fileupload-image.js | 292 ---- .../js/jquery.fileupload-jquery-ui.js | 138 -- .../js/jquery.fileupload-process.js | 164 -- static/file_upload/js/jquery.fileupload-ui.js | 643 -------- .../js/jquery.fileupload-validate.js | 117 -- .../file_upload/js/jquery.fileupload-video.js | 106 -- static/file_upload/js/jquery.fileupload.js | 1336 ----------------- .../file_upload/js/jquery.iframe-transport.js | 205 --- static/file_upload/js/jquery.ui.widget.js | 282 ---- static/file_upload/js/load-image.min.js | 1 - static/file_upload/js/locale.js | 29 - static/file_upload/js/main.js | 77 - static/file_upload/js/tmpl.min.js | 1 - .../file_upload/js/vendor/jquery.ui.widget.js | 530 ------- .../fileupload/picture_angular_form.html | 207 --- .../fileupload/picture_basic_form.html | 130 -- .../fileupload/picture_basicplus_form.html | 221 --- .../fileupload/fileupload/picture_form.html | 102 -- .../fileupload/picture_jquery_form.html | 255 ---- templates/client/fileupload/upload_base.html | 52 - templates/client/wizard/third_step.html | 115 ++ wizard/forms.py | 1 + wizard/urls.py | 4 +- wizard/views.py | 31 +- 54 files changed, 248 insertions(+), 6328 deletions(-) delete mode 100644 fileupload/__init__.py delete mode 100644 fileupload/admin.py delete mode 100644 fileupload/models.py delete mode 100644 fileupload/response.py delete mode 100644 fileupload/serialize.py delete mode 100644 fileupload/templatetags/__init__.py delete mode 100644 fileupload/templatetags/upload_tags.py delete mode 100644 fileupload/tests.py delete mode 100644 fileupload/urls.py delete mode 100644 fileupload/views.py delete mode 100644 static/file_upload/css/blueimp-gallery.min.css delete mode 100644 static/file_upload/css/demo-ie8.css delete mode 100644 static/file_upload/css/demo.css delete mode 100644 static/file_upload/css/jquery.fileupload-ui-noscript.css delete mode 100644 static/file_upload/css/jquery.fileupload-ui.css delete mode 100644 static/file_upload/css/style.css delete mode 100644 static/file_upload/img/loading.gif delete mode 100644 static/file_upload/img/progressbar.gif delete mode 100644 static/file_upload/js/app.js delete mode 100644 static/file_upload/js/bootstrap.min.js delete mode 100644 static/file_upload/js/canvas-to-blob.min.js delete mode 100644 static/file_upload/js/cors/jquery.postmessage-transport.js delete mode 100644 static/file_upload/js/cors/jquery.xdr-transport.js delete mode 100644 static/file_upload/js/csrf.js delete mode 100644 static/file_upload/js/jquery.blueimp-gallery.min.js delete mode 100644 static/file_upload/js/jquery.cookie.js delete mode 100644 static/file_upload/js/jquery.fileupload-angular.js delete mode 100644 static/file_upload/js/jquery.fileupload-audio.js delete mode 100644 static/file_upload/js/jquery.fileupload-image.js delete mode 100644 static/file_upload/js/jquery.fileupload-jquery-ui.js delete mode 100644 static/file_upload/js/jquery.fileupload-process.js delete mode 100644 static/file_upload/js/jquery.fileupload-ui.js delete mode 100644 static/file_upload/js/jquery.fileupload-validate.js delete mode 100644 static/file_upload/js/jquery.fileupload-video.js delete mode 100644 static/file_upload/js/jquery.fileupload.js delete mode 100644 static/file_upload/js/jquery.iframe-transport.js delete mode 100644 static/file_upload/js/jquery.ui.widget.js delete mode 100644 static/file_upload/js/load-image.min.js delete mode 100644 static/file_upload/js/locale.js delete mode 100644 static/file_upload/js/main.js delete mode 100644 static/file_upload/js/tmpl.min.js delete mode 100644 static/file_upload/js/vendor/jquery.ui.widget.js delete mode 100644 templates/client/fileupload/fileupload/picture_angular_form.html delete mode 100644 templates/client/fileupload/fileupload/picture_basic_form.html delete mode 100644 templates/client/fileupload/fileupload/picture_basicplus_form.html delete mode 100644 templates/client/fileupload/fileupload/picture_form.html delete mode 100644 templates/client/fileupload/fileupload/picture_jquery_form.html delete mode 100644 templates/client/fileupload/upload_base.html create mode 100644 templates/client/wizard/third_step.html diff --git a/fileupload/__init__.py b/fileupload/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/fileupload/admin.py b/fileupload/admin.py deleted file mode 100644 index faa5cdc2..00000000 --- a/fileupload/admin.py +++ /dev/null @@ -1,4 +0,0 @@ -from fileupload.models import Picture -from django.contrib import admin - -admin.site.register(Picture) \ No newline at end of file diff --git a/fileupload/models.py b/fileupload/models.py deleted file mode 100644 index 1150bf0d..00000000 --- a/fileupload/models.py +++ /dev/null @@ -1,29 +0,0 @@ -# encoding: utf-8 -from django.db import models - - -class Picture(models.Model): - """This is a small demo using just two fields. The slug field is really not - necessary, but makes the code simpler. ImageField depends on PIL or - pillow (where Pillow is easily installable in a virtualenv. If you have - problems installing pillow, use a more generic FileField instead. - - """ - file = models.ImageField(upload_to="wizard_pictures") - slug = models.SlugField(max_length=50, blank=True) - - def __unicode__(self): - return self.file.name - - @models.permalink - def get_absolute_url(self): - return ('upload-new', ) - - def save(self, *args, **kwargs): - self.slug = self.file.name - super(Picture, self).save(*args, **kwargs) - - def delete(self, *args, **kwargs): - """delete -- Remove to leave file.""" - self.file.delete(False) - super(Picture, self).delete(*args, **kwargs) diff --git a/fileupload/response.py b/fileupload/response.py deleted file mode 100644 index 334eb29e..00000000 --- a/fileupload/response.py +++ /dev/null @@ -1,38 +0,0 @@ -# encoding: utf-8 -from django.http import HttpResponse -import json - -MIMEANY = '*/*' -MIMEJSON = 'application/json' -MIMETEXT = 'text/plain' - - -def response_mimetype(request): - """response_mimetype -- Return a proper response mimetype, accordingly to - what the client accepts, as available in the `HTTP_ACCEPT` header. - - request -- a HttpRequest instance. - - """ - can_json = MIMEJSON in request.META['HTTP_ACCEPT'] - can_json |= MIMEANY in request.META['HTTP_ACCEPT'] - return MIMEJSON if can_json else MIMETEXT - - -class JSONResponse(HttpResponse): - """JSONResponse -- Extends HTTPResponse to handle JSON format response. - - This response can be used in any view that should return a json stream of - data. - - Usage: - - def a_iew(request): - content = {'key': 'value'} - return JSONResponse(content, mimetype=response_mimetype(request)) - - """ - def __init__(self, obj='', json_opts=None, mimetype=MIMEJSON, *args, **kwargs): - json_opts = json_opts if isinstance(json_opts, dict) else {} - content = json.dumps(obj, **json_opts) - super(JSONResponse, self).__init__(content, mimetype, *args, **kwargs) diff --git a/fileupload/serialize.py b/fileupload/serialize.py deleted file mode 100644 index 4494e79f..00000000 --- a/fileupload/serialize.py +++ /dev/null @@ -1,38 +0,0 @@ -# encoding: utf-8 -import mimetypes -import re -from django.core.urlresolvers import reverse - - -def order_name(name): - """order_name -- Limit a text to 20 chars length, if necessary strips the - middle of the text and substitute it for an ellipsis. - - name -- text to be limited. - - """ - name = re.sub(r'^.*/', '', name) - if len(name) <= 20: - return name - return name[:10] + "..." + name[-7:] - - -def serialize(instance, file_attr='file'): - """serialize -- Serialize a Picture instance into a dict. - - instance -- Picture instance - file_attr -- attribute name that contains the FileField or ImageField - - """ - obj = getattr(instance, file_attr) - return { - 'url': obj.url, - 'name': order_name(obj.name), - 'type': mimetypes.guess_type(obj.path)[0] or 'image/png', - 'thumbnailUrl': obj.url, - 'size': obj.size, - 'deleteUrl': reverse('upload-delete', args=[instance.pk]), - 'deleteType': 'DELETE', - } - - diff --git a/fileupload/templatetags/__init__.py b/fileupload/templatetags/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/fileupload/templatetags/upload_tags.py b/fileupload/templatetags/upload_tags.py deleted file mode 100644 index d492e0ba..00000000 --- a/fileupload/templatetags/upload_tags.py +++ /dev/null @@ -1,82 +0,0 @@ -from django import template - -register = template.Library() - -@register.simple_tag -def upload_js(): - return """ - - - - -""" - - - - - - diff --git a/fileupload/tests.py b/fileupload/tests.py deleted file mode 100644 index 501deb77..00000000 --- a/fileupload/tests.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -This file demonstrates writing tests using the unittest module. These will pass -when you run "manage.py test". - -Replace this with more appropriate tests for your application. -""" - -from django.test import TestCase - - -class SimpleTest(TestCase): - def test_basic_addition(self): - """ - Tests that 1 + 1 always equals 2. - """ - self.assertEqual(1 + 1, 2) diff --git a/fileupload/urls.py b/fileupload/urls.py deleted file mode 100644 index 27dbdd1e..00000000 --- a/fileupload/urls.py +++ /dev/null @@ -1,17 +0,0 @@ -# encoding: utf-8 -from django.conf.urls import patterns, url -from fileupload.views import ( - BasicVersionCreateView, BasicPlusVersionCreateView, - jQueryVersionCreateView, AngularVersionCreateView, - PictureCreateView, PictureDeleteView, PictureListView, - ) - -urlpatterns = patterns('', - # url(r'^basic/$', BasicVersionCreateView.as_view(), name='upload-basic'), - # url(r'^basic/plus/$', BasicPlusVersionCreateView.as_view(), name='upload-basic-plus'), - url(r'^new/$', PictureCreateView.as_view(), name='upload-new'), - # url(r'^angular/$', AngularVersionCreateView.as_view(), name='upload-angular'), - # url(r'^jquery-ui/$', jQueryVersionCreateView.as_view(), name='upload-jquery'), - url(r'^delete/(?P\d+)$', PictureDeleteView.as_view(), name='upload-delete'), - url(r'^view/$', PictureListView.as_view(), name='upload-view'), -) diff --git a/fileupload/views.py b/fileupload/views.py deleted file mode 100644 index 360c1933..00000000 --- a/fileupload/views.py +++ /dev/null @@ -1,62 +0,0 @@ -# encoding: utf-8 -import json - -from django.http import HttpResponse -from django.views.generic import CreateView, DeleteView, ListView -from .models import Picture -from .response import JSONResponse, response_mimetype -from .serialize import serialize - - -class PictureCreateView(CreateView): - model = Picture - fields = "__all__" - template_name = 'client/fileupload/fileupload/picture_form.html' - - def form_valid(self, form): - self.object = form.save() - files = [serialize(self.object)] - data = {'files': files} - response = JSONResponse(data, mimetype=response_mimetype(self.request)) - response['Content-Disposition'] = 'inline; filename=files.json' - return response - - def form_invalid(self, form): - data = json.dumps(form.errors) - return HttpResponse(content=data, status=400, content_type='application/json') - -class BasicVersionCreateView(PictureCreateView): - template_name = 'client/fileupload/fileupload/picture_basic_form.html' - - -class BasicPlusVersionCreateView(PictureCreateView): - template_name = 'client/fileupload/fileupload/picture_basicplus_form.html' - -class AngularVersionCreateView(PictureCreateView): - template_name = 'client/fileupload/fileupload/picture_angular_form.html' - - -class jQueryVersionCreateView(PictureCreateView): - template_name = 'client/fileupload/fileupload/picture_jquery_form.html' - - -class PictureDeleteView(DeleteView): - model = Picture - - def delete(self, request, *args, **kwargs): - self.object = self.get_object() - self.object.delete() - response = JSONResponse(True, mimetype=response_mimetype(request)) - response['Content-Disposition'] = 'inline; filename=files.json' - return response - - -class PictureListView(ListView): - model = Picture - - def render_to_response(self, context, **response_kwargs): - files = [ serialize(p) for p in self.get_queryset() ] - data = {'files': files} - response = JSONResponse(data, mimetype=response_mimetype(self.request)) - response['Content-Disposition'] = 'inline; filename=files.json' - return response diff --git a/meta/models.py b/meta/models.py index ede47701..79d02800 100644 --- a/meta/models.py +++ b/meta/models.py @@ -113,4 +113,67 @@ class MetaSetting(TranslatableModel): return [] -post_save.connect(post_save_handler, sender=MetaSetting) \ No newline at end of file +post_save.connect(post_save_handler, sender=MetaSetting) + +# SEO - tests # + +from django.db import models +from hvad.models import TranslatableModel, TranslatedFields +from django.conf import settings +from django.core.urlresolvers import reverse_lazy +from django.core.cache import cache + + +class SeoTextManager(TranslationManager): + cache_time = 120 + + def cache_get(self, *args, **kwargs): + url = kwargs.get('url',None) + lang = kwargs.get('lang')[:2] or translation.get_language()[:2] + key = 'seo_text_cache' + result = cache.get(key) + if result: + return result.get(lang+'_' + url) + + qs = SeoText.objects.language('all') + value_dict = {obj.language_code+'_'+obj.url:obj for obj in qs} + cache.set(key, value_dict, self.cache_time) + return value_dict.get(lang+'_'+url) + + + +class SeoText(TranslatableModel): + + url = models.CharField(max_length=50, unique=True) + + translations = TranslatedFields( + title=models.CharField(max_length=255), + body=models.TextField() + ) + + objects = SeoTextManager() + + def get_absolute_url(self): + return reverse_lazy('seo_all') + + def save(self, *args, **kwargs): + super(SeoText,self).save(*args, **kwargs) + + all_field_names = list(self._translated_field_names) + clear_f_n = [] + for field_name in all_field_names: + if field_name not in ['master', 'master_id', u'id', 'language_code']: + clear_f_n.append(field_name) + field_items = {field_name:getattr(self, field_name) for field_name in clear_f_n} + + langs = [lan[0] for lan in settings.LANGUAGES] + for lang in langs: + if lang not in self.get_available_languages(): + self.translate(lang) + for field in clear_f_n: + setattr(self, field, field_items.get(field, '')) + super(SeoText,self).save(*args, **kwargs) + return SeoText + + def __unicode__(self): + return self.url \ No newline at end of file diff --git a/proj/settings.py b/proj/settings.py index fff456c2..4a8d8883 100644 --- a/proj/settings.py +++ b/proj/settings.py @@ -224,6 +224,9 @@ SOCIAL_AUTH_USER_MODEL = 'accounts.User' SOCIAL_AUTH_USERNAME_IS_FULL_EMAIL = True #SOCIAL_AUTH_STORAGE = 'social.apps.django_app.me.models.DjangoStorage' +SOCIAL_AUTH_USERNAME_IS_FULL_EMAIL = True + + SOCIAL_AUTH_PIPELINE = ( 'social.pipeline.social_auth.social_details', 'social.pipeline.social_auth.social_uid', @@ -231,36 +234,53 @@ SOCIAL_AUTH_PIPELINE = ( 'social.pipeline.social_auth.auth_allowed', 'social.pipeline.social_auth.social_user', 'social.pipeline.user.get_username', + 'functions.pipeline.require_email', + #'social.pipeline.mail.mail_validation', 'functions.pipeline.create_user', #'social.pipeline.user.create_user', + 'social.pipeline.social_auth.associate_by_email', 'social.pipeline.social_auth.associate_user', 'social.pipeline.social_auth.load_extra_data', 'social.pipeline.user.user_details' ) +REQUIRES_EMAIL_VALIDATION = True +SOCIAL_AUTH_EMAIL_VALIDATION_FUNCTION = 'functions.pipeline.SendVerificationEmail' +SOCIAL_AUTH_EMAIL_VALIDATION_URL = '/email_verify_sent/' + + SOCIAL_AUTH_VK_OAUTH2_KEY = '3393841' SOCIAL_AUTH_VK_OAUTH2_SECRET = '2P19EBUEpLZifaabbREv' +SOCIAL_AUTH_VK_OAUTH2_SCOPE =['email'] +SOCIAL_AUTH_VK_OAUTH2_PROFILE_EXTRA_PARAMS = { + 'fields': 'email' +} SOCIAL_AUTH_FACEBOOK_KEY = '133775720059470' SOCIAL_AUTH_FACEBOOK_SECRET = '434edf89c24a290497646a739df656c6' +SOCIAL_AUTH_FACEBOOK_SCOPE = ['email', 'publish_actions'] SOCIAL_AUTH_TWITTER_KEY = 'S6NX33FazTcWuqnXQhlOdg' SOCIAL_AUTH_TWITTER_SECRET = 'MxUGfySQmLI5kvqSoAtWsGje2eAHQL7Jo8mXuIZ4D0' +SOCIAL_AUTH_TWITTER_SCOPE = ['email'] SOCIAL_AUTH_GOOGLE_OAUTH_KEY = '1044044901114.apps.googleusercontent.com' SOCIAL_AUTH_GOOGLE_OAUTH_SECRET = 'j_McErlPPof88eNrmOXI-ZXI' +SOCIAL_AUTH_GOOGLE_OAUTH_SCOPE = ['email'] SOCIAL_AUTH_MAILRU_OAUTH2_KEY = '697945' SOCIAL_AUTH_MAILRU_OAUTH2_SECRET = '343581b9e31961b334532cc1880066e8' +SOCIAL_AUTH_MAILRU_OAUTH2_SCOPE = ['email'] SOCIAL_AUTH_ODNOKLASSNIKI_OAUTH2_KEY = 'CBAQDCKIABABABABA' SOCIAL_AUTH_ODNOKLASSNIKI_OAUTH2_SECRET = '814CDDCD3E2D2F278EF1591B' SOCIAL_AUTH_ODNOKLASSNIKI_OAUTH2_PUBLIC_NAME = '128007936' +SOCIAL_AUTH_ODNOKLASSNIKI_OAUTH2_PUBLIC_SCOPE = ['email'] SOCIAL_AUTH_LINKEDIN_KEY = 'jt9xwquj1fkd' SOCIAL_AUTH_LINKEDIN_SECRET = 'GvM2xQCNADaBfiMy' - +SOCIAL_AUTH_LINKEDIN_SCOPE = ['email'] INSTALLED_APPS = ( @@ -316,7 +336,6 @@ INSTALLED_APPS = ( 'password_reset', # reset password 'django_crontab', # crons 'social.apps.django_app.default', # social auth, - 'fileupload', ) @@ -459,4 +478,23 @@ if DEBUG: # 'INTERCEPT_REDIRECTS': False, #} -""" \ No newline at end of file +""" + +LOGGING = { + 'version': 1, + 'disable_existing_loggers': True, + 'handlers': { + 'file': { + 'level': 'DEBUG', + 'class': 'logging.FileHandler', + 'filename': '/var/log/django_debug.log', + }, + }, + 'loggers': { + 'django.request': { + 'handlers': ['file'], + 'level': 'DEBUG', + 'propagate': True, + }, + }, +} \ No newline at end of file diff --git a/static/file_upload/css/blueimp-gallery.min.css b/static/file_upload/css/blueimp-gallery.min.css deleted file mode 100644 index 7cfad0c4..00000000 --- a/static/file_upload/css/blueimp-gallery.min.css +++ /dev/null @@ -1 +0,0 @@ -@charset 'UTF-8';.blueimp-gallery,.blueimp-gallery>.slides>.slide>.slide-content{position:absolute;top:0;right:0;bottom:0;left:0;-moz-backface-visibility:hidden}.blueimp-gallery>.slides>.slide>.slide-content{margin:auto;max-width:100%;max-height:100%;opacity:1}.blueimp-gallery{position:fixed;z-index:9999;overflow:hidden;background:#000;background:rgba(0,0,0,0.9);opacity:0;visibility:hidden;display:none;direction:ltr;-ms-touch-action:none}.blueimp-gallery-carousel{position:relative;z-index:auto;height:432px;max-width:768px;margin:1em auto;box-shadow:0 0 10px #000}.blueimp-gallery-display{display:block;visibility:visible;opacity:1}.blueimp-gallery>.slides{position:relative;height:100%;overflow:hidden}.blueimp-gallery>.slides>.slide{position:relative;float:left;height:100%;text-align:center;-webkit-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);-moz-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);-ms-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);-o-transition-timing-function:cubic-bezier(0.645,0.045,0.355,1);transition-timing-function:cubic-bezier(0.645,0.045,0.355,1)}.blueimp-gallery,.blueimp-gallery>.slides>.slide>.slide-content{-webkit-transition:opacity .5s linear;-moz-transition:opacity .5s linear;-ms-transition:opacity .5s linear;-o-transition:opacity .5s linear;transition:opacity .5s linear}.blueimp-gallery>.slides>.slide-loading{background:url(../img/loading.gif) center no-repeat;background-size:64px 64px}.blueimp-gallery>.slides>.slide-loading>.slide-content{opacity:0}.blueimp-gallery>.slides>.slide-error{background:url(../img/error.png) center no-repeat}.blueimp-gallery>.slides>.slide-error>.slide-content{display:none}.blueimp-gallery>.prev,.blueimp-gallery>.next{position:absolute;top:50%;left:15px;width:40px;height:40px;margin-top:-23px;font-family:'Helvetica Neue',Helvetica,Arial,sans-serif;font-size:60px;font-weight:100;line-height:30px;color:#fff;text-decoration:none;text-shadow:0 0 2px #000;text-align:center;background:#222;background:rgba(0,0,0,0.5);-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;border:3px solid #fff;-webkit-border-radius:23px;-moz-border-radius:23px;border-radius:23px;opacity:.5;cursor:pointer;display:none}.blueimp-gallery>.next{left:auto;right:15px}.blueimp-gallery>.close,.blueimp-gallery>.title{position:absolute;top:15px;left:15px;margin:0 40px 0 0;font-size:20px;line-height:30px;color:#fff;text-shadow:0 0 2px #000;opacity:.8;display:none}.blueimp-gallery>.close{padding:15px;right:15px;left:auto;margin:-15px;font-size:30px;text-decoration:none;cursor:pointer}.blueimp-gallery>.play-pause{position:absolute;right:15px;bottom:15px;width:15px;height:15px;background:url(../img/play-pause.png) 0 0 no-repeat;cursor:pointer;opacity:.5;display:none}.blueimp-gallery-playing>.play-pause{background-position:-15px 0}.blueimp-gallery-controls>.prev,.blueimp-gallery-controls>.next,.blueimp-gallery-controls>.close,.blueimp-gallery-controls>.title,.blueimp-gallery-controls>.play-pause{display:block;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.blueimp-gallery-single>.prev,.blueimp-gallery-left>.prev,.blueimp-gallery-single>.next,.blueimp-gallery-right>.next,.blueimp-gallery-single>.play-pause{display:none}.blueimp-gallery>.slides>.slide>.slide-content,.blueimp-gallery>.prev,.blueimp-gallery>.next,.blueimp-gallery>.close,.blueimp-gallery>.play-pause{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}body:last-child .blueimp-gallery>.slides>.slide-error{background-image:url(../img/error.svg)}body:last-child .blueimp-gallery>.play-pause{width:20px;height:20px;background-size:40px 20px;background-image:url(../img/play-pause.svg)}body:last-child .blueimp-gallery-playing>.play-pause{background-position:-20px 0}@media(max-width:767px){.blueimp-gallery-carousel{height:270px;max-width:480px}}*+html .blueimp-gallery>.slides>.slide{min-height:300px}*+html .blueimp-gallery>.slides>.slide>.slide-content{position:relative}.blueimp-gallery>.indicator{position:absolute;top:auto;right:15px;bottom:15px;left:15px;margin:0 40px;padding:0;list-style:none;text-align:center;line-height:10px;display:none}.blueimp-gallery>.indicator>li{display:inline-block;width:9px;height:9px;margin:6px 3px 0 3px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;border:1px solid transparent;background:#ccc;background:rgba(255,255,255,0.25) center no-repeat;border-radius:5px;box-shadow:0 0 2px #000;opacity:.5;cursor:pointer}.blueimp-gallery>.indicator>.active{background-color:#fff;border-color:#fff;opacity:.8}.blueimp-gallery-controls>.indicator{display:block;-webkit-transform:translateZ(0);-moz-transform:translateZ(0);-ms-transform:translateZ(0);-o-transform:translateZ(0);transform:translateZ(0)}.blueimp-gallery-single>.indicator{display:none}.blueimp-gallery>.indicator{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}*+html .blueimp-gallery>.indicator>li{display:inline}.blueimp-gallery>.slides>.slide>.video-content>video,.blueimp-gallery>.slides>.slide>.video-content>img{position:absolute;top:0;right:0;bottom:0;left:0;-moz-backface-visibility:hidden}.blueimp-gallery>.slides>.slide>.video-content>video,.blueimp-gallery>.slides>.slide>.video-content>img{margin:auto;max-width:100%;max-height:100%;opacity:1}.blueimp-gallery>.slides>.slide>.video-content>a{position:absolute;top:50%;right:0;left:0;margin:-64px auto 0;width:128px;height:128px;background:url(../img/video-play.png) center no-repeat;opacity:.8;cursor:pointer}.blueimp-gallery>.slides>.slide>.video-playing>a,.blueimp-gallery>.slides>.slide>.video-playing>img{display:none}.blueimp-gallery>.slides>.slide>.video-content>video{display:none}.blueimp-gallery>.slides>.slide>.video-playing>video{display:block}.blueimp-gallery>.slides>.slide>.video-loading>a{background:url(../img/loading.gif) center no-repeat;background-size:64px 64px}body:last-child .blueimp-gallery>.slides>.slide>.video-content>a{background-image:url(../img/video-play.svg)}*+html .blueimp-gallery>.slides>.slide>.video-content{height:100%}*+html .blueimp-gallery>.slides>.slide>.video-content>a{left:50%;margin-left:-64px} \ No newline at end of file diff --git a/static/file_upload/css/demo-ie8.css b/static/file_upload/css/demo-ie8.css deleted file mode 100644 index 262493d0..00000000 --- a/static/file_upload/css/demo-ie8.css +++ /dev/null @@ -1,21 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload Demo CSS Fixes for IE<9 1.0.0 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -.navigation { - list-style: none; - padding: 0; - margin: 1em 0; -} -.navigation li { - display: inline; - margin-right: 10px; -} diff --git a/static/file_upload/css/demo.css b/static/file_upload/css/demo.css deleted file mode 100644 index 841f80d1..00000000 --- a/static/file_upload/css/demo.css +++ /dev/null @@ -1,67 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload Demo CSS 1.0.2 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -body { - max-width: 750px; - margin: 0 auto; - padding: 1em; - font-family: 'Lucida Grande', 'Lucida Sans Unicode', Arial, sans-serif; - font-size: 1em; - line-height: 1.4em; - background: #222; - color: #fff; - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; -} -a { - color: orange; - text-decoration: none; -} -img { - border: 0; - vertical-align: middle; -} -h1 { - line-height: 1em; -} -blockquote { - padding: 0 0 0 15px; - margin: 0 0 20px; - border-left: 5px solid #eee; -} -table { - width: 100%; - margin: 10px 0; -} - -.fileupload-progress { - margin: 10px 0; -} -.fileupload-progress .progress-extended { - margin-top: 5px; -} -.error { - color: red; -} - -@media (min-width: 481px) { - .navigation { - list-style: none; - padding: 0; - } - .navigation li { - display: inline-block; - } - .navigation li:not(:first-child):before { - content: '| '; - } -} diff --git a/static/file_upload/css/jquery.fileupload-ui-noscript.css b/static/file_upload/css/jquery.fileupload-ui-noscript.css deleted file mode 100644 index c4504855..00000000 --- a/static/file_upload/css/jquery.fileupload-ui-noscript.css +++ /dev/null @@ -1,27 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload UI Plugin NoScript CSS 1.0 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2012, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -.fileinput-button input { - position: static; - opacity: 1; - filter: none; - transform: none; - font-size: inherit; - direction: inherit; -} - -.fileinput-button span, -.fileinput-button i, -.fileupload-buttonbar .delete, -.fileupload-buttonbar .toggle { - display: none; -} diff --git a/static/file_upload/css/jquery.fileupload-ui.css b/static/file_upload/css/jquery.fileupload-ui.css deleted file mode 100644 index f81b34c7..00000000 --- a/static/file_upload/css/jquery.fileupload-ui.css +++ /dev/null @@ -1,68 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload UI Plugin CSS 8.8.1 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2010, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -.fileinput-button { - position: relative; - overflow: hidden; -} -.fileinput-button input { - position: absolute; - top: 0; - right: 0; - margin: 0; - opacity: 0; - filter: alpha(opacity=0); - transform: translate(-300px, 0) scale(4); - font-size: 23px; - direction: ltr; - cursor: pointer; -} -.fileupload-buttonbar .btn, -.fileupload-buttonbar .toggle { - margin-bottom: 5px; -} -.progress-animated .progress-bar, -.progress-animated .bar { - background: url(../img/progressbar.gif) !important; - filter: none; -} -.fileupload-loading { - float: right; - width: 32px; - height: 32px; - background: url(../img/loading.gif) center no-repeat; - background-size: contain; - display: none; -} -.fileupload-processing .fileupload-loading { - display: block; -} -.files audio, -.files video { - max-width: 300px; -} - -@media (max-width: 767px) { - .fileupload-buttonbar .toggle, - .files .toggle, - .files .btn span { - display: none; - } - .files .name { - width: 80px; - word-wrap: break-word; - } - .files audio, - .files video { - max-width: 80px; - } -} diff --git a/static/file_upload/css/style.css b/static/file_upload/css/style.css deleted file mode 100644 index 6f1a7f2d..00000000 --- a/static/file_upload/css/style.css +++ /dev/null @@ -1,19 +0,0 @@ -@charset "UTF-8"; -/* - * jQuery File Upload Plugin CSS Example 8.8.2 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -body { - padding-top: 60px; -} - -.preview img { - max-height:50px; -} \ No newline at end of file diff --git a/static/file_upload/img/loading.gif b/static/file_upload/img/loading.gif deleted file mode 100644 index 90f28cbdbb390b095e0d619cbe8d91208798e58f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3897 zcmZvfcR1T?8^ABwb_x$y{p1+>Yb$`dLr?0DW)y5y-57+?!PEJmyrlv?FQgU)K z^$+m(2RfoVbqYWS0G%+J=-j=drD>|8AS+KxL%o*)0)PM?>H*Mx2iHt~mnWZ=N>W+t zB|S>mk9=ZpYXc!T7UZI&`(-T$A=k$fH%{0DUBGwg!#nk?dE^E3gDApBHVTIQQFjd% z@8i*q&q?bJ^`q%$4G<}clybdVd-s{xsx+KupPg;W4bOvd7w*pJ;3oEg_PFlG;yL8+oShz**1=iDRZ*E(Q<#5R=A*XP5H_Y=1xJoCem%-&eKb6zV0ff z>legqW&{=3KP~Y8@#^3-+sNyevrSganP&X1J3*?KZrnP&@8z-DF>$5H-D+bme&k}k z=b(j;=N4)0R8Q6PZLj2pkrz)`V_M!E?dlE7mCX3opU@wz96Zurx4FmWL37=7TCuG9 z`GkMU?-=3W2u(X1pJ+1-D8$#M3IyxB%pDQB;2(M(eo?G5D~tz~6dTT3ItGfkWI&$< z&#Xo;(n_Kq+TlC@hpWm<{qK@(J8G++We#hbNi^se<6nV2;T4 zNDqriR!3dHvF711Txh1!vT{};LzV^uLH;6l)wR@$;KDJa`VOrZ+ccMJt-r043s&2t^bewdCj@xurE^v)WL95dQ z!~&h-7Yqg)+cJl7{=U2?_+E7^{JVv*AQbVh@R_RBt12dDs-#^ZEg=TA;LKR69HAv*?v1IO*LrVkl0@jm)`Yw>Ei;Cb<`Ge=JHj9g^C7+M?`w@g>lBl#q%UG z`}!%t5@M1z}?nB z*Tj60Y$FR82XGHd41y*mrUDeYh38hddS#Y*SGE@ZP#F{1I^fy8Y9@AY`0m};Z?t1t zvl@XaOzm2oTG^`5GXjVpu-2S*n4*kB%YDv4k&aM?8%y+(ZsV3)1mZz23da;)wH@7&`|Ado=<=+Ih>-Zw;?kA^kOQDkl*L3<;+? z<|M0rPu_-Pn1S;!V&9?Lji{M@0Mr#T9>Bk`lq`z3P)1&h>Ho;*au|vDvsVjp-qT0e z*UUfQ?Gpz$g9n2bA}a7zWNb7tHVzcwml}2{C{dOsk47z6B0pahT~Ju4TqIILBp68& zNmxrkQf(GrV^cF{Yg;>8XC;}Vr=*X4p!6N-twSOZPz$&PLr@%}eIZ zD~Lt1l{LgdQhk+JLo-cX3#q!jvb?Lbps#;m@ZHexhyq{?ko#d0H90e$K08CzSlrS) zWo6dl)B48d)b`HU-u~MD$9uai7`L)G>3*T{10aZCYqqL(n*#FQw0j@zj_M(+#c zyVt!MW{V+4vZ?)+0bac?NfTw2K79`dH+R{6nT57bfL{LIoi7Ag$(vz$+eju9d$7B zJG&Z{dzkyk1G(>p`qfHW#%#yxr>AUYK0KOvygWa*I`naEY4hR2MjvI{YUR`Z@fYi( z@9Pv+(V>39D#Fg`k5 zAvd8jHQhWpvV^33oSVP7D7mS*y)&b|zlvB`kzM|}?rCIuU=S7LEHVa$xY zK7bdtLDWL^SFw^20+{?ObjZr9KUx(0o0SBj_xZyoID`D^`r^?VSAjk}{spA|BzpP` z*n{4_ZGkmTM)r5(MRv|pCYSwXX2mHCy0;?C3wFJlI=Ud1imCcH_f;o6U;m-fmBwF| zxeaFV_F$)h(s28}mNsGy`ZELug@>6%MYAH2>|xIMd-hlX4DyCpx2_fIxR&9HR| zOo=QmRf1OdI|P;~oA(JKyL+Po2Z!q-^EdYxV{T>gIls8gp+tex@r9h|)?()zIoc!` z<-T`fILv04Ax z`;g5e;{OrXwNr!u98>p5O4V$kGW+Q$xy7wyq-@a{rvp{O^`YL+YM=2l%U^u_1752E zp+H?P>LBTO+=z(KcG8T2As`wFiAndgQX_?Fb7*g8g`&_orui5i9PU;=s2FX6FR#co zE~~Dn%@VI68P?So8?|?o7*sXav^B}J^pd-Y`tL^zz~d9Gy3^POy}9|$k4r+sE2(Oq zblxd%Y40fR?Z;>w9%bM7>MRCe0$W>a1Ua)1%pg!3Ef2a&@`nE+@wdq?gKL=1$&mG5 zc=xRumn_dNMN(4+^D|}e-AyHhgXp*ONwPc4Gw0}8JwtWo>9B=>)bspG45{b5-#-%j z#bmSnf0`_jYO*x%*xv*H2=qB?SKiue@ymKb_UgCALL`qak+Q!sG{OTY*|7f zF|)MHlBhu2NPE6kwyB8|f2F;hBma7LM{kKLHEAkujx^eiH``22TTe~S&x|jOJYJkz zURwXOva!82K-vG?eb}>euy=GkG2A=!`dKFQr>UIzv90~@YW71c)Ya_7S_1LJKEn=2 za9pc*k?HqfnAE_>s??ukJY)v<(7$cFuo!w*RiJ0d-5_)cb6+|EH)TS4n7hww64>2( zX`J7xEP2C2?VS3M{VJ)C5ViP4(Z`>SCWHnQ7<3K_6^4f~Mj(aUsSP$sAU+{HDVa|% zjWr{KUyB;EnHVu#ZXuo!TYQ1qV?~J(RTVWMwIb943uEgYoSL4Q{n!XxSX^4BEKja{T3;I9*k1pzv%fm_`3SgoyubBr<2{X$I3cSkh@M@_ zva>k51!i{|%nxvFY7J+Rb3l)ox#Z|V1(l_kR#-t@$lq>-DPeX*yA#-ro8yw)#5xk? z+50S$Vwd${7o-V=V1Vdg4meiIid>Ez$~Vn1NH?g!jTGE3bC@Dm6pR*Gx184p0Mz~i D^>?LD diff --git a/static/file_upload/img/progressbar.gif b/static/file_upload/img/progressbar.gif deleted file mode 100644 index fbcce6bc9abfcc7893e65ef20b3e77ee16ec37b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3323 zcmcK7eNYp38VB%=tbvu|O{=v;j+Z$Bg`>zI2IVD3Ovp-%sA$2LilR;|zMv9BB_t%- zylmcIh`dQLinJh9P{0Ja6I28#3PquysCf3GB1bBEXgfV_qnx8-n07k#kNmNdnVrvm zpZz`0v#~Ih7`{0em<2RA0wa|vr`!U1uI~v zF&O+zyfdOBoHdq{xOf7$)mN>lwcHgLVd-HT}JxYe94Gv(X_H__aHV~b7Ud4Pvk@t?84W?#& z+#WmNc5cUNoapyda#-P`2+n z-sGAbb$_$TW887}6BiJKaV$E-69{23pNeG2=_;8-CM9c*OiHOp|F9Igl_JQHqf)Y3 zhR7s(mQBh5ER~A&6^|p|OQqmd+(8 zZCb1qD*K}>!|B|YVuCsS=V0!N=?-)po(^$x*kptYX9N)B^~VJ^d7-@(M1WK;9&Liw~wO?NN(E}be} z`e0?=)*y}@Xkgx6S$ZS(8d|ifzK_`x?=N$)pWk;s0Ve?`qDX{%L@X0)6guz8Adh+qh(mq90aE=iAZp(dGccGHgmlkOke19p-dfci z@1Ni#x_B;&@l8icy*4roEXN?9&vh-w;n!Fp3;~Dn4#aOVi22tbo-KY@B1*TAgMsta zMh~68EXdvgJe$<9yOgn~E8aiQNo1$l`FUCI52J)nHW8+@|McSTe{t30@NpO^cv#waY+68ew4oT={#AGoA?Je^k$f`&u}bW zOjoRA_$utq5rspZ;5HXZvqE1#D) z5*M}9jPoq=-V*<cQuuK%yr=$XZl2k``40P4ol60hjb({{!c5Rtn3Urk4?uRRFNQuFGPhZnTBMO zu{W&|u4t53w>M}v(wtDAV!oHP(QY&~_X0qupII*-&GksTPf#SZ#4eaOCrG~hUblo4 zya(R){3rfyxiH2%l{iN;xS(G)OWOx8>UV9u+Vm_iN98oT20F}U!8utl4(lm=E)S6) zN~xM^Q?U;_!Ku4seH{bquy+4OfwlV{0C?tW&XteqJmP<|V)6eK9ey(~1Sbd1rgF1{ zd@&*xkriY}MS><}4DI}o3>d2jm74@fNpg-Vf(zPY?8nj=O8o$gp_gzr3~{MEs({T( z5+EcMIErR!`wwLZHp{c_?{mEhe%dlbNH8E^nm+5|owEXTR;S2+hYWR^j zWB!qbQWumI=vg;ZQvO$8W9QeMX~YdqNb^K%y~T6@tCTOlSM-j*$OOSSZX6cRfzPb* zP-Q}8v|6Q&$hAFfGA(f5>_XzuqhFP@h(0x@%#tsExSB}v(zy6^qc>xW*XCVMBPKf` zF>gsuD~+eKuRP{tWLo#OoJ2?fR@_0f5Olf}}Khc$ZhB$$3I7S9&n z^G{G0pQnju2Md}?zmbrthis.$items.length-1||0>b?void 0:this.sliding?this.$element.one("slid",function(){c.to(b)}):d==b?this.pause().cycle():this.slide(b>d?"next":"prev",a(this.$items[b]))},b.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition.end&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},b.prototype.next=function(){return this.sliding?void 0:this.slide("next")},b.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},b.prototype.slide=function(b,c){var d=this.$element.find(".item.active"),e=c||d[b](),f=this.interval,g="next"==b?"left":"right",h="next"==b?"first":"last",i=this;if(!e.length){if(!this.options.wrap)return;e=this.$element.find(".item")[h]()}this.sliding=!0,f&&this.pause();var j=a.Event("slide.bs.carousel",{relatedTarget:e[0],direction:g});if(!e.hasClass("active")){if(this.$indicators.length&&(this.$indicators.find(".active").removeClass("active"),this.$element.one("slid",function(){var b=a(i.$indicators.children()[i.getActiveIndex()]);b&&b.addClass("active")})),a.support.transition&&this.$element.hasClass("slide")){if(this.$element.trigger(j),j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),d.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)}).emulateTransitionEnd(600)}else{if(this.$element.trigger(j),j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}};var c=a.fn.carousel;a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c),g="string"==typeof c?c:f.slide;e||d.data("bs.carousel",e=new b(this,f)),"number"==typeof c?e.to(c):g?e[g]():f.interval&&e.pause().cycle()})},a.fn.carousel.Constructor=b,a.fn.carousel.noConflict=function(){return a.fn.carousel=c,this},a(document).on("click.bs.carousel.data-api","[data-slide], [data-slide-to]",function(b){var c,d=a(this),e=a(d.attr("data-target")||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"")),f=a.extend({},e.data(),d.data()),g=d.attr("data-slide-to");g&&(f.interval=!1),e.carousel(f),(g=d.attr("data-slide-to"))&&e.data("bs.carousel").to(g),b.preventDefault()}),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var b=a(this);b.carousel(b.data())})})}(window.jQuery),+function(a){"use strict";var b=function(c,d){this.$element=a(c),this.options=a.extend({},b.DEFAULTS,d),this.transitioning=null,this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.DEFAULTS={toggle:!0},b.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},b.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b=a.Event("show.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.$parent&&this.$parent.find("> .panel > .in");if(c&&c.length){var d=c.data("bs.collapse");if(d&&d.transitioning)return;c.collapse("hide"),d||c.data("bs.collapse",null)}var e=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[e](0),this.transitioning=1;var f=function(){this.$element.removeClass("collapsing").addClass("in")[e]("auto"),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return f.call(this);var g=a.camelCase(["scroll",e].join("-"));this.$element.one(a.support.transition.end,a.proxy(f,this)).emulateTransitionEnd(350)[e](this.$element[0][g])}}},b.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse").removeClass("in"),this.transitioning=1;var d=function(){this.transitioning=0,this.$element.trigger("hidden.bs.collapse").removeClass("collapsing").addClass("collapse")};return a.support.transition?(this.$element[c](0).one(a.support.transition.end,a.proxy(d,this)).emulateTransitionEnd(350),void 0):d.call(this)}}},b.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()};var c=a.fn.collapse;a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("bs.collapse"),f=a.extend({},b.DEFAULTS,d.data(),"object"==typeof c&&c);e||d.data("bs.collapse",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.collapse.Constructor=b,a.fn.collapse.noConflict=function(){return a.fn.collapse=c,this},a(document).on("click.bs.collapse.data-api","[data-toggle=collapse]",function(b){var c,d=a(this),e=d.attr("data-target")||b.preventDefault()||(c=d.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,""),f=a(e),g=f.data("bs.collapse"),h=g?"toggle":d.data(),i=d.attr("data-parent"),j=i&&a(i);g&&g.transitioning||(j&&j.find('[data-toggle=collapse][data-parent="'+i+'"]').not(d).addClass("collapsed"),d[f.hasClass("in")?"addClass":"removeClass"]("collapsed")),f.collapse(h)})}(window.jQuery),+function(a){"use strict";function b(){a(d).remove(),a(e).each(function(b){var d=c(a(this));d.hasClass("open")&&(d.trigger(b=a.Event("hide.bs.dropdown")),b.isDefaultPrevented()||d.removeClass("open").trigger("hidden.bs.dropdown"))})}function c(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}var d=".dropdown-backdrop",e="[data-toggle=dropdown]",f=function(b){a(b).on("click.bs.dropdown",this.toggle)};f.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=c(e),g=f.hasClass("open");if(b(),!g){if("ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(''}),b.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),b.prototype.constructor=b,b.prototype.getDefaults=function(){return b.DEFAULTS},b.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content")[this.options.html?"html":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},b.prototype.hasContent=function(){return this.getTitle()||this.getContent()},b.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},b.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")},b.prototype.tip=function(){return this.$tip||(this.$tip=a(this.options.template)),this.$tip};var c=a.fn.popover;a.fn.popover=function(c){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof c&&c;e||d.data("bs.popover",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.popover.Constructor=b,a.fn.popover.noConflict=function(){return a.fn.popover=c,this}}(window.jQuery),+function(a){"use strict";function b(c,d){var e,f=a.proxy(this.process,this);this.$element=a(c).is("body")?a(window):a(c),this.$body=a("body"),this.$scrollElement=this.$element.on("scroll.bs.scroll-spy.data-api",f),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||(e=a(c).attr("href"))&&e.replace(/.*(?=#[^\s]+$)/,"")||"")+" .nav li > a",this.offsets=a([]),this.targets=a([]),this.activeTarget=null,this.refresh(),this.process()}b.DEFAULTS={offset:10},b.prototype.refresh=function(){var b=this.$element[0]==window?"offset":"position";this.offsets=a([]),this.targets=a([]);var c=this;this.$body.find(this.selector).map(function(){var d=a(this),e=d.data("target")||d.attr("href"),f=/^#\w/.test(e)&&a(e);return f&&f.length&&[[f[b]().top+(!a.isWindow(c.$scrollElement.get(0))&&c.$scrollElement.scrollTop()),e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){c.offsets.push(this[0]),c.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,d=c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(b>=d)return g!=(a=f.last()[0])&&this.activate(a);for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(!e[a+1]||b<=e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,a(this.selector).parents(".active").removeClass("active");var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active");d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate")};var c=a.fn.scrollspy;a.fn.scrollspy=function(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=c,this},a(window).on("load",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);b.scrollspy(b.data())})})}(window.jQuery),+function(a){"use strict";var b=function(b){this.element=a(b)};b.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.attr("data-target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a")[0],f=a.Event("show.bs.tab",{relatedTarget:e});if(b.trigger(f),!f.isDefaultPrevented()){var g=a(d);this.activate(b.parent("li"),c),this.activate(g,g.parent(),function(){b.trigger({type:"shown.bs.tab",relatedTarget:e})})}}},b.prototype.activate=function(b,c,d){function e(){f.removeClass("active").find("> .dropdown-menu > .active").removeClass("active"),b.addClass("active"),g?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu")&&b.closest("li.dropdown").addClass("active"),d&&d()}var f=c.find("> .active"),g=d&&a.support.transition&&f.hasClass("fade");g?f.one(a.support.transition.end,e).emulateTransitionEnd(150):e(),f.removeClass("in")};var c=a.fn.tab;a.fn.tab=function(c){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new b(this)),"string"==typeof c&&e[c]()})},a.fn.tab.Constructor=b,a.fn.tab.noConflict=function(){return a.fn.tab=c,this},a(document).on("click.bs.tab.data-api",'[data-toggle="tab"], [data-toggle="pill"]',function(b){b.preventDefault(),a(this).tab("show")})}(window.jQuery),+function(a){"use strict";var b=function(c,d){this.options=a.extend({},b.DEFAULTS,d),this.$window=a(window).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(c),this.affixed=this.unpin=null,this.checkPosition()};b.RESET="affix affix-top affix-bottom",b.DEFAULTS={offset:0},b.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},b.prototype.checkPosition=function(){if(this.$element.is(":visible")){var c=a(document).height(),d=this.$window.scrollTop(),e=this.$element.offset(),f=this.options.offset,g=f.top,h=f.bottom;"object"!=typeof f&&(h=g=f),"function"==typeof g&&(g=f.top()),"function"==typeof h&&(h=f.bottom());var i=null!=this.unpin&&d+this.unpin<=e.top?!1:null!=h&&e.top+this.$element.height()>=c-h?"bottom":null!=g&&g>=d?"top":!1;this.affixed!==i&&(this.unpin&&this.$element.css("top",""),this.affixed=i,this.unpin="bottom"==i?e.top-d:null,this.$element.removeClass(b.RESET).addClass("affix"+(i?"-"+i:"")),"bottom"==i&&this.$element.offset({top:document.body.offsetHeight-h-this.$element.height()}))}};var c=a.fn.affix;a.fn.affix=function(c){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof c&&c;e||d.data("bs.affix",e=new b(this,f)),"string"==typeof c&&e[c]()})},a.fn.affix.Constructor=b,a.fn.affix.noConflict=function(){return a.fn.affix=c,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var b=a(this),c=b.data();c.offset=c.offset||{},c.offsetBottom&&(c.offset.bottom=c.offsetBottom),c.offsetTop&&(c.offset.top=c.offsetTop),b.affix(c)})})}(window.jQuery); \ No newline at end of file diff --git a/static/file_upload/js/canvas-to-blob.min.js b/static/file_upload/js/canvas-to-blob.min.js deleted file mode 100644 index 7ee3553a..00000000 --- a/static/file_upload/js/canvas-to-blob.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(t){"use strict";var e=t.HTMLCanvasElement&&t.HTMLCanvasElement.prototype,n=t.Blob&&function(){try{return Boolean(new Blob)}catch(t){return!1}}(),o=n&&t.Uint8Array&&function(){try{return 100===new Blob([new Uint8Array(100)]).size}catch(t){return!1}}(),r=t.BlobBuilder||t.WebKitBlobBuilder||t.MozBlobBuilder||t.MSBlobBuilder,i=(n||r)&&t.atob&&t.ArrayBuffer&&t.Uint8Array&&function(t){var e,i,a,l,u,B;for(e=t.split(",")[0].indexOf("base64")>=0?atob(t.split(",")[1]):decodeURIComponent(t.split(",")[1]),i=new ArrayBuffer(e.length),a=new Uint8Array(i),l=0;l').prop('href', options.postMessage)[0], - target = loc.protocol + '//' + loc.host, - xhrUpload = options.xhr().upload; - return { - send: function (_, completeCallback) { - counter += 1; - var message = { - id: 'postmessage-transport-' + counter - }, - eventName = 'message.' + message.id; - iframe = $( - '' - ).bind('load', function () { - $.each(names, function (i, name) { - message[name] = options[name]; - }); - message.dataType = message.dataType.replace('postmessage ', ''); - $(window).bind(eventName, function (e) { - e = e.originalEvent; - var data = e.data, - ev; - if (e.origin === target && data.id === message.id) { - if (data.type === 'progress') { - ev = document.createEvent('Event'); - ev.initEvent(data.type, false, true); - $.extend(ev, data); - xhrUpload.dispatchEvent(ev); - } else { - completeCallback( - data.status, - data.statusText, - {postmessage: data.result}, - data.headers - ); - iframe.remove(); - $(window).unbind(eventName); - } - } - }); - iframe[0].contentWindow.postMessage( - message, - target - ); - }).appendTo(document.body); - }, - abort: function () { - if (iframe) { - iframe.remove(); - } - } - }; - } - }); - -})); diff --git a/static/file_upload/js/cors/jquery.xdr-transport.js b/static/file_upload/js/cors/jquery.xdr-transport.js deleted file mode 100644 index d769f452..00000000 --- a/static/file_upload/js/cors/jquery.xdr-transport.js +++ /dev/null @@ -1,87 +0,0 @@ -/* - * jQuery XDomainRequest Transport Plugin 1.1.3 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2011, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - * - * Based on Julian Aubourg's ajaxHooks xdr.js: - * https://github.com/jaubourg/ajaxHooks/ - */ - -/*jslint unparam: true */ -/*global define, window, XDomainRequest */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define(['jquery'], factory); - } else { - // Browser globals: - factory(window.jQuery); - } -}(function ($) { - 'use strict'; - if (window.XDomainRequest && !$.support.cors) { - $.ajaxTransport(function (s) { - if (s.crossDomain && s.async) { - if (s.timeout) { - s.xdrTimeout = s.timeout; - delete s.timeout; - } - var xdr; - return { - send: function (headers, completeCallback) { - var addParamChar = /\?/.test(s.url) ? '&' : '?'; - function callback(status, statusText, responses, responseHeaders) { - xdr.onload = xdr.onerror = xdr.ontimeout = $.noop; - xdr = null; - completeCallback(status, statusText, responses, responseHeaders); - } - xdr = new XDomainRequest(); - // XDomainRequest only supports GET and POST: - if (s.type === 'DELETE') { - s.url = s.url + addParamChar + '_method=DELETE'; - s.type = 'POST'; - } else if (s.type === 'PUT') { - s.url = s.url + addParamChar + '_method=PUT'; - s.type = 'POST'; - } else if (s.type === 'PATCH') { - s.url = s.url + addParamChar + '_method=PATCH'; - s.type = 'POST'; - } - xdr.open(s.type, s.url); - xdr.onload = function () { - callback( - 200, - 'OK', - {text: xdr.responseText}, - 'Content-Type: ' + xdr.contentType - ); - }; - xdr.onerror = function () { - callback(404, 'Not Found'); - }; - if (s.xdrTimeout) { - xdr.ontimeout = function () { - callback(0, 'timeout'); - }; - xdr.timeout = s.xdrTimeout; - } - xdr.send((s.hasContent && s.data) || null); - }, - abort: function () { - if (xdr) { - xdr.onerror = $.noop(); - xdr.abort(); - } - } - }; - } - }); - } -})); diff --git a/static/file_upload/js/csrf.js b/static/file_upload/js/csrf.js deleted file mode 100644 index aec99cc7..00000000 --- a/static/file_upload/js/csrf.js +++ /dev/null @@ -1,22 +0,0 @@ -// modify jquery ajax to add csrtoken when doing "local" requests -$('html').ajaxSend(function(event, xhr, settings) { - function getCookie(name) { - var cookieValue = null; - if (document.cookie && document.cookie != '') { - var cookies = document.cookie.split(';'); - for (var i = 0; i < cookies.length; i++) { - var cookie = jQuery.trim(cookies[i]); - // Does this cookie string begin with the name we want? - if (cookie.substring(0, name.length + 1) == (name + '=')) { - cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); - break; - } - } - } - return cookieValue; - } - if (!(/^http:.*/.test(settings.url) || /^https:.*/.test(settings.url))) { - // Only send the token to relative URLs i.e. locally. - xhr.setRequestHeader("X-CSRFToken", getCookie('csrftoken')); - } -}); diff --git a/static/file_upload/js/jquery.blueimp-gallery.min.js b/static/file_upload/js/jquery.blueimp-gallery.min.js deleted file mode 100644 index 3aa02545..00000000 --- a/static/file_upload/js/jquery.blueimp-gallery.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(t){"use strict";"function"==typeof define&&define.amd?define(["./blueimp-helper"],t):(window.blueimp=window.blueimp||{},window.blueimp.Gallery=t(window.blueimp.helper||window.jQuery))}(function(t){"use strict";function e(t,i){return t&&t.length&&void 0!==document.body.style.maxHeight?this&&this.options===e.prototype.options?(this.list=t,this.num=t.length,this.initOptions(i),this.initialize(),void 0):new e(t,i):!1}return t.extend(e.prototype,{options:{container:"#blueimp-gallery",slidesContainer:"div",titleElement:"h3",displayClass:"blueimp-gallery-display",controlsClass:"blueimp-gallery-controls",singleClass:"blueimp-gallery-single",leftEdgeClass:"blueimp-gallery-left",rightEdgeClass:"blueimp-gallery-right",playingClass:"blueimp-gallery-playing",slideClass:"slide",slideLoadingClass:"slide-loading",slideErrorClass:"slide-error",slideContentClass:"slide-content",toggleClass:"toggle",prevClass:"prev",nextClass:"next",closeClass:"close",playPauseClass:"play-pause",typeProperty:"type",titleProperty:"title",urlProperty:"href",clearSlides:!0,stretchImages:!1,toggleControlsOnReturn:!0,toggleSlideshowOnSpace:!0,enableKeyboardNavigation:!0,closeOnEscape:!0,closeOnSlideClick:!0,closeOnSwipeUpOrDown:!0,emulateTouchEvents:!0,hidePageScrollbars:!0,disableScroll:!0,carousel:!1,continuous:!0,unloadElements:!0,startSlideshow:!1,slideshowInterval:5e3,index:0,preloadRange:2,transitionSpeed:400,slideshowTransitionSpeed:void 0,event:void 0,onopen:void 0,onslide:void 0,onslideend:void 0,onslidecomplete:void 0,onclose:void 0},carouselOptions:{hidePageScrollbars:!1,toggleControlsOnReturn:!1,toggleSlideshowOnSpace:!1,enableKeyboardNavigation:!1,closeOnEscape:!1,closeOnSlideClick:!1,closeOnSwipeUpOrDown:!1,disableScroll:!1,startSlideshow:!0},support:function(t){var e,i,s,n={touch:void 0!==window.ontouchstart||window.DocumentTouch&&document instanceof DocumentTouch},o={webkitTransition:{end:"webkitTransitionEnd",prefix:"-webkit-"},MozTransition:{end:"transitionend",prefix:"-moz-"},OTransition:{end:"otransitionend",prefix:"-o-"},transition:{end:"transitionend",prefix:""}};for(e in o)if(o.hasOwnProperty(e)&&void 0!==t.style[e]){i=o[e],i.name=e,n.transition=i;break}return document.body.appendChild(t),i&&(e=i.name.slice(0,-9)+"ransform",void 0!==t.style[e]&&(t.style[e]="translateZ(0)",s=window.getComputedStyle(t).getPropertyValue(i.prefix+"transform"),n.transform={prefix:i.prefix,name:e,translate:!0,translateZ:s&&"none"!==s})),void 0!==t.style.backgroundSize&&(t.style.backgroundSize="contain",n.backgroundSize={contain:"contain"===window.getComputedStyle(t).getPropertyValue("background-size")}),document.body.removeChild(t),n}(document.createElement("div")),initialize:function(){return this.initStartIndex(),this.initWidget()===!1?!1:(this.initEventListeners(),this.options.onopen&&this.options.onopen.call(this),this.onslide(this.index),this.ontransitionend(),this.options.startSlideshow&&this.play(),void 0)},slide:function(t,e){window.clearTimeout(this.timeout);var i,s,n,o=this.index;if(o!==t&&1!==this.num){if(e||(e=this.options.transitionSpeed),this.support.transition){for(this.options.continuous||(t=this.circle(t)),i=Math.abs(o-t)/(o-t),this.options.continuous&&(s=i,i=-this.positions[this.circle(t)]/this.slideWidth,i!==s&&(t=-i*this.num+t)),n=Math.abs(o-t)-1;n;)n-=1,this.move(this.circle((t>o?t:o)-n-1),this.slideWidth*i,0);t=this.circle(t),this.move(o,this.slideWidth*i,e),this.move(t,0,e),this.options.continuous&&this.move(this.circle(t-i),-(this.slideWidth*i),0)}else t=this.circle(t),this.animate(o*-this.slideWidth,t*-this.slideWidth,e);this.onslide(t)}},getIndex:function(){return this.index},getNumber:function(){return this.num},prev:function(){(this.options.continuous||this.index)&&this.slide(this.index-1)},next:function(){(this.options.continuous||this.index1&&(this.timeout=this.setTimeout(this.slide,[this.index+1,this.options.slideshowTransitionSpeed],this.interval)),this.container.addClass(this.options.playingClass)},pause:function(){window.clearTimeout(this.timeout),this.interval=null,this.container.removeClass(this.options.playingClass)},add:function(t){var e;for(this.list=this.list.concat(t),this.num=this.list.length,this.num>2&&null===this.options.continuous&&(this.options.continuous=!0,this.container.removeClass(this.options.leftEdgeClass)),this.container.removeClass(this.options.rightEdgeClass).removeClass(this.options.singleClass),e=this.num-t.length;ei?(s.slidesContainer[0].style.left=e+"px",s.ontransitionend(),window.clearInterval(o),void 0):(s.slidesContainer[0].style.left=(e-t)*(Math.floor(100*(l/i))/100)+t+"px",void 0)},4)},preventDefault:function(t){t.preventDefault?t.preventDefault():t.returnValue=!1},onresize:function(){this.initSlides(!0)},onmousedown:function(t){t.which&&1===t.which&&(t.preventDefault(),(t.originalEvent||t).touches=[{pageX:t.pageX,pageY:t.pageY}],this.ontouchstart(t))},onmousemove:function(t){this.touchStart&&((t.originalEvent||t).touches=[{pageX:t.pageX,pageY:t.pageY}],this.ontouchmove(t))},onmouseup:function(t){this.touchStart&&(this.ontouchend(t),delete this.touchStart)},onmouseout:function(e){if(this.touchStart){var i=e.target,s=e.relatedTarget;(!s||s!==i&&!t.contains(i,s))&&this.onmouseup(e)}},ontouchstart:function(t){var e=(t.originalEvent||t).touches[0];this.touchStart={x:e.pageX,y:e.pageY,time:Date.now()},this.isScrolling=void 0,this.touchDelta={}},ontouchmove:function(t){var e,i,s=(t.originalEvent||t).touches[0],n=(t.originalEvent||t).scale,o=this.index;if(!(s.length>1||n&&1!==n))if(this.options.disableScroll&&t.preventDefault(),this.touchDelta={x:s.pageX-this.touchStart.x,y:s.pageY-this.touchStart.y},e=this.touchDelta.x,void 0===this.isScrolling&&(this.isScrolling=this.isScrolling||Math.abs(e)0||o===this.num-1&&0>e?Math.abs(e)/this.slideWidth+1:1,i=[o],o&&i.push(o-1),o20||Math.abs(this.touchDelta.x)>r/2,d=!o&&this.touchDelta.x>0||o===this.num-1&&this.touchDelta.x<0,c=!h&&this.options.closeOnSwipeUpOrDown&&(a&&Math.abs(this.touchDelta.y)>20||Math.abs(this.touchDelta.y)>this.slideHeight/2);this.options.continuous&&(d=!1),t=this.touchDelta.x<0?-1:1,this.isScrolling?c?this.close():this.translateY(o,0,l):h&&!d?(e=o+t,i=o-t,s=r*t,n=-r*t,this.options.continuous?(this.move(this.circle(e),s,0),this.move(this.circle(o-2*t),n,0)):e>=0&&ethis.container[0].clientHeight&&(s.style.maxHeight=this.container[0].clientHeight),this.interval&&this.slides[this.index]===n&&this.play(),this.setTimeout(this.options.onslidecomplete,[i,n]))},onload:function(t){this.oncomplete(t)},onerror:function(t){this.oncomplete(t)},onkeydown:function(t){switch(t.which||t.keyCode){case 13:this.options.toggleControlsOnReturn&&(this.preventDefault(t),this.toggleControls());break;case 27:this.options.closeOnEscape&&this.close();break;case 32:this.options.toggleSlideshowOnSpace&&(this.preventDefault(t),this.toggleSlideshow());break;case 37:this.options.enableKeyboardNavigation&&(this.preventDefault(t),this.prev());break;case 39:this.options.enableKeyboardNavigation&&(this.preventDefault(t),this.next())}},handleClick:function(e){var i=this.options,s=e.target||e.srcElement,n=s.parentNode,o=function(e){return t(s).hasClass(e)||t(n).hasClass(e)};n===this.slidesContainer[0]?(this.preventDefault(e),i.closeOnSlideClick?this.close():this.toggleControls()):n.parentNode&&n.parentNode===this.slidesContainer[0]?(this.preventDefault(e),this.toggleControls()):o(i.toggleClass)?(this.preventDefault(e),this.toggleControls()):o(i.prevClass)?(this.preventDefault(e),this.prev()):o(i.nextClass)?(this.preventDefault(e),this.next()):o(i.closeClass)?(this.preventDefault(e),this.close()):o(i.playPauseClass)&&(this.preventDefault(e),this.toggleSlideshow())},onclick:function(t){return this.options.emulateTouchEvents&&this.touchDelta&&(Math.abs(this.touchDelta.x)>20||Math.abs(this.touchDelta.y)>20)?(delete this.touchDelta,void 0):this.handleClick(t)},updateEdgeClasses:function(t){t?this.container.removeClass(this.options.leftEdgeClass):this.container.addClass(this.options.leftEdgeClass),t===this.num-1?this.container.addClass(this.options.rightEdgeClass):this.container.removeClass(this.options.rightEdgeClass)},handleSlide:function(t){this.options.continuous||this.updateEdgeClasses(t),this.loadElements(t),this.options.unloadElements&&this.unloadElements(t),this.setTitle(t)},onslide:function(t){this.index=t,this.handleSlide(t),this.setTimeout(this.options.onslide,[t,this.slides[t]])},setTitle:function(t){var e=this.slides[t].firstChild.title,i=this.titleElement;i.length&&(this.titleElement.empty(),e&&i[0].appendChild(document.createTextNode(e)))},setTimeout:function(t,e,i){var s=this;return t&&window.setTimeout(function(){t.apply(s,e||[])},i||0)},imageFactory:function(e,i){var s,n,o,l=this,r=this.imagePrototype.cloneNode(!1),a=e,h=this.options.stretchImages&&this.support.backgroundSize&&this.support.backgroundSize.contain,d=function(e){if(!s){if(e={type:e.type,target:n},!n.parentNode)return l.setTimeout(d,[e]);s=!0,t(r).off("load error",d),h&&"load"===e.type&&(n.style.background='url("'+a+'") center no-repeat',n.style.backgroundSize="contain"),i(e)}};return"string"!=typeof a&&(a=this.getItemProperty(e,this.options.urlProperty),o=this.getItemProperty(e,this.options.titleProperty)),h?n=this.elementPrototype.cloneNode(!1):(n=r,r.draggable=!1),o&&(n.title=o),t(r).on("load error",d),r.src=a,n},createElement:function(e,i){var s=e&&this.getItemProperty(e,this.options.typeProperty),n=s&&this[s.split("/")[0]+"Factory"]||this.imageFactory,o=e&&n.call(this,e,i);return o||(o=this.elementPrototype.cloneNode(!1),this.setTimeout(i,[{type:"error",target:o}])),t(o).addClass(this.options.slideContentClass),o},loadElement:function(e){this.elements[e]||(this.slides[e].firstChild?this.elements[e]=t(this.slides[e]).hasClass(this.options.slideErrorClass)?3:2:(this.elements[e]=1,t(this.slides[e]).addClass(this.options.slideLoadingClass),this.slides[e].appendChild(this.createElement(this.list[e],this.proxyListener))))},loadElements:function(t){var e,i=Math.min(this.num,2*this.options.preloadRange+1),s=t;for(e=0;i>e;e+=1)s+=e*(0===e%2?-1:1),s=this.circle(s),this.loadElement(s)},unloadElements:function(t){var e,i,s;for(e in this.elements)this.elements.hasOwnProperty(e)&&(s=Math.abs(t-e),s>this.options.preloadRange&&s+this.options.preloadRanget?-this.slideWidth:this.index= unit.size) { - return prefix + (bytes / unit.size).toFixed(2) + suffix; - } - i += 1; - } - }; - }; - }) - - // The FileUploadController initializes the fileupload widget and - // provides scope methods to control the File Upload functionality: - .controller('FileUploadController', [ - '$scope', '$element', '$attrs', '$window', 'fileUpload', - function ($scope, $element, $attrs, $window, fileUpload) { - var uploadMethods = { - progress: function () { - return $element.fileupload('progress'); - }, - active: function () { - return $element.fileupload('active'); - }, - option: function (option, data) { - return $element.fileupload('option', option, data); - }, - add: function (data) { - return $element.fileupload('add', data); - }, - send: function (data) { - return $element.fileupload('send', data); - }, - process: function (data) { - return $element.fileupload('process', data); - }, - processing: function (data) { - return $element.fileupload('processing', data); - } - }; - $scope.disabled = !$window.jQuery.support.fileInput; - $scope.queue = $scope.queue || []; - $scope.clear = function (files) { - var queue = this.queue, - i = queue.length, - file = files, - length = 1; - if (angular.isArray(files)) { - file = files[0]; - length = files.length; - } - while (i) { - i -= 1; - if (queue[i] === file) { - return queue.splice(i, length); - } - } - }; - $scope.replace = function (oldFiles, newFiles) { - var queue = this.queue, - file = oldFiles[0], - i, - j; - for (i = 0; i < queue.length; i += 1) { - if (queue[i] === file) { - for (j = 0; j < newFiles.length; j += 1) { - queue[i + j] = newFiles[j]; - } - return; - } - } - }; - $scope.applyOnQueue = function (method) { - var list = this.queue.slice(0), - i, - file; - for (i = 0; i < list.length; i += 1) { - file = list[i]; - if (file[method]) { - file[method](); - } - } - }; - $scope.submit = function () { - this.applyOnQueue('$submit'); - }; - $scope.cancel = function () { - this.applyOnQueue('$cancel'); - }; - // Add upload methods to the scope: - angular.extend($scope, uploadMethods); - // The fileupload widget will initialize with - // the options provided via "data-"-parameters, - // as well as those given via options object: - $element.fileupload(angular.extend( - {scope: function () { - return $scope; - }}, - fileUpload.defaults - )).on('fileuploadadd', function (e, data) { - data.scope = $scope.option('scope'); - }).on([ - 'fileuploadadd', - 'fileuploadsubmit', - 'fileuploadsend', - 'fileuploaddone', - 'fileuploadfail', - 'fileuploadalways', - 'fileuploadprogress', - 'fileuploadprogressall', - 'fileuploadstart', - 'fileuploadstop', - 'fileuploadchange', - 'fileuploadpaste', - 'fileuploaddrop', - 'fileuploaddragover', - 'fileuploadchunksend', - 'fileuploadchunkdone', - 'fileuploadchunkfail', - 'fileuploadchunkalways', - 'fileuploadprocessstart', - 'fileuploadprocess', - 'fileuploadprocessdone', - 'fileuploadprocessfail', - 'fileuploadprocessalways', - 'fileuploadprocessstop' - ].join(' '), function (e, data) { - if ($scope.$emit(e.type, data).defaultPrevented) { - e.preventDefault(); - } - }).on('remove', function () { - // Remove upload methods from the scope, - // when the widget is removed: - var method; - for (method in uploadMethods) { - if (uploadMethods.hasOwnProperty(method)) { - delete $scope[method]; - } - } - }); - // Observe option changes: - $scope.$watch( - $attrs.fileUpload, - function (newOptions) { - if (newOptions) { - $element.fileupload('option', newOptions); - } - } - ); - } - ]) - - // Provide File Upload progress feedback: - .controller('FileUploadProgressController', [ - '$scope', '$attrs', '$parse', - function ($scope, $attrs, $parse) { - var fn = $parse($attrs.fileUploadProgress), - update = function () { - var progress = fn($scope); - if (!progress || !progress.total) { - return; - } - $scope.num = Math.floor( - progress.loaded / progress.total * 100 - ); - }; - update(); - $scope.$watch( - $attrs.fileUploadProgress + '.loaded', - function (newValue, oldValue) { - if (newValue !== oldValue) { - update(); - } - } - ); - } - ]) - - // Display File Upload previews: - .controller('FileUploadPreviewController', [ - '$scope', '$element', '$attrs', '$parse', - function ($scope, $element, $attrs, $parse) { - var fn = $parse($attrs.fileUploadPreview), - file = fn($scope); - if (file.preview) { - $element.append(file.preview); - } - } - ]) - - .directive('fileUpload', function () { - return { - controller: 'FileUploadController' - }; - }) - - .directive('fileUploadProgress', function () { - return { - controller: 'FileUploadProgressController' - }; - }) - - .directive('fileUploadPreview', function () { - return { - controller: 'FileUploadPreviewController' - }; - }) - - // Enhance the HTML5 download attribute to - // allow drag&drop of files to the desktop: - .directive('download', function () { - return function (scope, elm) { - elm.on('dragstart', function (e) { - try { - e.originalEvent.dataTransfer.setData( - 'DownloadURL', - [ - 'application/octet-stream', - elm.prop('download'), - elm.prop('href') - ].join(':') - ); - } catch (ignore) {} - }); - }; - }); - -})); diff --git a/static/file_upload/js/jquery.fileupload-audio.js b/static/file_upload/js/jquery.fileupload-audio.js deleted file mode 100644 index f59c2fa5..00000000 --- a/static/file_upload/js/jquery.fileupload-audio.js +++ /dev/null @@ -1,106 +0,0 @@ -/* - * jQuery File Upload Audio Preview Plugin 1.0.3 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, unparam: true, regexp: true */ -/*global define, window, document */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - 'load-image', - './jquery.fileupload-process' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery, - window.loadImage - ); - } -}(function ($, loadImage) { - 'use strict'; - - // Prepend to the default processQueue: - $.blueimp.fileupload.prototype.options.processQueue.unshift( - { - action: 'loadAudio', - // Use the action as prefix for the "@" options: - prefix: true, - fileTypes: '@', - maxFileSize: '@', - disabled: '@disableAudioPreview' - }, - { - action: 'setAudio', - name: '@audioPreviewName', - disabled: '@disableAudioPreview' - } - ); - - // The File Upload Audio Preview plugin extends the fileupload widget - // with audio preview functionality: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - // The regular expression for the types of audio files to load, - // matched against the file type: - loadAudioFileTypes: /^audio\/.*$/ - }, - - _audioElement: document.createElement('audio'), - - processActions: { - - // Loads the audio file given via data.files and data.index - // as audio element if the browser supports playing it. - // Accepts the options fileTypes (regular expression) - // and maxFileSize (integer) to limit the files to load: - loadAudio: function (data, options) { - if (options.disabled) { - return data; - } - var file = data.files[data.index], - url, - audio; - if (this._audioElement.canPlayType && - this._audioElement.canPlayType(file.type) && - ($.type(options.maxFileSize) !== 'number' || - file.size <= options.maxFileSize) && - (!options.fileTypes || - options.fileTypes.test(file.type))) { - url = loadImage.createObjectURL(file); - if (url) { - audio = this._audioElement.cloneNode(false); - audio.src = url; - audio.controls = true; - data.audio = audio; - return data; - } - } - return data; - }, - - // Sets the audio element as a property of the file object: - setAudio: function (data, options) { - if (data.audio && !options.disabled) { - data.files[data.index][options.name || 'preview'] = data.audio; - } - return data; - } - - } - - }); - -})); diff --git a/static/file_upload/js/jquery.fileupload-image.js b/static/file_upload/js/jquery.fileupload-image.js deleted file mode 100644 index 84474a7b..00000000 --- a/static/file_upload/js/jquery.fileupload-image.js +++ /dev/null @@ -1,292 +0,0 @@ -/* - * jQuery File Upload Image Preview & Resize Plugin 1.2.3 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, unparam: true, regexp: true */ -/*global define, window, document, DataView, Blob, Uint8Array */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - 'load-image', - 'load-image-meta', - 'load-image-exif', - 'load-image-ios', - 'canvas-to-blob', - './jquery.fileupload-process' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery, - window.loadImage - ); - } -}(function ($, loadImage) { - 'use strict'; - - // Prepend to the default processQueue: - $.blueimp.fileupload.prototype.options.processQueue.unshift( - { - action: 'loadImageMetaData', - disableImageHead: '@', - disableExif: '@', - disableExifThumbnail: '@', - disableExifSub: '@', - disableExifGps: '@', - disabled: '@disableImageMetaDataLoad' - }, - { - action: 'loadImage', - // Use the action as prefix for the "@" options: - prefix: true, - fileTypes: '@', - maxFileSize: '@', - noRevoke: '@', - disabled: '@disableImageLoad' - }, - { - action: 'resizeImage', - // Use "image" as prefix for the "@" options: - prefix: 'image', - maxWidth: '@', - maxHeight: '@', - minWidth: '@', - minHeight: '@', - crop: '@', - disabled: '@disableImageResize' - }, - { - action: 'saveImage', - disabled: '@disableImageResize' - }, - { - action: 'saveImageMetaData', - disabled: '@disableImageMetaDataSave' - }, - { - action: 'resizeImage', - // Use "preview" as prefix for the "@" options: - prefix: 'preview', - maxWidth: '@', - maxHeight: '@', - minWidth: '@', - minHeight: '@', - crop: '@', - orientation: '@', - thumbnail: '@', - canvas: '@', - disabled: '@disableImagePreview' - }, - { - action: 'setImage', - name: '@imagePreviewName', - disabled: '@disableImagePreview' - } - ); - - // The File Upload Resize plugin extends the fileupload widget - // with image resize functionality: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - // The regular expression for the types of images to load: - // matched against the file type: - loadImageFileTypes: /^image\/(gif|jpeg|png)$/, - // The maximum file size of images to load: - loadImageMaxFileSize: 10000000, // 10MB - // The maximum width of resized images: - imageMaxWidth: 1920, - // The maximum height of resized images: - imageMaxHeight: 1080, - // Define if resized images should be cropped or only scaled: - imageCrop: false, - // Disable the resize image functionality by default: - disableImageResize: true, - // The maximum width of the preview images: - previewMaxWidth: 80, - // The maximum height of the preview images: - previewMaxHeight: 80, - // Defines the preview orientation (1-8) or takes the orientation - // value from Exif data if set to true: - previewOrientation: true, - // Create the preview using the Exif data thumbnail: - previewThumbnail: true, - // Define if preview images should be cropped or only scaled: - previewCrop: false, - // Define if preview images should be resized as canvas elements: - previewCanvas: true - }, - - processActions: { - - // Loads the image given via data.files and data.index - // as img element if the browser supports canvas. - // Accepts the options fileTypes (regular expression) - // and maxFileSize (integer) to limit the files to load: - loadImage: function (data, options) { - if (options.disabled) { - return data; - } - var that = this, - file = data.files[data.index], - dfd = $.Deferred(); - if (($.type(options.maxFileSize) === 'number' && - file.size > options.maxFileSize) || - (options.fileTypes && - !options.fileTypes.test(file.type)) || - !loadImage( - file, - function (img) { - if (img.src) { - data.img = img; - } - dfd.resolveWith(that, [data]); - }, - options - )) { - return data; - } - return dfd.promise(); - }, - - // Resizes the image given as data.canvas or data.img - // and updates data.canvas or data.img with the resized image. - // Accepts the options maxWidth, maxHeight, minWidth, - // minHeight, canvas and crop: - resizeImage: function (data, options) { - if (options.disabled) { - return data; - } - var that = this, - dfd = $.Deferred(), - resolve = function (newImg) { - data[newImg.getContext ? 'canvas' : 'img'] = newImg; - dfd.resolveWith(that, [data]); - }, - thumbnail, - img, - newImg; - options = $.extend({canvas: true}, options); - if (data.exif) { - if (options.orientation === true) { - options.orientation = data.exif.get('Orientation'); - } - if (options.thumbnail) { - thumbnail = data.exif.get('Thumbnail'); - if (thumbnail) { - loadImage(thumbnail, resolve, options); - return dfd.promise(); - } - } - } - img = (options.canvas && data.canvas) || data.img; - if (img) { - newImg = loadImage.scale(img, options); - if (newImg.width !== img.width || - newImg.height !== img.height) { - resolve(newImg); - return dfd.promise(); - } - } - return data; - }, - - // Saves the processed image given as data.canvas - // inplace at data.index of data.files: - saveImage: function (data, options) { - if (!data.canvas || options.disabled) { - return data; - } - var that = this, - file = data.files[data.index], - name = file.name, - dfd = $.Deferred(), - callback = function (blob) { - if (!blob.name) { - if (file.type === blob.type) { - blob.name = file.name; - } else if (file.name) { - blob.name = file.name.replace( - /\..+$/, - '.' + blob.type.substr(6) - ); - } - } - // Store the created blob at the position - // of the original file in the files list: - data.files[data.index] = blob; - dfd.resolveWith(that, [data]); - }; - // Use canvas.mozGetAsFile directly, to retain the filename, as - // Gecko doesn't support the filename option for FormData.append: - if (data.canvas.mozGetAsFile) { - callback(data.canvas.mozGetAsFile( - (/^image\/(jpeg|png)$/.test(file.type) && name) || - ((name && name.replace(/\..+$/, '')) || - 'blob') + '.png', - file.type - )); - } else if (data.canvas.toBlob) { - data.canvas.toBlob(callback, file.type); - } else { - return data; - } - return dfd.promise(); - }, - - loadImageMetaData: function (data, options) { - if (options.disabled) { - return data; - } - var that = this, - dfd = $.Deferred(); - loadImage.parseMetaData(data.files[data.index], function (result) { - $.extend(data, result); - dfd.resolveWith(that, [data]); - }, options); - return dfd.promise(); - }, - - saveImageMetaData: function (data, options) { - if (!(data.imageHead && data.canvas && - data.canvas.toBlob && !options.disabled)) { - return data; - } - var file = data.files[data.index], - blob = new Blob([ - data.imageHead, - // Resized images always have a head size of 20 bytes, - // including the JPEG marker and a minimal JFIF header: - this._blobSlice.call(file, 20) - ], {type: file.type}); - blob.name = file.name; - data.files[data.index] = blob; - return data; - }, - - // Sets the resized version of the image as a property of the - // file object, must be called after "saveImage": - setImage: function (data, options) { - var img = data.canvas || data.img; - if (img && !options.disabled) { - data.files[data.index][options.name || 'preview'] = img; - } - return data; - } - - } - - }); - -})); diff --git a/static/file_upload/js/jquery.fileupload-jquery-ui.js b/static/file_upload/js/jquery.fileupload-jquery-ui.js deleted file mode 100644 index 05dd7a61..00000000 --- a/static/file_upload/js/jquery.fileupload-jquery-ui.js +++ /dev/null @@ -1,138 +0,0 @@ -/* - * jQuery File Upload jQuery UI Plugin 8.7.0 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, unparam: true */ -/*global define, window */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define(['jquery', './jquery.fileupload-ui'], factory); - } else { - // Browser globals: - factory(window.jQuery); - } -}(function ($) { - 'use strict'; - - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - progress: function (e, data) { - if (data.context) { - data.context.find('.progress').progressbar( - 'option', - 'value', - parseInt(data.loaded / data.total * 100, 10) - ); - } - }, - progressall: function (e, data) { - var $this = $(this); - $this.find('.fileupload-progress') - .find('.progress').progressbar( - 'option', - 'value', - parseInt(data.loaded / data.total * 100, 10) - ).end() - .find('.progress-extended').each(function () { - $(this).html( - ($this.data('blueimp-fileupload') || - $this.data('fileupload')) - ._renderExtendedProgress(data) - ); - }); - } - }, - - _renderUpload: function (func, files) { - var node = this._super(func, files), - showIconText = $(window).width() > 480; - node.find('.progress').empty().progressbar(); - node.find('.start').button({ - icons: {primary: 'ui-icon-circle-arrow-e'}, - text: showIconText - }); - node.find('.cancel').button({ - icons: {primary: 'ui-icon-cancel'}, - text: showIconText - }); - return node; - }, - - _renderDownload: function (func, files) { - var node = this._super(func, files), - showIconText = $(window).width() > 480; - node.find('.delete').button({ - icons: {primary: 'ui-icon-trash'}, - text: showIconText - }); - return node; - }, - - _transition: function (node) { - var deferred = $.Deferred(); - if (node.hasClass('fade')) { - node.fadeToggle( - this.options.transitionDuration, - this.options.transitionEasing, - function () { - deferred.resolveWith(node); - } - ); - } else { - deferred.resolveWith(node); - } - return deferred; - }, - - _create: function () { - this._super(); - this.element - .find('.fileupload-buttonbar') - .find('.fileinput-button').each(function () { - var input = $(this).find('input:file').detach(); - $(this) - .button({icons: {primary: 'ui-icon-plusthick'}}) - .append(input); - }) - .end().find('.start') - .button({icons: {primary: 'ui-icon-circle-arrow-e'}}) - .end().find('.cancel') - .button({icons: {primary: 'ui-icon-cancel'}}) - .end().find('.delete') - .button({icons: {primary: 'ui-icon-trash'}}) - .end().find('.progress').progressbar(); - }, - - _destroy: function () { - this.element - .find('.fileupload-buttonbar') - .find('.fileinput-button').each(function () { - var input = $(this).find('input:file').detach(); - $(this) - .button('destroy') - .append(input); - }) - .end().find('.start') - .button('destroy') - .end().find('.cancel') - .button('destroy') - .end().find('.delete') - .button('destroy') - .end().find('.progress').progressbar('destroy'); - this._super(); - } - - }); - -})); diff --git a/static/file_upload/js/jquery.fileupload-process.js b/static/file_upload/js/jquery.fileupload-process.js deleted file mode 100644 index 87042c3d..00000000 --- a/static/file_upload/js/jquery.fileupload-process.js +++ /dev/null @@ -1,164 +0,0 @@ -/* - * jQuery File Upload Processing Plugin 1.2.2 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2012, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, unparam: true */ -/*global define, window */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - './jquery.fileupload' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery - ); - } -}(function ($) { - 'use strict'; - - var originalAdd = $.blueimp.fileupload.prototype.options.add; - - // The File Upload Processing plugin extends the fileupload widget - // with file processing functionality: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - // The list of processing actions: - processQueue: [ - /* - { - action: 'log', - type: 'debug' - } - */ - ], - add: function (e, data) { - var $this = $(this); - data.process(function () { - return $this.fileupload('process', data); - }); - originalAdd.call(this, e, data); - } - }, - - processActions: { - /* - log: function (data, options) { - console[options.type]( - 'Processing "' + data.files[data.index].name + '"' - ); - } - */ - }, - - _processFile: function (data) { - var that = this, - dfd = $.Deferred().resolveWith(that, [data]), - chain = dfd.promise(); - this._trigger('process', null, data); - $.each(data.processQueue, function (i, settings) { - var func = function (data) { - return that.processActions[settings.action].call( - that, - data, - settings - ); - }; - chain = chain.pipe(func, settings.always && func); - }); - chain - .done(function () { - that._trigger('processdone', null, data); - that._trigger('processalways', null, data); - }) - .fail(function () { - that._trigger('processfail', null, data); - that._trigger('processalways', null, data); - }); - return chain; - }, - - // Replaces the settings of each processQueue item that - // are strings starting with an "@", using the remaining - // substring as key for the option map, - // e.g. "@autoUpload" is replaced with options.autoUpload: - _transformProcessQueue: function (options) { - var processQueue = []; - $.each(options.processQueue, function () { - var settings = {}, - action = this.action, - prefix = this.prefix === true ? action : this.prefix; - $.each(this, function (key, value) { - if ($.type(value) === 'string' && - value.charAt(0) === '@') { - settings[key] = options[ - value.slice(1) || (prefix ? prefix + - key.charAt(0).toUpperCase() + key.slice(1) : key) - ]; - } else { - settings[key] = value; - } - - }); - processQueue.push(settings); - }); - options.processQueue = processQueue; - }, - - // Returns the number of files currently in the processsing queue: - processing: function () { - return this._processing; - }, - - // Processes the files given as files property of the data parameter, - // returns a Promise object that allows to bind callbacks: - process: function (data) { - var that = this, - options = $.extend({}, this.options, data); - if (options.processQueue && options.processQueue.length) { - this._transformProcessQueue(options); - if (this._processing === 0) { - this._trigger('processstart'); - } - $.each(data.files, function (index) { - var opts = index ? $.extend({}, options) : options, - func = function () { - return that._processFile(opts); - }; - opts.index = index; - that._processing += 1; - that._processingQueue = that._processingQueue.pipe(func, func) - .always(function () { - that._processing -= 1; - if (that._processing === 0) { - that._trigger('processstop'); - } - }); - }); - } - return this._processingQueue; - }, - - _create: function () { - this._super(); - this._processing = 0; - this._processingQueue = $.Deferred().resolveWith(this) - .promise(); - } - - }); - -})); diff --git a/static/file_upload/js/jquery.fileupload-ui.js b/static/file_upload/js/jquery.fileupload-ui.js deleted file mode 100644 index 59381fcb..00000000 --- a/static/file_upload/js/jquery.fileupload-ui.js +++ /dev/null @@ -1,643 +0,0 @@ -/* - * jQuery File Upload User Interface Plugin 8.8.1 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2010, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, unparam: true, regexp: true */ -/*global define, window, URL, webkitURL, FileReader */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - 'tmpl', - './jquery.fileupload-image', - './jquery.fileupload-audio', - './jquery.fileupload-video', - './jquery.fileupload-validate' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery, - window.tmpl - ); - } -}(function ($, tmpl, loadImage) { - 'use strict'; - - $.blueimp.fileupload.prototype._specialOptions.push( - 'filesContainer', - 'uploadTemplateId', - 'downloadTemplateId' - ); - - // The UI version extends the file upload widget - // and adds complete user interface interaction: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - // By default, files added to the widget are uploaded as soon - // as the user clicks on the start buttons. To enable automatic - // uploads, set the following option to true: - autoUpload: false, - // The ID of the upload template: - uploadTemplateId: 'template-upload', - // The ID of the download template: - downloadTemplateId: 'template-download', - // The container for the list of files. If undefined, it is set to - // an element with class "files" inside of the widget element: - filesContainer: undefined, - // By default, files are appended to the files container. - // Set the following option to true, to prepend files instead: - prependFiles: false, - // The expected data type of the upload response, sets the dataType - // option of the $.ajax upload requests: - dataType: 'json', - - // Function returning the current number of files, - // used by the maxNumberOfFiles validation: - getNumberOfFiles: function () { - return this.filesContainer.children().length; - }, - - // Callback to retrieve the list of files from the server response: - getFilesFromResponse: function (data) { - if (data.result && $.isArray(data.result.files)) { - return data.result.files; - } - return []; - }, - - // The add callback is invoked as soon as files are added to the fileupload - // widget (via file input selection, drag & drop or add API call). - // See the basic file upload widget for more information: - add: function (e, data) { - var $this = $(this), - that = $this.data('blueimp-fileupload') || - $this.data('fileupload'), - options = that.options, - files = data.files; - data.process(function () { - return $this.fileupload('process', data); - }).always(function () { - data.context = that._renderUpload(files).data('data', data); - that._renderPreviews(data); - options.filesContainer[ - options.prependFiles ? 'prepend' : 'append' - ](data.context); - that._forceReflow(data.context); - that._transition(data.context).done( - function () { - if ((that._trigger('added', e, data) !== false) && - (options.autoUpload || data.autoUpload) && - data.autoUpload !== false && !data.files.error) { - data.submit(); - } - } - ); - }); - }, - // Callback for the start of each file upload request: - send: function (e, data) { - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'); - if (data.context && data.dataType && - data.dataType.substr(0, 6) === 'iframe') { - // Iframe Transport does not support progress events. - // In lack of an indeterminate progress bar, we set - // the progress to 100%, showing the full animated bar: - data.context - .find('.progress').addClass( - !$.support.transition && 'progress-animated' - ) - .attr('aria-valuenow', 100) - .children().first().css( - 'width', - '100%' - ); - } - return that._trigger('sent', e, data); - }, - // Callback for successful uploads: - done: function (e, data) { - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'), - getFilesFromResponse = data.getFilesFromResponse || - that.options.getFilesFromResponse, - files = getFilesFromResponse(data), - template, - deferred; - if (data.context) { - data.context.each(function (index) { - var file = files[index] || - {error: 'Empty file upload result'}; - deferred = that._addFinishedDeferreds(); - that._transition($(this)).done( - function () { - var node = $(this); - template = that._renderDownload([file]) - .replaceAll(node); - that._forceReflow(template); - that._transition(template).done( - function () { - data.context = $(this); - that._trigger('completed', e, data); - that._trigger('finished', e, data); - deferred.resolve(); - } - ); - } - ); - }); - } else { - template = that._renderDownload(files)[ - that.options.prependFiles ? 'prependTo' : 'appendTo' - ](that.options.filesContainer); - that._forceReflow(template); - deferred = that._addFinishedDeferreds(); - that._transition(template).done( - function () { - data.context = $(this); - that._trigger('completed', e, data); - that._trigger('finished', e, data); - deferred.resolve(); - } - ); - } - }, - // Callback for failed (abort or error) uploads: - fail: function (e, data) { - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'), - template, - deferred; - if (data.context) { - data.context.each(function (index) { - if (data.errorThrown !== 'abort') { - var file = data.files[index]; - file.error = file.error || data.errorThrown || - true; - deferred = that._addFinishedDeferreds(); - that._transition($(this)).done( - function () { - var node = $(this); - template = that._renderDownload([file]) - .replaceAll(node); - that._forceReflow(template); - that._transition(template).done( - function () { - data.context = $(this); - that._trigger('failed', e, data); - that._trigger('finished', e, data); - deferred.resolve(); - } - ); - } - ); - } else { - deferred = that._addFinishedDeferreds(); - that._transition($(this)).done( - function () { - $(this).remove(); - that._trigger('failed', e, data); - that._trigger('finished', e, data); - deferred.resolve(); - } - ); - } - }); - } else if (data.errorThrown !== 'abort') { - data.context = that._renderUpload(data.files)[ - that.options.prependFiles ? 'prependTo' : 'appendTo' - ](that.options.filesContainer) - .data('data', data); - that._forceReflow(data.context); - deferred = that._addFinishedDeferreds(); - that._transition(data.context).done( - function () { - data.context = $(this); - that._trigger('failed', e, data); - that._trigger('finished', e, data); - deferred.resolve(); - } - ); - } else { - that._trigger('failed', e, data); - that._trigger('finished', e, data); - that._addFinishedDeferreds().resolve(); - } - }, - // Callback for upload progress events: - progress: function (e, data) { - if (data.context) { - var progress = Math.floor(data.loaded / data.total * 100); - data.context.find('.progress') - .attr('aria-valuenow', progress) - .children().first().css( - 'width', - progress + '%' - ); - } - }, - // Callback for global upload progress events: - progressall: function (e, data) { - var $this = $(this), - progress = Math.floor(data.loaded / data.total * 100), - globalProgressNode = $this.find('.fileupload-progress'), - extendedProgressNode = globalProgressNode - .find('.progress-extended'); - if (extendedProgressNode.length) { - extendedProgressNode.html( - ($this.data('blueimp-fileupload') || $this.data('fileupload')) - ._renderExtendedProgress(data) - ); - } - globalProgressNode - .find('.progress') - .attr('aria-valuenow', progress) - .children().first().css( - 'width', - progress + '%' - ); - }, - // Callback for uploads start, equivalent to the global ajaxStart event: - start: function (e) { - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'); - that._resetFinishedDeferreds(); - that._transition($(this).find('.fileupload-progress')).done( - function () { - that._trigger('started', e); - } - ); - }, - // Callback for uploads stop, equivalent to the global ajaxStop event: - stop: function (e) { - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'), - deferred = that._addFinishedDeferreds(); - $.when.apply($, that._getFinishedDeferreds()) - .done(function () { - that._trigger('stopped', e); - }); - that._transition($(this).find('.fileupload-progress')).done( - function () { - $(this).find('.progress') - .attr('aria-valuenow', '0') - .children().first().css('width', '0%'); - $(this).find('.progress-extended').html(' '); - deferred.resolve(); - } - ); - }, - processstart: function () { - $(this).addClass('fileupload-processing'); - }, - processstop: function () { - $(this).removeClass('fileupload-processing'); - }, - // Callback for file deletion: - destroy: function (e, data) { - var that = $(this).data('blueimp-fileupload') || - $(this).data('fileupload'), - removeNode = function () { - that._transition(data.context).done( - function () { - $(this).remove(); - that._trigger('destroyed', e, data); - } - ); - }; - if (data.url) { - $.ajax(data).done(removeNode); - } else { - removeNode(); - } - } - }, - - _resetFinishedDeferreds: function () { - this._finishedUploads = []; - }, - - _addFinishedDeferreds: function (deferred) { - if (!deferred) { - deferred = $.Deferred(); - } - this._finishedUploads.push(deferred); - return deferred; - }, - - _getFinishedDeferreds: function () { - return this._finishedUploads; - }, - - // Link handler, that allows to download files - // by drag & drop of the links to the desktop: - _enableDragToDesktop: function () { - var link = $(this), - url = link.prop('href'), - name = link.prop('download'), - type = 'application/octet-stream'; - link.bind('dragstart', function (e) { - try { - e.originalEvent.dataTransfer.setData( - 'DownloadURL', - [type, name, url].join(':') - ); - } catch (ignore) {} - }); - }, - - _formatFileSize: function (bytes) { - if (typeof bytes !== 'number') { - return ''; - } - if (bytes >= 1000000000) { - return (bytes / 1000000000).toFixed(2) + ' GB'; - } - if (bytes >= 1000000) { - return (bytes / 1000000).toFixed(2) + ' MB'; - } - return (bytes / 1000).toFixed(2) + ' KB'; - }, - - _formatBitrate: function (bits) { - if (typeof bits !== 'number') { - return ''; - } - if (bits >= 1000000000) { - return (bits / 1000000000).toFixed(2) + ' Gbit/s'; - } - if (bits >= 1000000) { - return (bits / 1000000).toFixed(2) + ' Mbit/s'; - } - if (bits >= 1000) { - return (bits / 1000).toFixed(2) + ' kbit/s'; - } - return bits.toFixed(2) + ' bit/s'; - }, - - _formatTime: function (seconds) { - var date = new Date(seconds * 1000), - days = Math.floor(seconds / 86400); - days = days ? days + 'd ' : ''; - return days + - ('0' + date.getUTCHours()).slice(-2) + ':' + - ('0' + date.getUTCMinutes()).slice(-2) + ':' + - ('0' + date.getUTCSeconds()).slice(-2); - }, - - _formatPercentage: function (floatValue) { - return (floatValue * 100).toFixed(2) + ' %'; - }, - - _renderExtendedProgress: function (data) { - return this._formatBitrate(data.bitrate) + ' | ' + - this._formatTime( - (data.total - data.loaded) * 8 / data.bitrate - ) + ' | ' + - this._formatPercentage( - data.loaded / data.total - ) + ' | ' + - this._formatFileSize(data.loaded) + ' / ' + - this._formatFileSize(data.total); - }, - - _renderTemplate: function (func, files) { - if (!func) { - return $(); - } - var result = func({ - files: files, - formatFileSize: this._formatFileSize, - options: this.options - }); - if (result instanceof $) { - return result; - } - return $(this.options.templatesContainer).html(result).children(); - }, - - _renderPreviews: function (data) { - data.context.find('.preview').each(function (index, elm) { - $(elm).append(data.files[index].preview); - }); - }, - - _renderUpload: function (files) { - return this._renderTemplate( - this.options.uploadTemplate, - files - ); - }, - - _renderDownload: function (files) { - return this._renderTemplate( - this.options.downloadTemplate, - files - ).find('a[download]').each(this._enableDragToDesktop).end(); - }, - - _startHandler: function (e) { - e.preventDefault(); - var button = $(e.currentTarget), - template = button.closest('.template-upload'), - data = template.data('data'); - if (data && data.submit && !data.jqXHR && data.submit()) { - button.prop('disabled', true); - } - }, - - _cancelHandler: function (e) { - e.preventDefault(); - var template = $(e.currentTarget).closest('.template-upload'), - data = template.data('data') || {}; - if (!data.jqXHR) { - data.errorThrown = 'abort'; - this._trigger('fail', e, data); - } else { - data.jqXHR.abort(); - } - }, - - _deleteHandler: function (e) { - e.preventDefault(); - var button = $(e.currentTarget); - this._trigger('destroy', e, $.extend({ - context: button.closest('.template-download'), - type: 'DELETE' - }, button.data())); - }, - - _forceReflow: function (node) { - return $.support.transition && node.length && - node[0].offsetWidth; - }, - - _transition: function (node) { - var dfd = $.Deferred(); - if ($.support.transition && node.hasClass('fade') && node.is(':visible')) { - node.bind( - $.support.transition.end, - function (e) { - // Make sure we don't respond to other transitions events - // in the container element, e.g. from button elements: - if (e.target === node[0]) { - node.unbind($.support.transition.end); - dfd.resolveWith(node); - } - } - ).toggleClass('in'); - } else { - node.toggleClass('in'); - dfd.resolveWith(node); - } - return dfd; - }, - - _initButtonBarEventHandlers: function () { - var fileUploadButtonBar = this.element.find('.fileupload-buttonbar'), - filesList = this.options.filesContainer; - this._on(fileUploadButtonBar.find('.start'), { - click: function (e) { - e.preventDefault(); - filesList.find('.start').click(); - } - }); - this._on(fileUploadButtonBar.find('.cancel'), { - click: function (e) { - e.preventDefault(); - filesList.find('.cancel').click(); - } - }); - this._on(fileUploadButtonBar.find('.delete'), { - click: function (e) { - e.preventDefault(); - filesList.find('.toggle:checked') - .closest('.template-download') - .find('.delete').click(); - fileUploadButtonBar.find('.toggle') - .prop('checked', false); - } - }); - this._on(fileUploadButtonBar.find('.toggle'), { - change: function (e) { - filesList.find('.toggle').prop( - 'checked', - $(e.currentTarget).is(':checked') - ); - } - }); - }, - - _destroyButtonBarEventHandlers: function () { - this._off( - this.element.find('.fileupload-buttonbar') - .find('.start, .cancel, .delete'), - 'click' - ); - this._off( - this.element.find('.fileupload-buttonbar .toggle'), - 'change.' - ); - }, - - _initEventHandlers: function () { - this._super(); - this._on(this.options.filesContainer, { - 'click .start': this._startHandler, - 'click .cancel': this._cancelHandler, - 'click .delete': this._deleteHandler - }); - this._initButtonBarEventHandlers(); - }, - - _destroyEventHandlers: function () { - this._destroyButtonBarEventHandlers(); - this._off(this.options.filesContainer, 'click'); - this._super(); - }, - - _enableFileInputButton: function () { - this.element.find('.fileinput-button input') - .prop('disabled', false) - .parent().removeClass('disabled'); - }, - - _disableFileInputButton: function () { - this.element.find('.fileinput-button input') - .prop('disabled', true) - .parent().addClass('disabled'); - }, - - _initTemplates: function () { - var options = this.options; - options.templatesContainer = this.document[0].createElement( - options.filesContainer.prop('nodeName') - ); - if (tmpl) { - if (options.uploadTemplateId) { - options.uploadTemplate = tmpl(options.uploadTemplateId); - } - if (options.downloadTemplateId) { - options.downloadTemplate = tmpl(options.downloadTemplateId); - } - } - }, - - _initFilesContainer: function () { - var options = this.options; - if (options.filesContainer === undefined) { - options.filesContainer = this.element.find('.files'); - } else if (!(options.filesContainer instanceof $)) { - options.filesContainer = $(options.filesContainer); - } - }, - - _initSpecialOptions: function () { - this._super(); - this._initFilesContainer(); - this._initTemplates(); - }, - - _create: function () { - this._super(); - this._resetFinishedDeferreds(); - if (!$.support.fileInput) { - this._disableFileInputButton(); - } - }, - - enable: function () { - var wasDisabled = false; - if (this.options.disabled) { - wasDisabled = true; - } - this._super(); - if (wasDisabled) { - this.element.find('input, button').prop('disabled', false); - this._enableFileInputButton(); - } - }, - - disable: function () { - if (!this.options.disabled) { - this.element.find('input, button').prop('disabled', true); - this._disableFileInputButton(); - } - this._super(); - } - - }); - -})); diff --git a/static/file_upload/js/jquery.fileupload-validate.js b/static/file_upload/js/jquery.fileupload-validate.js deleted file mode 100644 index ee1c2f2e..00000000 --- a/static/file_upload/js/jquery.fileupload-validate.js +++ /dev/null @@ -1,117 +0,0 @@ -/* - * jQuery File Upload Validation Plugin 1.1.1 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, unparam: true, regexp: true */ -/*global define, window */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - './jquery.fileupload-process' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery - ); - } -}(function ($) { - 'use strict'; - - // Append to the default processQueue: - $.blueimp.fileupload.prototype.options.processQueue.push( - { - action: 'validate', - // Always trigger this action, - // even if the previous action was rejected: - always: true, - // Options taken from the global options map: - acceptFileTypes: '@', - maxFileSize: '@', - minFileSize: '@', - maxNumberOfFiles: '@', - disabled: '@disableValidation' - } - ); - - // The File Upload Validation plugin extends the fileupload widget - // with file validation functionality: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - /* - // The regular expression for allowed file types, matches - // against either file type or file name: - acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i, - // The maximum allowed file size in bytes: - maxFileSize: 10000000, // 10 MB - // The minimum allowed file size in bytes: - minFileSize: undefined, // No minimal file size - // The limit of files to be uploaded: - maxNumberOfFiles: 10, - */ - - // Function returning the current number of files, - // has to be overriden for maxNumberOfFiles validation: - getNumberOfFiles: $.noop, - - // Error and info messages: - messages: { - maxNumberOfFiles: 'Maximum number of files exceeded', - acceptFileTypes: 'File type not allowed', - maxFileSize: 'File is too large', - minFileSize: 'File is too small' - } - }, - - processActions: { - - validate: function (data, options) { - if (options.disabled) { - return data; - } - var dfd = $.Deferred(), - settings = this.options, - file = data.files[data.index]; - if ($.type(options.maxNumberOfFiles) === 'number' && - (settings.getNumberOfFiles() || 0) + data.files.length > - options.maxNumberOfFiles) { - file.error = settings.i18n('maxNumberOfFiles'); - } else if (options.acceptFileTypes && - !(options.acceptFileTypes.test(file.type) || - options.acceptFileTypes.test(file.name))) { - file.error = settings.i18n('acceptFileTypes'); - } else if (options.maxFileSize && file.size > - options.maxFileSize) { - file.error = settings.i18n('maxFileSize'); - } else if ($.type(file.size) === 'number' && - file.size < options.minFileSize) { - file.error = settings.i18n('minFileSize'); - } else { - delete file.error; - } - if (file.error || data.files.error) { - data.files.error = true; - dfd.rejectWith(this, [data]); - } else { - dfd.resolveWith(this, [data]); - } - return dfd.promise(); - } - - } - - }); - -})); diff --git a/static/file_upload/js/jquery.fileupload-video.js b/static/file_upload/js/jquery.fileupload-video.js deleted file mode 100644 index c8b10193..00000000 --- a/static/file_upload/js/jquery.fileupload-video.js +++ /dev/null @@ -1,106 +0,0 @@ -/* - * jQuery File Upload Video Preview Plugin 1.0.3 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, unparam: true, regexp: true */ -/*global define, window, document */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - 'load-image', - './jquery.fileupload-process' - ], factory); - } else { - // Browser globals: - factory( - window.jQuery, - window.loadImage - ); - } -}(function ($, loadImage) { - 'use strict'; - - // Prepend to the default processQueue: - $.blueimp.fileupload.prototype.options.processQueue.unshift( - { - action: 'loadVideo', - // Use the action as prefix for the "@" options: - prefix: true, - fileTypes: '@', - maxFileSize: '@', - disabled: '@disableVideoPreview' - }, - { - action: 'setVideo', - name: '@videoPreviewName', - disabled: '@disableVideoPreview' - } - ); - - // The File Upload Video Preview plugin extends the fileupload widget - // with video preview functionality: - $.widget('blueimp.fileupload', $.blueimp.fileupload, { - - options: { - // The regular expression for the types of video files to load, - // matched against the file type: - loadVideoFileTypes: /^video\/.*$/ - }, - - _videoElement: document.createElement('video'), - - processActions: { - - // Loads the video file given via data.files and data.index - // as video element if the browser supports playing it. - // Accepts the options fileTypes (regular expression) - // and maxFileSize (integer) to limit the files to load: - loadVideo: function (data, options) { - if (options.disabled) { - return data; - } - var file = data.files[data.index], - url, - video; - if (this._videoElement.canPlayType && - this._videoElement.canPlayType(file.type) && - ($.type(options.maxFileSize) !== 'number' || - file.size <= options.maxFileSize) && - (!options.fileTypes || - options.fileTypes.test(file.type))) { - url = loadImage.createObjectURL(file); - if (url) { - video = this._videoElement.cloneNode(false); - video.src = url; - video.controls = true; - data.video = video; - return data; - } - } - return data; - }, - - // Sets the video element as a property of the file object: - setVideo: function (data, options) { - if (data.video && !options.disabled) { - data.files[data.index][options.name || 'preview'] = data.video; - } - return data; - } - - } - - }); - -})); diff --git a/static/file_upload/js/jquery.fileupload.js b/static/file_upload/js/jquery.fileupload.js deleted file mode 100644 index 3a1ec705..00000000 --- a/static/file_upload/js/jquery.fileupload.js +++ /dev/null @@ -1,1336 +0,0 @@ -/* - * jQuery File Upload Plugin 5.32.2 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2010, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, unparam: true, regexp: true */ -/*global define, window, document, location, File, Blob, FormData */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define([ - 'jquery', - 'jquery.ui.widget' - ], factory); - } else { - // Browser globals: - factory(window.jQuery); - } -}(function ($) { - 'use strict'; - - // Detect file input support, based on - // http://viljamis.com/blog/2012/file-upload-support-on-mobile/ - $.support.fileInput = !(new RegExp( - // Handle devices which give false positives for the feature detection: - '(Android (1\\.[0156]|2\\.[01]))' + - '|(Windows Phone (OS 7|8\\.0))|(XBLWP)|(ZuneWP)|(WPDesktop)' + - '|(w(eb)?OSBrowser)|(webOS)' + - '|(Kindle/(1\\.0|2\\.[05]|3\\.0))' - ).test(window.navigator.userAgent) || - // Feature detection for all other devices: - $('').prop('disabled')); - - // The FileReader API is not actually used, but works as feature detection, - // as e.g. Safari supports XHR file uploads via the FormData API, - // but not non-multipart XHR file uploads: - $.support.xhrFileUpload = !!(window.XMLHttpRequestUpload && window.FileReader); - $.support.xhrFormDataFileUpload = !!window.FormData; - - // Detect support for Blob slicing (required for chunked uploads): - $.support.blobSlice = window.Blob && (Blob.prototype.slice || - Blob.prototype.webkitSlice || Blob.prototype.mozSlice); - - // The fileupload widget listens for change events on file input fields defined - // via fileInput setting and paste or drop events of the given dropZone. - // In addition to the default jQuery Widget methods, the fileupload widget - // exposes the "add" and "send" methods, to add or directly send files using - // the fileupload API. - // By default, files added via file input selection, paste, drag & drop or - // "add" method are uploaded immediately, but it is possible to override - // the "add" callback option to queue file uploads. - $.widget('blueimp.fileupload', { - - options: { - // The drop target element(s), by the default the complete document. - // Set to null to disable drag & drop support: - dropZone: $(document), - // The paste target element(s), by the default the complete document. - // Set to null to disable paste support: - pasteZone: $(document), - // The file input field(s), that are listened to for change events. - // If undefined, it is set to the file input fields inside - // of the widget element on plugin initialization. - // Set to null to disable the change listener. - fileInput: undefined, - // By default, the file input field is replaced with a clone after - // each input field change event. This is required for iframe transport - // queues and allows change events to be fired for the same file - // selection, but can be disabled by setting the following option to false: - replaceFileInput: true, - // The parameter name for the file form data (the request argument name). - // If undefined or empty, the name property of the file input field is - // used, or "files[]" if the file input name property is also empty, - // can be a string or an array of strings: - paramName: undefined, - // By default, each file of a selection is uploaded using an individual - // request for XHR type uploads. Set to false to upload file - // selections in one request each: - singleFileUploads: true, - // To limit the number of files uploaded with one XHR request, - // set the following option to an integer greater than 0: - limitMultiFileUploads: undefined, - // Set the following option to true to issue all file upload requests - // in a sequential order: - sequentialUploads: false, - // To limit the number of concurrent uploads, - // set the following option to an integer greater than 0: - limitConcurrentUploads: undefined, - // Set the following option to true to force iframe transport uploads: - forceIframeTransport: false, - // Set the following option to the location of a redirect url on the - // origin server, for cross-domain iframe transport uploads: - redirect: undefined, - // The parameter name for the redirect url, sent as part of the form - // data and set to 'redirect' if this option is empty: - redirectParamName: undefined, - // Set the following option to the location of a postMessage window, - // to enable postMessage transport uploads: - postMessage: undefined, - // By default, XHR file uploads are sent as multipart/form-data. - // The iframe transport is always using multipart/form-data. - // Set to false to enable non-multipart XHR uploads: - multipart: true, - // To upload large files in smaller chunks, set the following option - // to a preferred maximum chunk size. If set to 0, null or undefined, - // or the browser does not support the required Blob API, files will - // be uploaded as a whole. - maxChunkSize: undefined, - // When a non-multipart upload or a chunked multipart upload has been - // aborted, this option can be used to resume the upload by setting - // it to the size of the already uploaded bytes. This option is most - // useful when modifying the options object inside of the "add" or - // "send" callbacks, as the options are cloned for each file upload. - uploadedBytes: undefined, - // By default, failed (abort or error) file uploads are removed from the - // global progress calculation. Set the following option to false to - // prevent recalculating the global progress data: - recalculateProgress: true, - // Interval in milliseconds to calculate and trigger progress events: - progressInterval: 100, - // Interval in milliseconds to calculate progress bitrate: - bitrateInterval: 500, - // By default, uploads are started automatically when adding files: - autoUpload: true, - - // Error and info messages: - messages: { - uploadedBytes: 'Uploaded bytes exceed file size' - }, - - // Translation function, gets the message key to be translated - // and an object with context specific data as arguments: - i18n: function (message, context) { - message = this.messages[message] || message.toString(); - if (context) { - $.each(context, function (key, value) { - message = message.replace('{' + key + '}', value); - }); - } - return message; - }, - - // Additional form data to be sent along with the file uploads can be set - // using this option, which accepts an array of objects with name and - // value properties, a function returning such an array, a FormData - // object (for XHR file uploads), or a simple object. - // The form of the first fileInput is given as parameter to the function: - formData: function (form) { - return form.serializeArray(); - }, - - // The add callback is invoked as soon as files are added to the fileupload - // widget (via file input selection, drag & drop, paste or add API call). - // If the singleFileUploads option is enabled, this callback will be - // called once for each file in the selection for XHR file uploads, else - // once for each file selection. - // - // The upload starts when the submit method is invoked on the data parameter. - // The data object contains a files property holding the added files - // and allows you to override plugin options as well as define ajax settings. - // - // Listeners for this callback can also be bound the following way: - // .bind('fileuploadadd', func); - // - // data.submit() returns a Promise object and allows to attach additional - // handlers using jQuery's Deferred callbacks: - // data.submit().done(func).fail(func).always(func); - add: function (e, data) { - if (data.autoUpload || (data.autoUpload !== false && - $(this).fileupload('option', 'autoUpload'))) { - data.process().done(function () { - data.submit(); - }); - } - }, - - // Other callbacks: - - // Callback for the submit event of each file upload: - // submit: function (e, data) {}, // .bind('fileuploadsubmit', func); - - // Callback for the start of each file upload request: - // send: function (e, data) {}, // .bind('fileuploadsend', func); - - // Callback for successful uploads: - // done: function (e, data) {}, // .bind('fileuploaddone', func); - - // Callback for failed (abort or error) uploads: - // fail: function (e, data) {}, // .bind('fileuploadfail', func); - - // Callback for completed (success, abort or error) requests: - // always: function (e, data) {}, // .bind('fileuploadalways', func); - - // Callback for upload progress events: - // progress: function (e, data) {}, // .bind('fileuploadprogress', func); - - // Callback for global upload progress events: - // progressall: function (e, data) {}, // .bind('fileuploadprogressall', func); - - // Callback for uploads start, equivalent to the global ajaxStart event: - // start: function (e) {}, // .bind('fileuploadstart', func); - - // Callback for uploads stop, equivalent to the global ajaxStop event: - // stop: function (e) {}, // .bind('fileuploadstop', func); - - // Callback for change events of the fileInput(s): - // change: function (e, data) {}, // .bind('fileuploadchange', func); - - // Callback for paste events to the pasteZone(s): - // paste: function (e, data) {}, // .bind('fileuploadpaste', func); - - // Callback for drop events of the dropZone(s): - // drop: function (e, data) {}, // .bind('fileuploaddrop', func); - - // Callback for dragover events of the dropZone(s): - // dragover: function (e) {}, // .bind('fileuploaddragover', func); - - // Callback for the start of each chunk upload request: - // chunksend: function (e, data) {}, // .bind('fileuploadchunksend', func); - - // Callback for successful chunk uploads: - // chunkdone: function (e, data) {}, // .bind('fileuploadchunkdone', func); - - // Callback for failed (abort or error) chunk uploads: - // chunkfail: function (e, data) {}, // .bind('fileuploadchunkfail', func); - - // Callback for completed (success, abort or error) chunk upload requests: - // chunkalways: function (e, data) {}, // .bind('fileuploadchunkalways', func); - - // The plugin options are used as settings object for the ajax calls. - // The following are jQuery ajax settings required for the file uploads: - processData: false, - contentType: false, - cache: false - }, - - // A list of options that require reinitializing event listeners and/or - // special initialization code: - _specialOptions: [ - 'fileInput', - 'dropZone', - 'pasteZone', - 'multipart', - 'forceIframeTransport' - ], - - _blobSlice: $.support.blobSlice && function () { - var slice = this.slice || this.webkitSlice || this.mozSlice; - return slice.apply(this, arguments); - }, - - _BitrateTimer: function () { - this.timestamp = ((Date.now) ? Date.now() : (new Date()).getTime()); - this.loaded = 0; - this.bitrate = 0; - this.getBitrate = function (now, loaded, interval) { - var timeDiff = now - this.timestamp; - if (!this.bitrate || !interval || timeDiff > interval) { - this.bitrate = (loaded - this.loaded) * (1000 / timeDiff) * 8; - this.loaded = loaded; - this.timestamp = now; - } - return this.bitrate; - }; - }, - - _isXHRUpload: function (options) { - return !options.forceIframeTransport && - ((!options.multipart && $.support.xhrFileUpload) || - $.support.xhrFormDataFileUpload); - }, - - _getFormData: function (options) { - var formData; - if (typeof options.formData === 'function') { - return options.formData(options.form); - } - if ($.isArray(options.formData)) { - return options.formData; - } - if ($.type(options.formData) === 'object') { - formData = []; - $.each(options.formData, function (name, value) { - formData.push({name: name, value: value}); - }); - return formData; - } - return []; - }, - - _getTotal: function (files) { - var total = 0; - $.each(files, function (index, file) { - total += file.size || 1; - }); - return total; - }, - - _initProgressObject: function (obj) { - var progress = { - loaded: 0, - total: 0, - bitrate: 0 - }; - if (obj._progress) { - $.extend(obj._progress, progress); - } else { - obj._progress = progress; - } - }, - - _initResponseObject: function (obj) { - var prop; - if (obj._response) { - for (prop in obj._response) { - if (obj._response.hasOwnProperty(prop)) { - delete obj._response[prop]; - } - } - } else { - obj._response = {}; - } - }, - - _onProgress: function (e, data) { - if (e.lengthComputable) { - var now = ((Date.now) ? Date.now() : (new Date()).getTime()), - loaded; - if (data._time && data.progressInterval && - (now - data._time < data.progressInterval) && - e.loaded !== e.total) { - return; - } - data._time = now; - loaded = Math.floor( - e.loaded / e.total * (data.chunkSize || data._progress.total) - ) + (data.uploadedBytes || 0); - // Add the difference from the previously loaded state - // to the global loaded counter: - this._progress.loaded += (loaded - data._progress.loaded); - this._progress.bitrate = this._bitrateTimer.getBitrate( - now, - this._progress.loaded, - data.bitrateInterval - ); - data._progress.loaded = data.loaded = loaded; - data._progress.bitrate = data.bitrate = data._bitrateTimer.getBitrate( - now, - loaded, - data.bitrateInterval - ); - // Trigger a custom progress event with a total data property set - // to the file size(s) of the current upload and a loaded data - // property calculated accordingly: - this._trigger('progress', e, data); - // Trigger a global progress event for all current file uploads, - // including ajax calls queued for sequential file uploads: - this._trigger('progressall', e, this._progress); - } - }, - - _initProgressListener: function (options) { - var that = this, - xhr = options.xhr ? options.xhr() : $.ajaxSettings.xhr(); - // Accesss to the native XHR object is required to add event listeners - // for the upload progress event: - if (xhr.upload) { - $(xhr.upload).bind('progress', function (e) { - var oe = e.originalEvent; - // Make sure the progress event properties get copied over: - e.lengthComputable = oe.lengthComputable; - e.loaded = oe.loaded; - e.total = oe.total; - that._onProgress(e, options); - }); - options.xhr = function () { - return xhr; - }; - } - }, - - _isInstanceOf: function (type, obj) { - // Cross-frame instanceof check - return Object.prototype.toString.call(obj) === '[object ' + type + ']'; - }, - - _initXHRData: function (options) { - var that = this, - formData, - file = options.files[0], - // Ignore non-multipart setting if not supported: - multipart = options.multipart || !$.support.xhrFileUpload, - paramName = options.paramName[0]; - options.headers = options.headers || {}; - if (options.contentRange) { - options.headers['Content-Range'] = options.contentRange; - } - if (!multipart || options.blob || !this._isInstanceOf('File', file)) { - options.headers['Content-Disposition'] = 'attachment; filename="' + - encodeURI(file.name) + '"'; - } - if (!multipart) { - options.contentType = file.type; - options.data = options.blob || file; - } else if ($.support.xhrFormDataFileUpload) { - if (options.postMessage) { - // window.postMessage does not allow sending FormData - // objects, so we just add the File/Blob objects to - // the formData array and let the postMessage window - // create the FormData object out of this array: - formData = this._getFormData(options); - if (options.blob) { - formData.push({ - name: paramName, - value: options.blob - }); - } else { - $.each(options.files, function (index, file) { - formData.push({ - name: options.paramName[index] || paramName, - value: file - }); - }); - } - } else { - if (that._isInstanceOf('FormData', options.formData)) { - formData = options.formData; - } else { - formData = new FormData(); - $.each(this._getFormData(options), function (index, field) { - formData.append(field.name, field.value); - }); - } - if (options.blob) { - formData.append(paramName, options.blob, file.name); - } else { - $.each(options.files, function (index, file) { - // This check allows the tests to run with - // dummy objects: - if (that._isInstanceOf('File', file) || - that._isInstanceOf('Blob', file)) { - formData.append( - options.paramName[index] || paramName, - file, - file.name - ); - } - }); - } - } - options.data = formData; - } - // Blob reference is not needed anymore, free memory: - options.blob = null; - }, - - _initIframeSettings: function (options) { - var targetHost = $('').prop('href', options.url).prop('host'); - // Setting the dataType to iframe enables the iframe transport: - options.dataType = 'iframe ' + (options.dataType || ''); - // The iframe transport accepts a serialized array as form data: - options.formData = this._getFormData(options); - // Add redirect url to form data on cross-domain uploads: - if (options.redirect && targetHost && targetHost !== location.host) { - options.formData.push({ - name: options.redirectParamName || 'redirect', - value: options.redirect - }); - } - }, - - _initDataSettings: function (options) { - if (this._isXHRUpload(options)) { - if (!this._chunkedUpload(options, true)) { - if (!options.data) { - this._initXHRData(options); - } - this._initProgressListener(options); - } - if (options.postMessage) { - // Setting the dataType to postmessage enables the - // postMessage transport: - options.dataType = 'postmessage ' + (options.dataType || ''); - } - } else { - this._initIframeSettings(options); - } - }, - - _getParamName: function (options) { - var fileInput = $(options.fileInput), - paramName = options.paramName; - if (!paramName) { - paramName = []; - fileInput.each(function () { - var input = $(this), - name = input.prop('name') || 'file', - i = (input.prop('files') || [1]).length; - while (i) { - paramName.push(name); - i -= 1; - } - }); - if (!paramName.length) { - paramName = [fileInput.prop('name') || 'file']; - } - } else if (!$.isArray(paramName)) { - paramName = [paramName]; - } - return paramName; - }, - - _initFormSettings: function (options) { - // Retrieve missing options from the input field and the - // associated form, if available: - if (!options.form || !options.form.length) { - options.form = $(options.fileInput.prop('form')); - // If the given file input doesn't have an associated form, - // use the default widget file input's form: - if (!options.form.length) { - options.form = $(this.options.fileInput.prop('form')); - } - } - options.paramName = this._getParamName(options); - if (!options.url) { - options.url = options.form.prop('action') || location.href; - } - // The HTTP request method must be "POST" or "PUT": - options.type = (options.type || options.form.prop('method') || '') - .toUpperCase(); - if (options.type !== 'POST' && options.type !== 'PUT' && - options.type !== 'PATCH') { - options.type = 'POST'; - } - if (!options.formAcceptCharset) { - options.formAcceptCharset = options.form.attr('accept-charset'); - } - }, - - _getAJAXSettings: function (data) { - var options = $.extend({}, this.options, data); - this._initFormSettings(options); - this._initDataSettings(options); - return options; - }, - - // jQuery 1.6 doesn't provide .state(), - // while jQuery 1.8+ removed .isRejected() and .isResolved(): - _getDeferredState: function (deferred) { - if (deferred.state) { - return deferred.state(); - } - if (deferred.isResolved()) { - return 'resolved'; - } - if (deferred.isRejected()) { - return 'rejected'; - } - return 'pending'; - }, - - // Maps jqXHR callbacks to the equivalent - // methods of the given Promise object: - _enhancePromise: function (promise) { - promise.success = promise.done; - promise.error = promise.fail; - promise.complete = promise.always; - return promise; - }, - - // Creates and returns a Promise object enhanced with - // the jqXHR methods abort, success, error and complete: - _getXHRPromise: function (resolveOrReject, context, args) { - var dfd = $.Deferred(), - promise = dfd.promise(); - context = context || this.options.context || promise; - if (resolveOrReject === true) { - dfd.resolveWith(context, args); - } else if (resolveOrReject === false) { - dfd.rejectWith(context, args); - } - promise.abort = dfd.promise; - return this._enhancePromise(promise); - }, - - // Adds convenience methods to the data callback argument: - _addConvenienceMethods: function (e, data) { - var that = this, - getPromise = function (data) { - return $.Deferred().resolveWith(that, [data]).promise(); - }; - data.process = function (resolveFunc, rejectFunc) { - if (resolveFunc || rejectFunc) { - data._processQueue = this._processQueue = - (this._processQueue || getPromise(this)) - .pipe(resolveFunc, rejectFunc); - } - return this._processQueue || getPromise(this); - }; - data.submit = function () { - if (this.state() !== 'pending') { - data.jqXHR = this.jqXHR = - (that._trigger('submit', e, this) !== false) && - that._onSend(e, this); - } - return this.jqXHR || that._getXHRPromise(); - }; - data.abort = function () { - if (this.jqXHR) { - return this.jqXHR.abort(); - } - return that._getXHRPromise(); - }; - data.state = function () { - if (this.jqXHR) { - return that._getDeferredState(this.jqXHR); - } - if (this._processQueue) { - return that._getDeferredState(this._processQueue); - } - }; - data.progress = function () { - return this._progress; - }; - data.response = function () { - return this._response; - }; - }, - - // Parses the Range header from the server response - // and returns the uploaded bytes: - _getUploadedBytes: function (jqXHR) { - var range = jqXHR.getResponseHeader('Range'), - parts = range && range.split('-'), - upperBytesPos = parts && parts.length > 1 && - parseInt(parts[1], 10); - return upperBytesPos && upperBytesPos + 1; - }, - - // Uploads a file in multiple, sequential requests - // by splitting the file up in multiple blob chunks. - // If the second parameter is true, only tests if the file - // should be uploaded in chunks, but does not invoke any - // upload requests: - _chunkedUpload: function (options, testOnly) { - options.uploadedBytes = options.uploadedBytes || 0; - var that = this, - file = options.files[0], - fs = file.size, - ub = options.uploadedBytes, - mcs = options.maxChunkSize || fs, - slice = this._blobSlice, - dfd = $.Deferred(), - promise = dfd.promise(), - jqXHR, - upload; - if (!(this._isXHRUpload(options) && slice && (ub || mcs < fs)) || - options.data) { - return false; - } - if (testOnly) { - return true; - } - if (ub >= fs) { - file.error = options.i18n('uploadedBytes'); - return this._getXHRPromise( - false, - options.context, - [null, 'error', file.error] - ); - } - // The chunk upload method: - upload = function () { - // Clone the options object for each chunk upload: - var o = $.extend({}, options), - currentLoaded = o._progress.loaded; - o.blob = slice.call( - file, - ub, - ub + mcs, - file.type - ); - // Store the current chunk size, as the blob itself - // will be dereferenced after data processing: - o.chunkSize = o.blob.size; - // Expose the chunk bytes position range: - o.contentRange = 'bytes ' + ub + '-' + - (ub + o.chunkSize - 1) + '/' + fs; - // Process the upload data (the blob and potential form data): - that._initXHRData(o); - // Add progress listeners for this chunk upload: - that._initProgressListener(o); - jqXHR = ((that._trigger('chunksend', null, o) !== false && $.ajax(o)) || - that._getXHRPromise(false, o.context)) - .done(function (result, textStatus, jqXHR) { - ub = that._getUploadedBytes(jqXHR) || - (ub + o.chunkSize); - // Create a progress event if no final progress event - // with loaded equaling total has been triggered - // for this chunk: - if (currentLoaded + o.chunkSize - o._progress.loaded) { - that._onProgress($.Event('progress', { - lengthComputable: true, - loaded: ub - o.uploadedBytes, - total: ub - o.uploadedBytes - }), o); - } - options.uploadedBytes = o.uploadedBytes = ub; - o.result = result; - o.textStatus = textStatus; - o.jqXHR = jqXHR; - that._trigger('chunkdone', null, o); - that._trigger('chunkalways', null, o); - if (ub < fs) { - // File upload not yet complete, - // continue with the next chunk: - upload(); - } else { - dfd.resolveWith( - o.context, - [result, textStatus, jqXHR] - ); - } - }) - .fail(function (jqXHR, textStatus, errorThrown) { - o.jqXHR = jqXHR; - o.textStatus = textStatus; - o.errorThrown = errorThrown; - that._trigger('chunkfail', null, o); - that._trigger('chunkalways', null, o); - dfd.rejectWith( - o.context, - [jqXHR, textStatus, errorThrown] - ); - }); - }; - this._enhancePromise(promise); - promise.abort = function () { - return jqXHR.abort(); - }; - upload(); - return promise; - }, - - _beforeSend: function (e, data) { - if (this._active === 0) { - // the start callback is triggered when an upload starts - // and no other uploads are currently running, - // equivalent to the global ajaxStart event: - this._trigger('start'); - // Set timer for global bitrate progress calculation: - this._bitrateTimer = new this._BitrateTimer(); - // Reset the global progress values: - this._progress.loaded = this._progress.total = 0; - this._progress.bitrate = 0; - } - // Make sure the container objects for the .response() and - // .progress() methods on the data object are available - // and reset to their initial state: - this._initResponseObject(data); - this._initProgressObject(data); - data._progress.loaded = data.loaded = data.uploadedBytes || 0; - data._progress.total = data.total = this._getTotal(data.files) || 1; - data._progress.bitrate = data.bitrate = 0; - this._active += 1; - // Initialize the global progress values: - this._progress.loaded += data.loaded; - this._progress.total += data.total; - }, - - _onDone: function (result, textStatus, jqXHR, options) { - var total = options._progress.total, - response = options._response; - if (options._progress.loaded < total) { - // Create a progress event if no final progress event - // with loaded equaling total has been triggered: - this._onProgress($.Event('progress', { - lengthComputable: true, - loaded: total, - total: total - }), options); - } - response.result = options.result = result; - response.textStatus = options.textStatus = textStatus; - response.jqXHR = options.jqXHR = jqXHR; - this._trigger('done', null, options); - }, - - _onFail: function (jqXHR, textStatus, errorThrown, options) { - var response = options._response; - if (options.recalculateProgress) { - // Remove the failed (error or abort) file upload from - // the global progress calculation: - this._progress.loaded -= options._progress.loaded; - this._progress.total -= options._progress.total; - } - response.jqXHR = options.jqXHR = jqXHR; - response.textStatus = options.textStatus = textStatus; - response.errorThrown = options.errorThrown = errorThrown; - if ('file' in response.jqXHR.responseJSON) { - response.errorThrown = options.errorThrown = response.jqXHR.responseJSON.file.join(", "); - } - this._trigger('fail', null, options); - }, - - _onAlways: function (jqXHRorResult, textStatus, jqXHRorError, options) { - // jqXHRorResult, textStatus and jqXHRorError are added to the - // options object via done and fail callbacks - this._trigger('always', null, options); - }, - - _onSend: function (e, data) { - if (!data.submit) { - this._addConvenienceMethods(e, data); - } - var that = this, - jqXHR, - aborted, - slot, - pipe, - options = that._getAJAXSettings(data), - send = function () { - that._sending += 1; - // Set timer for bitrate progress calculation: - options._bitrateTimer = new that._BitrateTimer(); - jqXHR = jqXHR || ( - ((aborted || that._trigger('send', e, options) === false) && - that._getXHRPromise(false, options.context, aborted)) || - that._chunkedUpload(options) || $.ajax(options) - ).done(function (result, textStatus, jqXHR) { - that._onDone(result, textStatus, jqXHR, options); - }).fail(function (jqXHR, textStatus, errorThrown) { - that._onFail(jqXHR, textStatus, errorThrown, options); - }).always(function (jqXHRorResult, textStatus, jqXHRorError) { - that._onAlways( - jqXHRorResult, - textStatus, - jqXHRorError, - options - ); - that._sending -= 1; - that._active -= 1; - if (options.limitConcurrentUploads && - options.limitConcurrentUploads > that._sending) { - // Start the next queued upload, - // that has not been aborted: - var nextSlot = that._slots.shift(); - while (nextSlot) { - if (that._getDeferredState(nextSlot) === 'pending') { - nextSlot.resolve(); - break; - } - nextSlot = that._slots.shift(); - } - } - if (that._active === 0) { - // The stop callback is triggered when all uploads have - // been completed, equivalent to the global ajaxStop event: - that._trigger('stop'); - } - }); - return jqXHR; - }; - this._beforeSend(e, options); - if (this.options.sequentialUploads || - (this.options.limitConcurrentUploads && - this.options.limitConcurrentUploads <= this._sending)) { - if (this.options.limitConcurrentUploads > 1) { - slot = $.Deferred(); - this._slots.push(slot); - pipe = slot.pipe(send); - } else { - this._sequence = this._sequence.pipe(send, send); - pipe = this._sequence; - } - // Return the piped Promise object, enhanced with an abort method, - // which is delegated to the jqXHR object of the current upload, - // and jqXHR callbacks mapped to the equivalent Promise methods: - pipe.abort = function () { - aborted = [undefined, 'abort', 'abort']; - if (!jqXHR) { - if (slot) { - slot.rejectWith(options.context, aborted); - } - return send(); - } - return jqXHR.abort(); - }; - return this._enhancePromise(pipe); - } - return send(); - }, - - _onAdd: function (e, data) { - var that = this, - result = true, - options = $.extend({}, this.options, data), - limit = options.limitMultiFileUploads, - paramName = this._getParamName(options), - paramNameSet, - paramNameSlice, - fileSet, - i; - if (!(options.singleFileUploads || limit) || - !this._isXHRUpload(options)) { - fileSet = [data.files]; - paramNameSet = [paramName]; - } else if (!options.singleFileUploads && limit) { - fileSet = []; - paramNameSet = []; - for (i = 0; i < data.files.length; i += limit) { - fileSet.push(data.files.slice(i, i + limit)); - paramNameSlice = paramName.slice(i, i + limit); - if (!paramNameSlice.length) { - paramNameSlice = paramName; - } - paramNameSet.push(paramNameSlice); - } - } else { - paramNameSet = paramName; - } - data.originalFiles = data.files; - $.each(fileSet || data.files, function (index, element) { - var newData = $.extend({}, data); - newData.files = fileSet ? element : [element]; - newData.paramName = paramNameSet[index]; - that._initResponseObject(newData); - that._initProgressObject(newData); - that._addConvenienceMethods(e, newData); - result = that._trigger('add', e, newData); - return result; - }); - return result; - }, - - _replaceFileInput: function (input) { - var inputClone = input.clone(true); - $('
').append(inputClone)[0].reset(); - // Detaching allows to insert the fileInput on another form - // without loosing the file input value: - input.after(inputClone).detach(); - // Avoid memory leaks with the detached file input: - $.cleanData(input.unbind('remove')); - // Replace the original file input element in the fileInput - // elements set with the clone, which has been copied including - // event handlers: - this.options.fileInput = this.options.fileInput.map(function (i, el) { - if (el === input[0]) { - return inputClone[0]; - } - return el; - }); - // If the widget has been initialized on the file input itself, - // override this.element with the file input clone: - if (input[0] === this.element[0]) { - this.element = inputClone; - } - }, - - _handleFileTreeEntry: function (entry, path) { - var that = this, - dfd = $.Deferred(), - errorHandler = function (e) { - if (e && !e.entry) { - e.entry = entry; - } - // Since $.when returns immediately if one - // Deferred is rejected, we use resolve instead. - // This allows valid files and invalid items - // to be returned together in one set: - dfd.resolve([e]); - }, - dirReader; - path = path || ''; - if (entry.isFile) { - if (entry._file) { - // Workaround for Chrome bug #149735 - entry._file.relativePath = path; - dfd.resolve(entry._file); - } else { - entry.file(function (file) { - file.relativePath = path; - dfd.resolve(file); - }, errorHandler); - } - } else if (entry.isDirectory) { - dirReader = entry.createReader(); - dirReader.readEntries(function (entries) { - that._handleFileTreeEntries( - entries, - path + entry.name + '/' - ).done(function (files) { - dfd.resolve(files); - }).fail(errorHandler); - }, errorHandler); - } else { - // Return an empy list for file system items - // other than files or directories: - dfd.resolve([]); - } - return dfd.promise(); - }, - - _handleFileTreeEntries: function (entries, path) { - var that = this; - return $.when.apply( - $, - $.map(entries, function (entry) { - return that._handleFileTreeEntry(entry, path); - }) - ).pipe(function () { - return Array.prototype.concat.apply( - [], - arguments - ); - }); - }, - - _getDroppedFiles: function (dataTransfer) { - dataTransfer = dataTransfer || {}; - var items = dataTransfer.items; - if (items && items.length && (items[0].webkitGetAsEntry || - items[0].getAsEntry)) { - return this._handleFileTreeEntries( - $.map(items, function (item) { - var entry; - if (item.webkitGetAsEntry) { - entry = item.webkitGetAsEntry(); - if (entry) { - // Workaround for Chrome bug #149735: - entry._file = item.getAsFile(); - } - return entry; - } - return item.getAsEntry(); - }) - ); - } - return $.Deferred().resolve( - $.makeArray(dataTransfer.files) - ).promise(); - }, - - _getSingleFileInputFiles: function (fileInput) { - fileInput = $(fileInput); - var entries = fileInput.prop('webkitEntries') || - fileInput.prop('entries'), - files, - value; - if (entries && entries.length) { - return this._handleFileTreeEntries(entries); - } - files = $.makeArray(fileInput.prop('files')); - if (!files.length) { - value = fileInput.prop('value'); - if (!value) { - return $.Deferred().resolve([]).promise(); - } - // If the files property is not available, the browser does not - // support the File API and we add a pseudo File object with - // the input value as name with path information removed: - files = [{name: value.replace(/^.*\\/, '')}]; - } else if (files[0].name === undefined && files[0].fileName) { - // File normalization for Safari 4 and Firefox 3: - $.each(files, function (index, file) { - file.name = file.fileName; - file.size = file.fileSize; - }); - } - return $.Deferred().resolve(files).promise(); - }, - - _getFileInputFiles: function (fileInput) { - if (!(fileInput instanceof $) || fileInput.length === 1) { - return this._getSingleFileInputFiles(fileInput); - } - return $.when.apply( - $, - $.map(fileInput, this._getSingleFileInputFiles) - ).pipe(function () { - return Array.prototype.concat.apply( - [], - arguments - ); - }); - }, - - _onChange: function (e) { - var that = this, - data = { - fileInput: $(e.target), - form: $(e.target.form) - }; - this._getFileInputFiles(data.fileInput).always(function (files) { - data.files = files; - if (that.options.replaceFileInput) { - that._replaceFileInput(data.fileInput); - } - if (that._trigger('change', e, data) !== false) { - that._onAdd(e, data); - } - }); - }, - - _onPaste: function (e) { - var items = e.originalEvent && e.originalEvent.clipboardData && - e.originalEvent.clipboardData.items, - data = {files: []}; - if (items && items.length) { - $.each(items, function (index, item) { - var file = item.getAsFile && item.getAsFile(); - if (file) { - data.files.push(file); - } - }); - if (this._trigger('paste', e, data) === false || - this._onAdd(e, data) === false) { - return false; - } - } - }, - - _onDrop: function (e) { - e.dataTransfer = e.originalEvent && e.originalEvent.dataTransfer; - var that = this, - dataTransfer = e.dataTransfer, - data = {}; - if (dataTransfer && dataTransfer.files && dataTransfer.files.length) { - e.preventDefault(); - this._getDroppedFiles(dataTransfer).always(function (files) { - data.files = files; - if (that._trigger('drop', e, data) !== false) { - that._onAdd(e, data); - } - }); - } - }, - - _onDragOver: function (e) { - e.dataTransfer = e.originalEvent && e.originalEvent.dataTransfer; - var dataTransfer = e.dataTransfer; - if (dataTransfer) { - if (this._trigger('dragover', e) === false) { - return false; - } - if ($.inArray('Files', dataTransfer.types) !== -1) { - dataTransfer.dropEffect = 'copy'; - e.preventDefault(); - } - } - }, - - _initEventHandlers: function () { - if (this._isXHRUpload(this.options)) { - this._on(this.options.dropZone, { - dragover: this._onDragOver, - drop: this._onDrop - }); - this._on(this.options.pasteZone, { - paste: this._onPaste - }); - } - if ($.support.fileInput) { - this._on(this.options.fileInput, { - change: this._onChange - }); - } - }, - - _destroyEventHandlers: function () { - this._off(this.options.dropZone, 'dragover drop'); - this._off(this.options.pasteZone, 'paste'); - this._off(this.options.fileInput, 'change'); - }, - - _setOption: function (key, value) { - var reinit = $.inArray(key, this._specialOptions) !== -1; - if (reinit) { - this._destroyEventHandlers(); - } - this._super(key, value); - if (reinit) { - this._initSpecialOptions(); - this._initEventHandlers(); - } - }, - - _initSpecialOptions: function () { - var options = this.options; - if (options.fileInput === undefined) { - options.fileInput = this.element.is('input[type="file"]') ? - this.element : this.element.find('input[type="file"]'); - } else if (!(options.fileInput instanceof $)) { - options.fileInput = $(options.fileInput); - } - if (!(options.dropZone instanceof $)) { - options.dropZone = $(options.dropZone); - } - if (!(options.pasteZone instanceof $)) { - options.pasteZone = $(options.pasteZone); - } - }, - - _getRegExp: function (str) { - var parts = str.split('/'), - modifiers = parts.pop(); - parts.shift(); - return new RegExp(parts.join('/'), modifiers); - }, - - _isRegExpOption: function (key, value) { - return key !== 'url' && $.type(value) === 'string' && - /^\/.*\/[igm]{0,3}$/.test(value); - }, - - _initDataAttributes: function () { - var that = this, - options = this.options; - // Initialize options set via HTML5 data-attributes: - $.each( - $(this.element[0].cloneNode(false)).data(), - function (key, value) { - if (that._isRegExpOption(key, value)) { - value = that._getRegExp(value); - } - options[key] = value; - } - ); - }, - - _create: function () { - this._initDataAttributes(); - this._initSpecialOptions(); - this._slots = []; - this._sequence = this._getXHRPromise(true); - this._sending = this._active = 0; - this._initProgressObject(this); - this._initEventHandlers(); - }, - - // This method is exposed to the widget API and allows to query - // the number of active uploads: - active: function () { - return this._active; - }, - - // This method is exposed to the widget API and allows to query - // the widget upload progress. - // It returns an object with loaded, total and bitrate properties - // for the running uploads: - progress: function () { - return this._progress; - }, - - // This method is exposed to the widget API and allows adding files - // using the fileupload API. The data parameter accepts an object which - // must have a files property and can contain additional options: - // .fileupload('add', {files: filesList}); - add: function (data) { - var that = this; - if (!data || this.options.disabled) { - return; - } - if (data.fileInput && !data.files) { - this._getFileInputFiles(data.fileInput).always(function (files) { - data.files = files; - that._onAdd(null, data); - }); - } else { - data.files = $.makeArray(data.files); - this._onAdd(null, data); - } - }, - - // This method is exposed to the widget API and allows sending files - // using the fileupload API. The data parameter accepts an object which - // must have a files or fileInput property and can contain additional options: - // .fileupload('send', {files: filesList}); - // The method returns a Promise object for the file upload call. - send: function (data) { - if (data && !this.options.disabled) { - if (data.fileInput && !data.files) { - var that = this, - dfd = $.Deferred(), - promise = dfd.promise(), - jqXHR, - aborted; - promise.abort = function () { - aborted = true; - if (jqXHR) { - return jqXHR.abort(); - } - dfd.reject(null, 'abort', 'abort'); - return promise; - }; - this._getFileInputFiles(data.fileInput).always( - function (files) { - if (aborted) { - return; - } - if (!files.length) { - dfd.reject(); - return; - } - data.files = files; - jqXHR = that._onSend(null, data).then( - function (result, textStatus, jqXHR) { - dfd.resolve(result, textStatus, jqXHR); - }, - function (jqXHR, textStatus, errorThrown) { - dfd.reject(jqXHR, textStatus, errorThrown); - } - ); - } - ); - return this._enhancePromise(promise); - } - data.files = $.makeArray(data.files); - if (data.files.length) { - return this._onSend(null, data); - } - } - return this._getXHRPromise(false, data && data.context); - } - - }); - -})); diff --git a/static/file_upload/js/jquery.iframe-transport.js b/static/file_upload/js/jquery.iframe-transport.js deleted file mode 100644 index 073c5fbe..00000000 --- a/static/file_upload/js/jquery.iframe-transport.js +++ /dev/null @@ -1,205 +0,0 @@ -/* - * jQuery Iframe Transport Plugin 1.7 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2011, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint unparam: true, nomen: true */ -/*global define, window, document */ - -(function (factory) { - 'use strict'; - if (typeof define === 'function' && define.amd) { - // Register as an anonymous AMD module: - define(['jquery'], factory); - } else { - // Browser globals: - factory(window.jQuery); - } -}(function ($) { - 'use strict'; - - // Helper variable to create unique names for the transport iframes: - var counter = 0; - - // The iframe transport accepts three additional options: - // options.fileInput: a jQuery collection of file input fields - // options.paramName: the parameter name for the file form data, - // overrides the name property of the file input field(s), - // can be a string or an array of strings. - // options.formData: an array of objects with name and value properties, - // equivalent to the return data of .serializeArray(), e.g.: - // [{name: 'a', value: 1}, {name: 'b', value: 2}] - $.ajaxTransport('iframe', function (options) { - if (options.async) { - var form, - iframe, - addParamChar; - return { - send: function (_, completeCallback) { - form = $('
'); - form.attr('accept-charset', options.formAcceptCharset); - addParamChar = /\?/.test(options.url) ? '&' : '?'; - // XDomainRequest only supports GET and POST: - if (options.type === 'DELETE') { - options.url = options.url + addParamChar + '_method=DELETE'; - options.type = 'POST'; - } else if (options.type === 'PUT') { - options.url = options.url + addParamChar + '_method=PUT'; - options.type = 'POST'; - } else if (options.type === 'PATCH') { - options.url = options.url + addParamChar + '_method=PATCH'; - options.type = 'POST'; - } - // javascript:false as initial iframe src - // prevents warning popups on HTTPS in IE6. - // IE versions below IE8 cannot set the name property of - // elements that have already been added to the DOM, - // so we set the name along with the iframe HTML markup: - counter += 1; - iframe = $( - '' - ).bind('load', function () { - var fileInputClones, - paramNames = $.isArray(options.paramName) ? - options.paramName : [options.paramName]; - iframe - .unbind('load') - .bind('load', function () { - var response; - // Wrap in a try/catch block to catch exceptions thrown - // when trying to access cross-domain iframe contents: - try { - response = iframe.contents(); - // Google Chrome and Firefox do not throw an - // exception when calling iframe.contents() on - // cross-domain requests, so we unify the response: - if (!response.length || !response[0].firstChild) { - throw new Error(); - } - } catch (e) { - response = undefined; - } - // The complete callback returns the - // iframe content document as response object: - completeCallback( - 200, - 'success', - {'iframe': response} - ); - // Fix for IE endless progress bar activity bug - // (happens on form submits to iframe targets): - $('') - .appendTo(form); - window.setTimeout(function () { - // Removing the form in a setTimeout call - // allows Chrome's developer tools to display - // the response result - form.remove(); - }, 0); - }); - form - .prop('target', iframe.prop('name')) - .prop('action', options.url) - .prop('method', options.type); - if (options.formData) { - $.each(options.formData, function (index, field) { - $('') - .prop('name', field.name) - .val(field.value) - .appendTo(form); - }); - } - if (options.fileInput && options.fileInput.length && - options.type === 'POST') { - fileInputClones = options.fileInput.clone(); - // Insert a clone for each file input field: - options.fileInput.after(function (index) { - return fileInputClones[index]; - }); - if (options.paramName) { - options.fileInput.each(function (index) { - $(this).prop( - 'name', - paramNames[index] || options.paramName - ); - }); - } - // Appending the file input fields to the hidden form - // removes them from their original location: - form - .append(options.fileInput) - .prop('enctype', 'multipart/form-data') - // enctype must be set as encoding for IE: - .prop('encoding', 'multipart/form-data'); - } - form.submit(); - // Insert the file input fields at their original location - // by replacing the clones with the originals: - if (fileInputClones && fileInputClones.length) { - options.fileInput.each(function (index, input) { - var clone = $(fileInputClones[index]); - $(input).prop('name', clone.prop('name')); - clone.replaceWith(input); - }); - } - }); - form.append(iframe).appendTo(document.body); - }, - abort: function () { - if (iframe) { - // javascript:false as iframe src aborts the request - // and prevents warning popups on HTTPS in IE6. - // concat is used to avoid the "Script URL" JSLint error: - iframe - .unbind('load') - .prop('src', 'javascript'.concat(':false;')); - } - if (form) { - form.remove(); - } - } - }; - } - }); - - // The iframe transport returns the iframe content document as response. - // The following adds converters from iframe to text, json, html, xml - // and script. - // Please note that the Content-Type for JSON responses has to be text/plain - // or text/html, if the browser doesn't include application/json in the - // Accept header, else IE will show a download dialog. - // The Content-Type for XML responses on the other hand has to be always - // application/xml or text/xml, so IE properly parses the XML response. - // See also - // https://github.com/blueimp/jQuery-File-Upload/wiki/Setup#content-type-negotiation - $.ajaxSetup({ - converters: { - 'iframe text': function (iframe) { - return iframe && $(iframe[0].body).text(); - }, - 'iframe json': function (iframe) { - return iframe && $.parseJSON($(iframe[0].body).text()); - }, - 'iframe html': function (iframe) { - return iframe && $(iframe[0].body).html(); - }, - 'iframe xml': function (iframe) { - var xmlDoc = iframe && iframe[0]; - return xmlDoc && $.isXMLDoc(xmlDoc) ? xmlDoc : - $.parseXML((xmlDoc.XMLDocument && xmlDoc.XMLDocument.xml) || - $(xmlDoc.body).html()); - }, - 'iframe script': function (iframe) { - return iframe && $.globalEval($(iframe[0].body).text()); - } - } - }); - -})); diff --git a/static/file_upload/js/jquery.ui.widget.js b/static/file_upload/js/jquery.ui.widget.js deleted file mode 100644 index 9da8673a..00000000 --- a/static/file_upload/js/jquery.ui.widget.js +++ /dev/null @@ -1,282 +0,0 @@ -/* - * jQuery UI Widget 1.8.18+amd - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) - * Dual licensed under the MIT or GPL Version 2 licenses. - * http://jquery.org/license - * - * http://docs.jquery.com/UI/Widget - */ - -(function (factory) { - if (typeof define === "function" && define.amd) { - // Register as an anonymous AMD module: - define(["jquery"], factory); - } else { - // Browser globals: - factory(jQuery); - } -}(function( $, undefined ) { - -// jQuery 1.4+ -if ( $.cleanData ) { - var _cleanData = $.cleanData; - $.cleanData = function( elems ) { - for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { - try { - $( elem ).triggerHandler( "remove" ); - // http://bugs.jquery.com/ticket/8235 - } catch( e ) {} - } - _cleanData( elems ); - }; -} else { - var _remove = $.fn.remove; - $.fn.remove = function( selector, keepData ) { - return this.each(function() { - if ( !keepData ) { - if ( !selector || $.filter( selector, [ this ] ).length ) { - $( "*", this ).add( [ this ] ).each(function() { - try { - $( this ).triggerHandler( "remove" ); - // http://bugs.jquery.com/ticket/8235 - } catch( e ) {} - }); - } - } - return _remove.call( $(this), selector, keepData ); - }); - }; -} - -$.widget = function( name, base, prototype ) { - var namespace = name.split( "." )[ 0 ], - fullName; - name = name.split( "." )[ 1 ]; - fullName = namespace + "-" + name; - - if ( !prototype ) { - prototype = base; - base = $.Widget; - } - - // create selector for plugin - $.expr[ ":" ][ fullName ] = function( elem ) { - return !!$.data( elem, name ); - }; - - $[ namespace ] = $[ namespace ] || {}; - $[ namespace ][ name ] = function( options, element ) { - // allow instantiation without initializing for simple inheritance - if ( arguments.length ) { - this._createWidget( options, element ); - } - }; - - var basePrototype = new base(); - // we need to make the options hash a property directly on the new instance - // otherwise we'll modify the options hash on the prototype that we're - // inheriting from -// $.each( basePrototype, function( key, val ) { -// if ( $.isPlainObject(val) ) { -// basePrototype[ key ] = $.extend( {}, val ); -// } -// }); - basePrototype.options = $.extend( true, {}, basePrototype.options ); - $[ namespace ][ name ].prototype = $.extend( true, basePrototype, { - namespace: namespace, - widgetName: name, - widgetEventPrefix: $[ namespace ][ name ].prototype.widgetEventPrefix || name, - widgetBaseClass: fullName - }, prototype ); - - $.widget.bridge( name, $[ namespace ][ name ] ); -}; - -$.widget.bridge = function( name, object ) { - $.fn[ name ] = function( options ) { - var isMethodCall = typeof options === "string", - args = Array.prototype.slice.call( arguments, 1 ), - returnValue = this; - - // allow multiple hashes to be passed on init - options = !isMethodCall && args.length ? - $.extend.apply( null, [ true, options ].concat(args) ) : - options; - - // prevent calls to internal methods - if ( isMethodCall && options.charAt( 0 ) === "_" ) { - return returnValue; - } - - if ( isMethodCall ) { - this.each(function() { - var instance = $.data( this, name ), - methodValue = instance && $.isFunction( instance[options] ) ? - instance[ options ].apply( instance, args ) : - instance; - // TODO: add this back in 1.9 and use $.error() (see #5972) -// if ( !instance ) { -// throw "cannot call methods on " + name + " prior to initialization; " + -// "attempted to call method '" + options + "'"; -// } -// if ( !$.isFunction( instance[options] ) ) { -// throw "no such method '" + options + "' for " + name + " widget instance"; -// } -// var methodValue = instance[ options ].apply( instance, args ); - if ( methodValue !== instance && methodValue !== undefined ) { - returnValue = methodValue; - return false; - } - }); - } else { - this.each(function() { - var instance = $.data( this, name ); - if ( instance ) { - instance.option( options || {} )._init(); - } else { - $.data( this, name, new object( options, this ) ); - } - }); - } - - return returnValue; - }; -}; - -$.Widget = function( options, element ) { - // allow instantiation without initializing for simple inheritance - if ( arguments.length ) { - this._createWidget( options, element ); - } -}; - -$.Widget.prototype = { - widgetName: "widget", - widgetEventPrefix: "", - options: { - disabled: false - }, - _createWidget: function( options, element ) { - // $.widget.bridge stores the plugin instance, but we do it anyway - // so that it's stored even before the _create function runs - $.data( element, this.widgetName, this ); - this.element = $( element ); - this.options = $.extend( true, {}, - this.options, - this._getCreateOptions(), - options ); - - var self = this; - this.element.bind( "remove." + this.widgetName, function() { - self.destroy(); - }); - - this._create(); - this._trigger( "create" ); - this._init(); - }, - _getCreateOptions: function() { - return $.metadata && $.metadata.get( this.element[0] )[ this.widgetName ]; - }, - _create: function() {}, - _init: function() {}, - - destroy: function() { - this.element - .unbind( "." + this.widgetName ) - .removeData( this.widgetName ); - this.widget() - .unbind( "." + this.widgetName ) - .removeAttr( "aria-disabled" ) - .removeClass( - this.widgetBaseClass + "-disabled " + - "ui-state-disabled" ); - }, - - widget: function() { - return this.element; - }, - - option: function( key, value ) { - var options = key; - - if ( arguments.length === 0 ) { - // don't return a reference to the internal hash - return $.extend( {}, this.options ); - } - - if (typeof key === "string" ) { - if ( value === undefined ) { - return this.options[ key ]; - } - options = {}; - options[ key ] = value; - } - - this._setOptions( options ); - - return this; - }, - _setOptions: function( options ) { - var self = this; - $.each( options, function( key, value ) { - self._setOption( key, value ); - }); - - return this; - }, - _setOption: function( key, value ) { - this.options[ key ] = value; - - if ( key === "disabled" ) { - this.widget() - [ value ? "addClass" : "removeClass"]( - this.widgetBaseClass + "-disabled" + " " + - "ui-state-disabled" ) - .attr( "aria-disabled", value ); - } - - return this; - }, - - enable: function() { - return this._setOption( "disabled", false ); - }, - disable: function() { - return this._setOption( "disabled", true ); - }, - - _trigger: function( type, event, data ) { - var prop, orig, - callback = this.options[ type ]; - - data = data || {}; - event = $.Event( event ); - event.type = ( type === this.widgetEventPrefix ? - type : - this.widgetEventPrefix + type ).toLowerCase(); - // the original event may come from any element - // so we need to reset the target on the new event - event.target = this.element[ 0 ]; - - // copy original event properties over to the new event - orig = event.originalEvent; - if ( orig ) { - for ( prop in orig ) { - if ( !( prop in event ) ) { - event[ prop ] = orig[ prop ]; - } - } - } - - this.element.trigger( event, data ); - - return !( $.isFunction(callback) && - callback.call( this.element[0], event, data ) === false || - event.isDefaultPrevented() ); - } -}; - -})); diff --git a/static/file_upload/js/load-image.min.js b/static/file_upload/js/load-image.min.js deleted file mode 100644 index 8f04e851..00000000 --- a/static/file_upload/js/load-image.min.js +++ /dev/null @@ -1 +0,0 @@ -(function(e){"use strict";var t=function(e,i,a){var n,r,o=document.createElement("img");if(o.onerror=i,o.onload=function(){!r||a&&a.noRevoke||t.revokeObjectURL(r),i&&i(t.scale(o,a))},t.isInstanceOf("Blob",e)||t.isInstanceOf("File",e))n=r=t.createObjectURL(e),o._type=e.type;else{if("string"!=typeof e)return!1;n=e,a&&a.crossOrigin&&(o.crossOrigin=a.crossOrigin)}return n?(o.src=n,o):t.readFile(e,function(e){var t=e.target;t&&t.result?o.src=t.result:i&&i(e)})},i=window.createObjectURL&&window||window.URL&&URL.revokeObjectURL&&URL||window.webkitURL&&webkitURL;t.isInstanceOf=function(e,t){return Object.prototype.toString.call(t)==="[object "+e+"]"},t.transformCoordinates=function(){},t.getTransformedOptions=function(e){return e},t.renderImageToCanvas=function(e,t,i,a,n,r,o,s,d,l){return e.getContext("2d").drawImage(t,i,a,n,r,o,s,d,l),e},t.hasCanvasOption=function(e){return e.canvas||e.crop},t.scale=function(e,i){i=i||{};var a,n,r,o,s,d,l,c,u,g=document.createElement("canvas"),f=e.getContext||t.hasCanvasOption(i)&&g.getContext,h=e.naturalWidth||e.width,m=e.naturalHeight||e.height,p=h,S=m,b=function(){var e=Math.max((r||p)/p,(o||S)/S);e>1&&(p=Math.ceil(p*e),S=Math.ceil(S*e))},v=function(){var e=Math.min((a||p)/p,(n||S)/S);1>e&&(p=Math.ceil(p*e),S=Math.ceil(S*e))};return f&&(i=t.getTransformedOptions(i),l=i.left||0,c=i.top||0,i.sourceWidth?(s=i.sourceWidth,void 0!==i.right&&void 0===i.left&&(l=h-s-i.right)):s=h-l-(i.right||0),i.sourceHeight?(d=i.sourceHeight,void 0!==i.bottom&&void 0===i.top&&(c=m-d-i.bottom)):d=m-c-(i.bottom||0),p=s,S=d),a=i.maxWidth,n=i.maxHeight,r=i.minWidth,o=i.minHeight,f&&a&&n&&i.crop?(p=a,S=n,u=s/d-a/n,0>u?(d=n*s/a,void 0===i.top&&void 0===i.bottom&&(c=(m-d)/2)):u>0&&(s=a*d/n,void 0===i.left&&void 0===i.right&&(l=(h-s)/2))):((i.contain||i.cover)&&(r=a=a||r,o=n=n||o),i.cover?(v(),b()):(b(),v())),f?(g.width=p,g.height=S,t.transformCoordinates(g,i),t.renderImageToCanvas(g,e,l,c,s,d,0,0,p,S)):(e.width=p,e.height=S,e)},t.createObjectURL=function(e){return i?i.createObjectURL(e):!1},t.revokeObjectURL=function(e){return i?i.revokeObjectURL(e):!1},t.readFile=function(e,t,i){if(window.FileReader){var a=new FileReader;if(a.onload=a.onerror=t,i=i||"readAsDataURL",a[i])return a[i](e),a}return!1},"function"==typeof define&&define.amd?define(function(){return t}):e.loadImage=t})(this),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image"],e):e(window.loadImage)}(function(e){"use strict";if(window.navigator&&window.navigator.platform&&/iP(hone|od|ad)/.test(window.navigator.platform)){var t=e.renderImageToCanvas;e.detectSubsampling=function(e){var t,i;return e.width*e.height>1048576?(t=document.createElement("canvas"),t.width=t.height=1,i=t.getContext("2d"),i.drawImage(e,-e.width+1,0),0===i.getImageData(0,0,1,1).data[3]):!1},e.detectVerticalSquash=function(e,t){var i,a,n,r,o,s=e.naturalHeight||e.height,d=document.createElement("canvas"),l=d.getContext("2d");for(t&&(s/=2),d.width=1,d.height=s,l.drawImage(e,0,0),i=l.getImageData(0,0,1,s).data,a=0,n=s,r=s;r>a;)o=i[4*(r-1)+3],0===o?n=r:a=r,r=n+a>>1;return r/s||1},e.renderImageToCanvas=function(i,a,n,r,o,s,d,l,c,u){if("image/jpeg"===a._type){var g,f,h,m,p=i.getContext("2d"),S=document.createElement("canvas"),b=1024,v=S.getContext("2d");if(S.width=b,S.height=b,p.save(),g=e.detectSubsampling(a),g&&(n/=2,r/=2,o/=2,s/=2),f=e.detectVerticalSquash(a,g),g||1!==f){for(r*=f,c=Math.ceil(b*c/o),u=Math.ceil(b*u/s/f),l=0,m=0;s>m;){for(d=0,h=0;o>h;)v.clearRect(0,0,b,b),v.drawImage(a,n,r,o,s,-h,-m,o,s),p.drawImage(S,0,0,b,b,d,l,c,u),h+=b,d+=c;m+=b,l+=u}return p.restore(),i}}return t(i,a,n,r,o,s,d,l,c,u)}}}),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image"],e):e(window.loadImage)}(function(e){"use strict";var t=e.hasCanvasOption;e.hasCanvasOption=function(e){return t(e)||e.orientation},e.transformCoordinates=function(e,t){var i=e.getContext("2d"),a=e.width,n=e.height,r=t.orientation;if(r)switch(r>4&&(e.width=n,e.height=a),r){case 2:i.translate(a,0),i.scale(-1,1);break;case 3:i.translate(a,n),i.rotate(Math.PI);break;case 4:i.translate(0,n),i.scale(1,-1);break;case 5:i.rotate(.5*Math.PI),i.scale(1,-1);break;case 6:i.rotate(.5*Math.PI),i.translate(0,-n);break;case 7:i.rotate(.5*Math.PI),i.translate(a,-n),i.scale(-1,1);break;case 8:i.rotate(-.5*Math.PI),i.translate(-a,0)}},e.getTransformedOptions=function(e){if(!e.orientation||1===e.orientation)return e;var t,i={};for(t in e)e.hasOwnProperty(t)&&(i[t]=e[t]);switch(e.orientation){case 2:i.left=e.right,i.right=e.left;break;case 3:i.left=e.right,i.top=e.bottom,i.right=e.left,i.bottom=e.top;break;case 4:i.top=e.bottom,i.bottom=e.top;break;case 5:i.left=e.top,i.top=e.left,i.right=e.bottom,i.bottom=e.right;break;case 6:i.left=e.top,i.top=e.right,i.right=e.bottom,i.bottom=e.left;break;case 7:i.left=e.bottom,i.top=e.right,i.right=e.top,i.bottom=e.left;break;case 8:i.left=e.bottom,i.top=e.left,i.right=e.top,i.bottom=e.right}return e.orientation>4&&(i.maxWidth=e.maxHeight,i.maxHeight=e.maxWidth,i.minWidth=e.minHeight,i.minHeight=e.minWidth,i.sourceWidth=e.sourceHeight,i.sourceHeight=e.sourceWidth),i}}),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image"],e):e(window.loadImage)}(function(e){"use strict";var t=window.Blob&&(Blob.prototype.slice||Blob.prototype.webkitSlice||Blob.prototype.mozSlice);e.blobSlice=t&&function(){var e=this.slice||this.webkitSlice||this.mozSlice;return e.apply(this,arguments)},e.metaDataParsers={jpeg:{65505:[]}},e.parseMetaData=function(t,i,a){a=a||{};var n=this,r=a.maxMetaDataSize||262144,o={},s=!(window.DataView&&t&&t.size>=12&&"image/jpeg"===t.type&&e.blobSlice);(s||!e.readFile(e.blobSlice.call(t,0,r),function(t){var r,s,d,l,c=t.target.result,u=new DataView(c),g=2,f=u.byteLength-4,h=g;if(65496===u.getUint16(0)){for(;f>g&&(r=u.getUint16(g),r>=65504&&65519>=r||65534===r);){if(s=u.getUint16(g+2)+2,g+s>u.byteLength){console.log("Invalid meta data: Invalid segment size.");break}if(d=e.metaDataParsers.jpeg[r])for(l=0;d.length>l;l+=1)d[l].call(n,u,g,s,o,a);g+=s,h=g}!a.disableImageHead&&h>6&&(o.imageHead=c.slice?c.slice(0,h):new Uint8Array(c).subarray(0,h))}else console.log("Invalid JPEG file: Missing JPEG marker.");i(o)},"readAsArrayBuffer"))&&i(o)}}),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image","load-image-meta"],e):e(window.loadImage)}(function(e){"use strict";e.ExifMap=function(){return this},e.ExifMap.prototype.map={Orientation:274},e.ExifMap.prototype.get=function(e){return this[e]||this[this.map[e]]},e.getExifThumbnail=function(e,t,i){var a,n,r;if(!i||t+i>e.byteLength)return console.log("Invalid Exif data: Invalid thumbnail data."),void 0;for(a=[],n=0;i>n;n+=1)r=e.getUint8(t+n),a.push((16>r?"0":"")+r.toString(16));return"data:image/jpeg,%"+a.join("%")},e.exifTagTypes={1:{getValue:function(e,t){return e.getUint8(t)},size:1},2:{getValue:function(e,t){return String.fromCharCode(e.getUint8(t))},size:1,ascii:!0},3:{getValue:function(e,t,i){return e.getUint16(t,i)},size:2},4:{getValue:function(e,t,i){return e.getUint32(t,i)},size:4},5:{getValue:function(e,t,i){return e.getUint32(t,i)/e.getUint32(t+4,i)},size:8},9:{getValue:function(e,t,i){return e.getInt32(t,i)},size:4},10:{getValue:function(e,t,i){return e.getInt32(t,i)/e.getInt32(t+4,i)},size:8}},e.exifTagTypes[7]=e.exifTagTypes[1],e.getExifValue=function(t,i,a,n,r,o){var s,d,l,c,u,g,f=e.exifTagTypes[n];if(!f)return console.log("Invalid Exif data: Invalid tag type."),void 0;if(s=f.size*r,d=s>4?i+t.getUint32(a+8,o):a+8,d+s>t.byteLength)return console.log("Invalid Exif data: Invalid data offset."),void 0;if(1===r)return f.getValue(t,d,o);for(l=[],c=0;r>c;c+=1)l[c]=f.getValue(t,d+c*f.size,o);if(f.ascii){for(u="",c=0;l.length>c&&(g=l[c],"\0"!==g);c+=1)u+=g;return u}return l},e.parseExifTag=function(t,i,a,n,r){var o=t.getUint16(a,n);r.exif[o]=e.getExifValue(t,i,a,t.getUint16(a+2,n),t.getUint32(a+4,n),n)},e.parseExifTags=function(e,t,i,a,n){var r,o,s;if(i+6>e.byteLength)return console.log("Invalid Exif data: Invalid directory offset."),void 0;if(r=e.getUint16(i,a),o=i+2+12*r,o+4>e.byteLength)return console.log("Invalid Exif data: Invalid directory size."),void 0;for(s=0;r>s;s+=1)this.parseExifTag(e,t,i+2+12*s,a,n);return e.getUint32(o,a)},e.parseExifData=function(t,i,a,n,r){if(!r.disableExif){var o,s,d,l=i+10;if(1165519206===t.getUint32(i+4)){if(l+8>t.byteLength)return console.log("Invalid Exif data: Invalid segment size."),void 0;if(0!==t.getUint16(i+8))return console.log("Invalid Exif data: Missing byte alignment offset."),void 0;switch(t.getUint16(l)){case 18761:o=!0;break;case 19789:o=!1;break;default:return console.log("Invalid Exif data: Invalid byte alignment marker."),void 0}if(42!==t.getUint16(l+2,o))return console.log("Invalid Exif data: Missing TIFF marker."),void 0;s=t.getUint32(l+4,o),n.exif=new e.ExifMap,s=e.parseExifTags(t,l,l+s,o,n),s&&!r.disableExifThumbnail&&(d={exif:{}},s=e.parseExifTags(t,l,l+s,o,d),d.exif[513]&&(n.exif.Thumbnail=e.getExifThumbnail(t,l+d.exif[513],d.exif[514]))),n.exif[34665]&&!r.disableExifSub&&e.parseExifTags(t,l,l+n.exif[34665],o,n),n.exif[34853]&&!r.disableExifGps&&e.parseExifTags(t,l,l+n.exif[34853],o,n)}}},e.metaDataParsers.jpeg[65505].push(e.parseExifData)}),function(e){"use strict";"function"==typeof define&&define.amd?define(["load-image","load-image-exif"],e):e(window.loadImage)}(function(e){"use strict";var t,i,a;e.ExifMap.prototype.tags={256:"ImageWidth",257:"ImageHeight",34665:"ExifIFDPointer",34853:"GPSInfoIFDPointer",40965:"InteroperabilityIFDPointer",258:"BitsPerSample",259:"Compression",262:"PhotometricInterpretation",274:"Orientation",277:"SamplesPerPixel",284:"PlanarConfiguration",530:"YCbCrSubSampling",531:"YCbCrPositioning",282:"XResolution",283:"YResolution",296:"ResolutionUnit",273:"StripOffsets",278:"RowsPerStrip",279:"StripByteCounts",513:"JPEGInterchangeFormat",514:"JPEGInterchangeFormatLength",301:"TransferFunction",318:"WhitePoint",319:"PrimaryChromaticities",529:"YCbCrCoefficients",532:"ReferenceBlackWhite",306:"DateTime",270:"ImageDescription",271:"Make",272:"Model",305:"Software",315:"Artist",33432:"Copyright",36864:"ExifVersion",40960:"FlashpixVersion",40961:"ColorSpace",40962:"PixelXDimension",40963:"PixelYDimension",42240:"Gamma",37121:"ComponentsConfiguration",37122:"CompressedBitsPerPixel",37500:"MakerNote",37510:"UserComment",40964:"RelatedSoundFile",36867:"DateTimeOriginal",36868:"DateTimeDigitized",37520:"SubSecTime",37521:"SubSecTimeOriginal",37522:"SubSecTimeDigitized",33434:"ExposureTime",33437:"FNumber",34850:"ExposureProgram",34852:"SpectralSensitivity",34855:"PhotographicSensitivity",34856:"OECF",34864:"SensitivityType",34865:"StandardOutputSensitivity",34866:"RecommendedExposureIndex",34867:"ISOSpeed",34868:"ISOSpeedLatitudeyyy",34869:"ISOSpeedLatitudezzz",37377:"ShutterSpeedValue",37378:"ApertureValue",37379:"BrightnessValue",37380:"ExposureBias",37381:"MaxApertureValue",37382:"SubjectDistance",37383:"MeteringMode",37384:"LightSource",37385:"Flash",37396:"SubjectArea",37386:"FocalLength",41483:"FlashEnergy",41484:"SpatialFrequencyResponse",41486:"FocalPlaneXResolution",41487:"FocalPlaneYResolution",41488:"FocalPlaneResolutionUnit",41492:"SubjectLocation",41493:"ExposureIndex",41495:"SensingMethod",41728:"FileSource",41729:"SceneType",41730:"CFAPattern",41985:"CustomRendered",41986:"ExposureMode",41987:"WhiteBalance",41988:"DigitalZoomRatio",41989:"FocalLengthIn35mmFilm",41990:"SceneCaptureType",41991:"GainControl",41992:"Contrast",41993:"Saturation",41994:"Sharpness",41995:"DeviceSettingDescription",41996:"SubjectDistanceRange",42016:"ImageUniqueID",42032:"CameraOwnerName",42033:"BodySerialNumber",42034:"LensSpecification",42035:"LensMake",42036:"LensModel",42037:"LensSerialNumber",0:"GPSVersionID",1:"GPSLatitudeRef",2:"GPSLatitude",3:"GPSLongitudeRef",4:"GPSLongitude",5:"GPSAltitudeRef",6:"GPSAltitude",7:"GPSTimeStamp",8:"GPSSatellites",9:"GPSStatus",10:"GPSMeasureMode",11:"GPSDOP",12:"GPSSpeedRef",13:"GPSSpeed",14:"GPSTrackRef",15:"GPSTrack",16:"GPSImgDirectionRef",17:"GPSImgDirection",18:"GPSMapDatum",19:"GPSDestLatitudeRef",20:"GPSDestLatitude",21:"GPSDestLongitudeRef",22:"GPSDestLongitude",23:"GPSDestBearingRef",24:"GPSDestBearing",25:"GPSDestDistanceRef",26:"GPSDestDistance",27:"GPSProcessingMethod",28:"GPSAreaInformation",29:"GPSDateStamp",30:"GPSDifferential",31:"GPSHPositioningError"},e.ExifMap.prototype.stringValues={ExposureProgram:{0:"Undefined",1:"Manual",2:"Normal program",3:"Aperture priority",4:"Shutter priority",5:"Creative program",6:"Action program",7:"Portrait mode",8:"Landscape mode"},MeteringMode:{0:"Unknown",1:"Average",2:"CenterWeightedAverage",3:"Spot",4:"MultiSpot",5:"Pattern",6:"Partial",255:"Other"},LightSource:{0:"Unknown",1:"Daylight",2:"Fluorescent",3:"Tungsten (incandescent light)",4:"Flash",9:"Fine weather",10:"Cloudy weather",11:"Shade",12:"Daylight fluorescent (D 5700 - 7100K)",13:"Day white fluorescent (N 4600 - 5400K)",14:"Cool white fluorescent (W 3900 - 4500K)",15:"White fluorescent (WW 3200 - 3700K)",17:"Standard light A",18:"Standard light B",19:"Standard light C",20:"D55",21:"D65",22:"D75",23:"D50",24:"ISO studio tungsten",255:"Other"},Flash:{0:"Flash did not fire",1:"Flash fired",5:"Strobe return light not detected",7:"Strobe return light detected",9:"Flash fired, compulsory flash mode",13:"Flash fired, compulsory flash mode, return light not detected",15:"Flash fired, compulsory flash mode, return light detected",16:"Flash did not fire, compulsory flash mode",24:"Flash did not fire, auto mode",25:"Flash fired, auto mode",29:"Flash fired, auto mode, return light not detected",31:"Flash fired, auto mode, return light detected",32:"No flash function",65:"Flash fired, red-eye reduction mode",69:"Flash fired, red-eye reduction mode, return light not detected",71:"Flash fired, red-eye reduction mode, return light detected",73:"Flash fired, compulsory flash mode, red-eye reduction mode",77:"Flash fired, compulsory flash mode, red-eye reduction mode, return light not detected",79:"Flash fired, compulsory flash mode, red-eye reduction mode, return light detected",89:"Flash fired, auto mode, red-eye reduction mode",93:"Flash fired, auto mode, return light not detected, red-eye reduction mode",95:"Flash fired, auto mode, return light detected, red-eye reduction mode"},SensingMethod:{1:"Undefined",2:"One-chip color area sensor",3:"Two-chip color area sensor",4:"Three-chip color area sensor",5:"Color sequential area sensor",7:"Trilinear sensor",8:"Color sequential linear sensor"},SceneCaptureType:{0:"Standard",1:"Landscape",2:"Portrait",3:"Night scene"},SceneType:{1:"Directly photographed"},CustomRendered:{0:"Normal process",1:"Custom process"},WhiteBalance:{0:"Auto white balance",1:"Manual white balance"},GainControl:{0:"None",1:"Low gain up",2:"High gain up",3:"Low gain down",4:"High gain down"},Contrast:{0:"Normal",1:"Soft",2:"Hard"},Saturation:{0:"Normal",1:"Low saturation",2:"High saturation"},Sharpness:{0:"Normal",1:"Soft",2:"Hard"},SubjectDistanceRange:{0:"Unknown",1:"Macro",2:"Close view",3:"Distant view"},FileSource:{3:"DSC"},ComponentsConfiguration:{0:"",1:"Y",2:"Cb",3:"Cr",4:"R",5:"G",6:"B"},Orientation:{1:"top-left",2:"top-right",3:"bottom-right",4:"bottom-left",5:"left-top",6:"right-top",7:"right-bottom",8:"left-bottom"}},e.ExifMap.prototype.getText=function(e){var t=this.get(e);switch(e){case"LightSource":case"Flash":case"MeteringMode":case"ExposureProgram":case"SensingMethod":case"SceneCaptureType":case"SceneType":case"CustomRendered":case"WhiteBalance":case"GainControl":case"Contrast":case"Saturation":case"Sharpness":case"SubjectDistanceRange":case"FileSource":case"Orientation":return this.stringValues[e][t];case"ExifVersion":case"FlashpixVersion":return String.fromCharCode(t[0],t[1],t[2],t[3]);case"ComponentsConfiguration":return this.stringValues[e][t[0]]+this.stringValues[e][t[1]]+this.stringValues[e][t[2]]+this.stringValues[e][t[3]];case"GPSVersionID":return t[0]+"."+t[1]+"."+t[2]+"."+t[3]}return t+""},t=e.ExifMap.prototype.tags,i=e.ExifMap.prototype.map;for(a in t)t.hasOwnProperty(a)&&(i[t[a]]=a);e.ExifMap.prototype.getAll=function(){var e,i,a={};for(e in this)this.hasOwnProperty(e)&&(i=t[e],i&&(a[i]=this.getText(i)));return a}}); \ No newline at end of file diff --git a/static/file_upload/js/locale.js b/static/file_upload/js/locale.js deleted file mode 100644 index ea64b0a8..00000000 --- a/static/file_upload/js/locale.js +++ /dev/null @@ -1,29 +0,0 @@ -/* - * jQuery File Upload Plugin Localization Example 6.5.1 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2012, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*global window */ - -window.locale = { - "fileupload": { - "errors": { - "maxFileSize": "File is too big", - "minFileSize": "File is too small", - "acceptFileTypes": "Filetype not allowed", - "maxNumberOfFiles": "Max number of files exceeded", - "uploadedBytes": "Uploaded bytes exceed file size", - "emptyResult": "Empty file upload result" - }, - "error": "Error", - "start": "Start", - "cancel": "Cancel", - "destroy": "Delete" - } -}; diff --git a/static/file_upload/js/main.js b/static/file_upload/js/main.js deleted file mode 100644 index 1850909a..00000000 --- a/static/file_upload/js/main.js +++ /dev/null @@ -1,77 +0,0 @@ -/* - * jQuery File Upload Plugin JS Example 8.8.2 - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2010, Sebastian Tschan - * https://blueimp.net - * - * Licensed under the MIT license: - * http://www.opensource.org/licenses/MIT - */ - -/*jslint nomen: true, regexp: true */ -/*global $, window, blueimp */ - -$(function () { - 'use strict'; - - // Initialize the jQuery File Upload widget: - $('#fileupload').fileupload({ - // Uncomment the following to send cross-domain cookies: - //xhrFields: {withCredentials: true}, - //url: 'server/php/' - }); - - // Enable iframe cross-domain access via redirect option: - $('#fileupload').fileupload( - 'option', - 'redirect', - window.location.href.replace( - /\/[^\/]*$/, - '/cors/result.html?%s' - ) - ); - - if (window.location.hostname === 'blueimp.github.io') { - // Demo settings: - $('#fileupload').fileupload('option', { - url: '//jquery-file-upload.appspot.com/', - // Enable image resizing, except for Android and Opera, - // which actually support image resizing, but fail to - // send Blob objects via XHR requests: - disableImageResize: /Android(?!.*Chrome)|Opera/ - .test(window.navigator.userAgent), - maxFileSize: 5000000, - acceptFileTypes: /(\.|\/)(gif|jpe?g|png)$/i - }); - // Upload server status check for browsers with CORS support: - if ($.support.cors) { - $.ajax({ - url: '//jquery-file-upload.appspot.com/', - type: 'HEAD' - }).fail(function () { - $('
') - .text('Upload server currently unavailable - ' + - new Date()) - .appendTo('#fileupload'); - }); - } - } else { - // Load existing files: - $('#fileupload').addClass('fileupload-processing'); - $.ajax({ - // Uncomment the following to send cross-domain cookies: - //xhrFields: {withCredentials: true}, - //url: $('#fileupload').fileupload('option', 'url'), - url: '/upload/view/', - dataType: 'json', - context: $('#fileupload')[0] - }).always(function () { - $(this).removeClass('fileupload-processing'); - }).done(function (result) { - $(this).fileupload('option', 'done') - .call(this, null, {result: result}); - }); - } - -}); diff --git a/static/file_upload/js/tmpl.min.js b/static/file_upload/js/tmpl.min.js deleted file mode 100644 index a7cae528..00000000 --- a/static/file_upload/js/tmpl.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(e){"use strict";var n=function(e,t){var r=/[^\w\-\.:]/.test(e)?new Function(n.arg+",tmpl","var _e=tmpl.encode"+n.helper+",_s='"+e.replace(n.regexp,n.func)+"';return _s;"):n.cache[e]=n.cache[e]||n(n.load(e));return t?r(t,n):function(e){return r(e,n)}};n.cache={},n.load=function(e){return document.getElementById(e).innerHTML},n.regexp=/([\s'\\])(?!(?:[^{]|\{(?!%))*%\})|(?:\{%(=|#)([\s\S]+?)%\})|(\{%)|(%\})/g,n.func=function(e,n,t,r,c,u){return n?{"\n":"\\n","\r":"\\r"," ":"\\t"," ":" "}[n]||"\\"+n:t?"="===t?"'+_e("+r+")+'":"'+"+r+"+'":c?"';":u?"_s+='":void 0},n.encReg=/[<>&"'\x00]/g,n.encMap={"<":"<",">":">","&":"&",'"':""","'":"'"},n.encode=function(e){return String(e).replace(n.encReg,function(e){return n.encMap[e]||""})},n.arg="o",n.helper=",print=function(s,e){_s+=e&&(s||'')||_e(s);},include=function(s,d){_s+=tmpl(s,d);}","function"==typeof define&&define.amd?define(function(){return n}):e.tmpl=n}(this); \ No newline at end of file diff --git a/static/file_upload/js/vendor/jquery.ui.widget.js b/static/file_upload/js/vendor/jquery.ui.widget.js deleted file mode 100644 index 2d370893..00000000 --- a/static/file_upload/js/vendor/jquery.ui.widget.js +++ /dev/null @@ -1,530 +0,0 @@ -/* - * jQuery UI Widget 1.10.3+amd - * https://github.com/blueimp/jQuery-File-Upload - * - * Copyright 2013 jQuery Foundation and other contributors - * Released under the MIT license. - * http://jquery.org/license - * - * http://api.jqueryui.com/jQuery.widget/ - */ - -(function (factory) { - if (typeof define === "function" && define.amd) { - // Register as an anonymous AMD module: - define(["jquery"], factory); - } else { - // Browser globals: - factory(jQuery); - } -}(function( $, undefined ) { - -var uuid = 0, - slice = Array.prototype.slice, - _cleanData = $.cleanData; -$.cleanData = function( elems ) { - for ( var i = 0, elem; (elem = elems[i]) != null; i++ ) { - try { - $( elem ).triggerHandler( "remove" ); - // http://bugs.jquery.com/ticket/8235 - } catch( e ) {} - } - _cleanData( elems ); -}; - -$.widget = function( name, base, prototype ) { - var fullName, existingConstructor, constructor, basePrototype, - // proxiedPrototype allows the provided prototype to remain unmodified - // so that it can be used as a mixin for multiple widgets (#8876) - proxiedPrototype = {}, - namespace = name.split( "." )[ 0 ]; - - name = name.split( "." )[ 1 ]; - fullName = namespace + "-" + name; - - if ( !prototype ) { - prototype = base; - base = $.Widget; - } - - // create selector for plugin - $.expr[ ":" ][ fullName.toLowerCase() ] = function( elem ) { - return !!$.data( elem, fullName ); - }; - - $[ namespace ] = $[ namespace ] || {}; - existingConstructor = $[ namespace ][ name ]; - constructor = $[ namespace ][ name ] = function( options, element ) { - // allow instantiation without "new" keyword - if ( !this._createWidget ) { - return new constructor( options, element ); - } - - // allow instantiation without initializing for simple inheritance - // must use "new" keyword (the code above always passes args) - if ( arguments.length ) { - this._createWidget( options, element ); - } - }; - // extend with the existing constructor to carry over any static properties - $.extend( constructor, existingConstructor, { - version: prototype.version, - // copy the object used to create the prototype in case we need to - // redefine the widget later - _proto: $.extend( {}, prototype ), - // track widgets that inherit from this widget in case this widget is - // redefined after a widget inherits from it - _childConstructors: [] - }); - - basePrototype = new base(); - // we need to make the options hash a property directly on the new instance - // otherwise we'll modify the options hash on the prototype that we're - // inheriting from - basePrototype.options = $.widget.extend( {}, basePrototype.options ); - $.each( prototype, function( prop, value ) { - if ( !$.isFunction( value ) ) { - proxiedPrototype[ prop ] = value; - return; - } - proxiedPrototype[ prop ] = (function() { - var _super = function() { - return base.prototype[ prop ].apply( this, arguments ); - }, - _superApply = function( args ) { - return base.prototype[ prop ].apply( this, args ); - }; - return function() { - var __super = this._super, - __superApply = this._superApply, - returnValue; - - this._super = _super; - this._superApply = _superApply; - - returnValue = value.apply( this, arguments ); - - this._super = __super; - this._superApply = __superApply; - - return returnValue; - }; - })(); - }); - constructor.prototype = $.widget.extend( basePrototype, { - // TODO: remove support for widgetEventPrefix - // always use the name + a colon as the prefix, e.g., draggable:start - // don't prefix for widgets that aren't DOM-based - widgetEventPrefix: existingConstructor ? basePrototype.widgetEventPrefix : name - }, proxiedPrototype, { - constructor: constructor, - namespace: namespace, - widgetName: name, - widgetFullName: fullName - }); - - // If this widget is being redefined then we need to find all widgets that - // are inheriting from it and redefine all of them so that they inherit from - // the new version of this widget. We're essentially trying to replace one - // level in the prototype chain. - if ( existingConstructor ) { - $.each( existingConstructor._childConstructors, function( i, child ) { - var childPrototype = child.prototype; - - // redefine the child widget using the same prototype that was - // originally used, but inherit from the new version of the base - $.widget( childPrototype.namespace + "." + childPrototype.widgetName, constructor, child._proto ); - }); - // remove the list of existing child constructors from the old constructor - // so the old child constructors can be garbage collected - delete existingConstructor._childConstructors; - } else { - base._childConstructors.push( constructor ); - } - - $.widget.bridge( name, constructor ); -}; - -$.widget.extend = function( target ) { - var input = slice.call( arguments, 1 ), - inputIndex = 0, - inputLength = input.length, - key, - value; - for ( ; inputIndex < inputLength; inputIndex++ ) { - for ( key in input[ inputIndex ] ) { - value = input[ inputIndex ][ key ]; - if ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) { - // Clone objects - if ( $.isPlainObject( value ) ) { - target[ key ] = $.isPlainObject( target[ key ] ) ? - $.widget.extend( {}, target[ key ], value ) : - // Don't extend strings, arrays, etc. with objects - $.widget.extend( {}, value ); - // Copy everything else by reference - } else { - target[ key ] = value; - } - } - } - } - return target; -}; - -$.widget.bridge = function( name, object ) { - var fullName = object.prototype.widgetFullName || name; - $.fn[ name ] = function( options ) { - var isMethodCall = typeof options === "string", - args = slice.call( arguments, 1 ), - returnValue = this; - - // allow multiple hashes to be passed on init - options = !isMethodCall && args.length ? - $.widget.extend.apply( null, [ options ].concat(args) ) : - options; - - if ( isMethodCall ) { - this.each(function() { - var methodValue, - instance = $.data( this, fullName ); - if ( !instance ) { - return $.error( "cannot call methods on " + name + " prior to initialization; " + - "attempted to call method '" + options + "'" ); - } - if ( !$.isFunction( instance[options] ) || options.charAt( 0 ) === "_" ) { - return $.error( "no such method '" + options + "' for " + name + " widget instance" ); - } - methodValue = instance[ options ].apply( instance, args ); - if ( methodValue !== instance && methodValue !== undefined ) { - returnValue = methodValue && methodValue.jquery ? - returnValue.pushStack( methodValue.get() ) : - methodValue; - return false; - } - }); - } else { - this.each(function() { - var instance = $.data( this, fullName ); - if ( instance ) { - instance.option( options || {} )._init(); - } else { - $.data( this, fullName, new object( options, this ) ); - } - }); - } - - return returnValue; - }; -}; - -$.Widget = function( /* options, element */ ) {}; -$.Widget._childConstructors = []; - -$.Widget.prototype = { - widgetName: "widget", - widgetEventPrefix: "", - defaultElement: "
", - options: { - disabled: false, - - // callbacks - create: null - }, - _createWidget: function( options, element ) { - element = $( element || this.defaultElement || this )[ 0 ]; - this.element = $( element ); - this.uuid = uuid++; - this.eventNamespace = "." + this.widgetName + this.uuid; - this.options = $.widget.extend( {}, - this.options, - this._getCreateOptions(), - options ); - - this.bindings = $(); - this.hoverable = $(); - this.focusable = $(); - - if ( element !== this ) { - $.data( element, this.widgetFullName, this ); - this._on( true, this.element, { - remove: function( event ) { - if ( event.target === element ) { - this.destroy(); - } - } - }); - this.document = $( element.style ? - // element within the document - element.ownerDocument : - // element is window or document - element.document || element ); - this.window = $( this.document[0].defaultView || this.document[0].parentWindow ); - } - - this._create(); - this._trigger( "create", null, this._getCreateEventData() ); - this._init(); - }, - _getCreateOptions: $.noop, - _getCreateEventData: $.noop, - _create: $.noop, - _init: $.noop, - - destroy: function() { - this._destroy(); - // we can probably remove the unbind calls in 2.0 - // all event bindings should go through this._on() - this.element - .unbind( this.eventNamespace ) - // 1.9 BC for #7810 - // TODO remove dual storage - .removeData( this.widgetName ) - .removeData( this.widgetFullName ) - // support: jquery <1.6.3 - // http://bugs.jquery.com/ticket/9413 - .removeData( $.camelCase( this.widgetFullName ) ); - this.widget() - .unbind( this.eventNamespace ) - .removeAttr( "aria-disabled" ) - .removeClass( - this.widgetFullName + "-disabled " + - "ui-state-disabled" ); - - // clean up events and states - this.bindings.unbind( this.eventNamespace ); - this.hoverable.removeClass( "ui-state-hover" ); - this.focusable.removeClass( "ui-state-focus" ); - }, - _destroy: $.noop, - - widget: function() { - return this.element; - }, - - option: function( key, value ) { - var options = key, - parts, - curOption, - i; - - if ( arguments.length === 0 ) { - // don't return a reference to the internal hash - return $.widget.extend( {}, this.options ); - } - - if ( typeof key === "string" ) { - // handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } } - options = {}; - parts = key.split( "." ); - key = parts.shift(); - if ( parts.length ) { - curOption = options[ key ] = $.widget.extend( {}, this.options[ key ] ); - for ( i = 0; i < parts.length - 1; i++ ) { - curOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {}; - curOption = curOption[ parts[ i ] ]; - } - key = parts.pop(); - if ( value === undefined ) { - return curOption[ key ] === undefined ? null : curOption[ key ]; - } - curOption[ key ] = value; - } else { - if ( value === undefined ) { - return this.options[ key ] === undefined ? null : this.options[ key ]; - } - options[ key ] = value; - } - } - - this._setOptions( options ); - - return this; - }, - _setOptions: function( options ) { - var key; - - for ( key in options ) { - this._setOption( key, options[ key ] ); - } - - return this; - }, - _setOption: function( key, value ) { - this.options[ key ] = value; - - if ( key === "disabled" ) { - this.widget() - .toggleClass( this.widgetFullName + "-disabled ui-state-disabled", !!value ) - .attr( "aria-disabled", value ); - this.hoverable.removeClass( "ui-state-hover" ); - this.focusable.removeClass( "ui-state-focus" ); - } - - return this; - }, - - enable: function() { - return this._setOption( "disabled", false ); - }, - disable: function() { - return this._setOption( "disabled", true ); - }, - - _on: function( suppressDisabledCheck, element, handlers ) { - var delegateElement, - instance = this; - - // no suppressDisabledCheck flag, shuffle arguments - if ( typeof suppressDisabledCheck !== "boolean" ) { - handlers = element; - element = suppressDisabledCheck; - suppressDisabledCheck = false; - } - - // no element argument, shuffle and use this.element - if ( !handlers ) { - handlers = element; - element = this.element; - delegateElement = this.widget(); - } else { - // accept selectors, DOM elements - element = delegateElement = $( element ); - this.bindings = this.bindings.add( element ); - } - - $.each( handlers, function( event, handler ) { - function handlerProxy() { - // allow widgets to customize the disabled handling - // - disabled as an array instead of boolean - // - disabled class as method for disabling individual parts - if ( !suppressDisabledCheck && - ( instance.options.disabled === true || - $( this ).hasClass( "ui-state-disabled" ) ) ) { - return; - } - return ( typeof handler === "string" ? instance[ handler ] : handler ) - .apply( instance, arguments ); - } - - // copy the guid so direct unbinding works - if ( typeof handler !== "string" ) { - handlerProxy.guid = handler.guid = - handler.guid || handlerProxy.guid || $.guid++; - } - - var match = event.match( /^(\w+)\s*(.*)$/ ), - eventName = match[1] + instance.eventNamespace, - selector = match[2]; - if ( selector ) { - delegateElement.delegate( selector, eventName, handlerProxy ); - } else { - element.bind( eventName, handlerProxy ); - } - }); - }, - - _off: function( element, eventName ) { - eventName = (eventName || "").split( " " ).join( this.eventNamespace + " " ) + this.eventNamespace; - element.unbind( eventName ).undelegate( eventName ); - }, - - _delay: function( handler, delay ) { - function handlerProxy() { - return ( typeof handler === "string" ? instance[ handler ] : handler ) - .apply( instance, arguments ); - } - var instance = this; - return setTimeout( handlerProxy, delay || 0 ); - }, - - _hoverable: function( element ) { - this.hoverable = this.hoverable.add( element ); - this._on( element, { - mouseenter: function( event ) { - $( event.currentTarget ).addClass( "ui-state-hover" ); - }, - mouseleave: function( event ) { - $( event.currentTarget ).removeClass( "ui-state-hover" ); - } - }); - }, - - _focusable: function( element ) { - this.focusable = this.focusable.add( element ); - this._on( element, { - focusin: function( event ) { - $( event.currentTarget ).addClass( "ui-state-focus" ); - }, - focusout: function( event ) { - $( event.currentTarget ).removeClass( "ui-state-focus" ); - } - }); - }, - - _trigger: function( type, event, data ) { - var prop, orig, - callback = this.options[ type ]; - - data = data || {}; - event = $.Event( event ); - event.type = ( type === this.widgetEventPrefix ? - type : - this.widgetEventPrefix + type ).toLowerCase(); - // the original event may come from any element - // so we need to reset the target on the new event - event.target = this.element[ 0 ]; - - // copy original event properties over to the new event - orig = event.originalEvent; - if ( orig ) { - for ( prop in orig ) { - if ( !( prop in event ) ) { - event[ prop ] = orig[ prop ]; - } - } - } - - this.element.trigger( event, data ); - return !( $.isFunction( callback ) && - callback.apply( this.element[0], [ event ].concat( data ) ) === false || - event.isDefaultPrevented() ); - } -}; - -$.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) { - $.Widget.prototype[ "_" + method ] = function( element, options, callback ) { - if ( typeof options === "string" ) { - options = { effect: options }; - } - var hasOptions, - effectName = !options ? - method : - options === true || typeof options === "number" ? - defaultEffect : - options.effect || defaultEffect; - options = options || {}; - if ( typeof options === "number" ) { - options = { duration: options }; - } - hasOptions = !$.isEmptyObject( options ); - options.complete = callback; - if ( options.delay ) { - element.delay( options.delay ); - } - if ( hasOptions && $.effects && $.effects.effect[ effectName ] ) { - element[ method ]( options ); - } else if ( effectName !== method && element[ effectName ] ) { - element[ effectName ]( options.duration, options.easing, callback ); - } else { - element.queue(function( next ) { - $( this )[ method ](); - if ( callback ) { - callback.call( element[ 0 ] ); - } - next(); - }); - } - }; -}); - -})); diff --git a/templates/client/fileupload/fileupload/picture_angular_form.html b/templates/client/fileupload/fileupload/picture_angular_form.html deleted file mode 100644 index a5ac9c09..00000000 --- a/templates/client/fileupload/fileupload/picture_angular_form.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - -jQuery File Upload Demo - AngularJS version - - - - - - - - - - - - - - - - -
-

Django jQuery File Upload Demo

-

AngularJS version

- -
-
-

File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for AngularJS.
- Supports cross-domain, chunked and resumable file uploads and client-side image resizing.

-
-
- -
{% csrf_token %} - - - -
-
- - - - Add files... - - - - - -
-
- -
- -
- -
 
-
-
- {% verbatim %} - - - - - - - - -
-
- -
-
-
-

- - {{file.name}} - {{file.name}} - - {{file.name}} -

-
Error {{file.error}}
-
-

{{file.size | formatFileSize}}

-
-
- - - -
- {% endverbatim %} -
-
-
-
-

Demo Notes

-
-
- -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/templates/client/fileupload/fileupload/picture_basic_form.html b/templates/client/fileupload/fileupload/picture_basic_form.html deleted file mode 100644 index 6bd17a40..00000000 --- a/templates/client/fileupload/fileupload/picture_basic_form.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - -Django jQuery File Upload Demo - Basic version - - - - - - - - - - - -
-

Django jQuery File Upload Demo

-

Basic version

- -
-
-

File Upload widget with multiple file selection, drag&drop support and progress bar for jQuery.
- Supports cross-domain, chunked and resumable file uploads.

-
-
- - - - Select files... - - - -
-
- -
-
-
- -
-
-
-
-

Demo Notes

-
-
- -
-
-
- - - - - - - - - - - - - diff --git a/templates/client/fileupload/fileupload/picture_basicplus_form.html b/templates/client/fileupload/fileupload/picture_basicplus_form.html deleted file mode 100644 index eb1cc1c5..00000000 --- a/templates/client/fileupload/fileupload/picture_basicplus_form.html +++ /dev/null @@ -1,221 +0,0 @@ - - - - - - -jQuery File Upload Demo - Basic Plus version - - - - - - - - - - - -
-

Django jQuery File Upload Demo

-

Basic Plus version

- -
-
-

File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery.
- Supports cross-domain, chunked and resumable file uploads and client-side image resizing.

-
-
- - - - Add files... - - - -
-
- -
-
-
- -
-
-
-
-

Demo Notes

-
-
-
    -
  • The maximum file size for uploads in this demo is 5 MB (default file size is unlimited).
  • -
  • Only image files (JPG, GIF, PNG) are allowed in this demo (by default there is no file type restriction).
  • -
  • You can drag & drop files from your desktop on this webpage (see Browser support).
  • -
  • Please refer to the project website and documentation for more information.
  • -
  • Built with Twitter's Bootstrap CSS framework and Icons from Glyphicons.
  • -
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/templates/client/fileupload/fileupload/picture_form.html b/templates/client/fileupload/fileupload/picture_form.html deleted file mode 100644 index a3cb5767..00000000 --- a/templates/client/fileupload/fileupload/picture_form.html +++ /dev/null @@ -1,102 +0,0 @@ -{% extends "client/fileupload/upload_base.html" %} -{% load upload_tags %} -{% load staticfiles %} - -{% block content %} -
- - -
{% csrf_token %} - - - -
-
- - - - Add files... - - - - - - - - -
- -
- -
-
-
- -
 
-
-
- - -
-
- -
- - -{% upload_js %} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -{% endblock %} \ No newline at end of file diff --git a/templates/client/fileupload/fileupload/picture_jquery_form.html b/templates/client/fileupload/fileupload/picture_jquery_form.html deleted file mode 100644 index cf0ed04c..00000000 --- a/templates/client/fileupload/fileupload/picture_jquery_form.html +++ /dev/null @@ -1,255 +0,0 @@ - - - - - - - -Django jQuery File Upload Demo - jQuery UI version - - - - - - - - - - - - - - - - - -

Django jQuery File Upload Demo

-

jQuery UI version

-
- - -
- -
-

File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for jQuery UI.
- Supports cross-domain, chunked and resumable file uploads and client-side image resizing.

-
- -
{% csrf_token %} - - - -
-
- - - Add files... - - - - - - - - -
- - -
- -
-
-
-

Demo Notes

-
    -
  • The maximum file size for uploads in this demo is 5 MB (default file size is unlimited).
  • -
  • Only image files (JPG, GIF, PNG) are allowed in this demo (by default there is no file type restriction).
  • -
  • Uploaded files will be deleted automatically after 5 minutes (demo setting).
  • -
  • You can drag & drop files from your desktop on this webpage (see Browser support).
  • -
  • Please refer to the project website and documentation for more information.
  • -
  • Built with jQuery UI.
  • -
- - -{% verbatim %} - - - - -{% endverbatim %} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/templates/client/fileupload/upload_base.html b/templates/client/fileupload/upload_base.html deleted file mode 100644 index 1700c17b..00000000 --- a/templates/client/fileupload/upload_base.html +++ /dev/null @@ -1,52 +0,0 @@ - -{% load staticfiles %} - - - - - - Django Jquery file upload demo - - - - - - - - - - - - - - - - - - -{% block content %} -

No content set

-{% endblock %} - - - diff --git a/templates/client/wizard/third_step.html b/templates/client/wizard/third_step.html new file mode 100644 index 00000000..4ddd325e --- /dev/null +++ b/templates/client/wizard/third_step.html @@ -0,0 +1,115 @@ +{% extends "client/base_catalog.html" %} + + +{% block styles %} + +{% endblock %} + +{% block content_list %} + + +
+

Добавить событие

+
+ +
+ +
+
+

Шаг 1. Основная информация

+ +
+
+
+
+

Шаг 2. Статистика и условия участия

+ +
+
+
+
+

Шаг 3. Добавление фото

+
+
+ 1,2 балла к рейтингу
+
+
+ +
{% csrf_token %} +
+ +
+
+
+ +
+ +
+

более полная информация повышает рейтинг вашего мероприятия и позволяет ранжировать его выше других

+
+
+ +
+ +
    +
    + + + +
    + +
    + +
    +
    +
    + +
    + +{% endblock %} \ No newline at end of file diff --git a/wizard/forms.py b/wizard/forms.py index e60e10ec..c71149ec 100644 --- a/wizard/forms.py +++ b/wizard/forms.py @@ -63,3 +63,4 @@ class ExpoForm2(forms.Form): registration_depos = forms.FloatField() deadline_date = forms.DateField(widget=forms.TextInput(attrs={'placeholder':'дд.мм.гг'})) + diff --git a/wizard/urls.py b/wizard/urls.py index d04ce133..4140c730 100644 --- a/wizard/urls.py +++ b/wizard/urls.py @@ -1,9 +1,9 @@ from django.conf.urls import patterns, url, include from wizard.forms import ExpoForm1, ExpoForm2 -from wizard.views import ExpoWizard +from wizard.views import ExpoWizard, add_photo_view urlpatterns = patterns('', - url(r'^add-photo/', include('fileupload.urls')), + url(r'^add-photo/', add_photo_view, name="add-photo"), url(r'^$', ExpoWizard.as_view([ExpoForm1, ExpoForm2])) ) \ No newline at end of file diff --git a/wizard/views.py b/wizard/views.py index 30a3ad5a..0f18246d 100644 --- a/wizard/views.py +++ b/wizard/views.py @@ -1,12 +1,12 @@ -from django.shortcuts import render_to_response +from django.shortcuts import render_to_response, render from django.contrib.formtools.wizard.views import SessionWizardView -from django.core.files.storage import default_storage, FileSystemStorage +from django.core.files.storage import FileSystemStorage import os from proj import settings from wizard import forms from exposition.models import Exposition, Statistic from functions.form_check import translit_with_separator - +from django.http import HttpResponseRedirect # defining different template for every form TEMPLATES = {'0':'client/wizard/first_step.html', '1':'client/wizard/second_step.html'} @@ -80,10 +80,29 @@ class ExpoWizard(SessionWizardView): if upload_file: self.file_storage.delete(upload_file.name) - return render_to_response('done.html', { - 'form_data': [form.cleaned_data for form in form_list], - }) + + return HttpResponseRedirect("add-photo") + # return render_to_response('done.html', { + # 'form_data': [form.cleaned_data for form in form_list], + # }) def get_template_names(self): return [TEMPLATES[self.steps.current]] + +from django.core.context_processors import csrf +import logging + +loger = logging.getLogger(__name__) + +PATH_TO_FILE = os.path.join(settings.MEDIA_ROOT, 'exposition_foto/') + + +def add_photo_view(request): + if request.POST: + for key, file in request.FILES.items(): + loger.debug(key) + loger.debug(len(request.FILES)) + context = {} + context.update(csrf(request)) + return render(request, "client/wizard/third_step.html", context) \ No newline at end of file From ed1353299acdd486c695093df676cd5cc206693c Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Tue, 1 Sep 2015 16:34:37 +0300 Subject: [PATCH 04/45] Make simple wizard - add feature to upload few files --- templates/client/wizard/second_step.html | 432 +++++++++++------------ templates/client/wizard/third_step.html | 203 ++++++----- wizard/forms.py | 9 + wizard/models.py | 7 +- wizard/urls.py | 7 +- wizard/views.py | 150 ++++---- 6 files changed, 430 insertions(+), 378 deletions(-) diff --git a/templates/client/wizard/second_step.html b/templates/client/wizard/second_step.html index 5e75559b..dcd78540 100644 --- a/templates/client/wizard/second_step.html +++ b/templates/client/wizard/second_step.html @@ -6,305 +6,297 @@

    Добавить событие

    - {{ wizard.form.media }} -
    -
    -

    Шаг 1. Основная информация

    +
    {% csrf_token %} -
    + {{ wizard.form.media }} +
    +
    +

    Шаг 1. Основная информация

    - изменить +
    + +
    -
    - -
    -
    -

    Шаг 2. Статистика и условия участия

    +
    +
    +

    Шаг 2. Статистика и условия участия

    -
    -
    + 0,9 баллов к рейтингу
    +
    +
    + 0,9 баллов к рейтингу
    +
    -
    - {% csrf_token %} - {{ wizard.management_form }} - {% if wizard.form.forms %} - {{ wizard.form.management_form }} - {% for form in wizard.form.forms %} - {{ form }} - {% endfor %} - {% else %} + {{ wizard.management_form }} + {% if wizard.form.forms %} + {{ wizard.form.management_form }} + {% for form in wizard.form.forms %} + {{ form }} + {% endfor %} + {% else %} {% with wizard.form as form %} -
    +
    -
    +
    -
    - - {{ form.found_year }} -
    +
    + + {{ form.found_year }} +
    -
    -
    +
    +
    -
    +
    -
    +
    -
    - +
    + -
    +
    -
    - {{ form.statistic_year }} -
    +
    + {{ form.statistic_year }} +
    -
    +
    -
    - {{ form.visitors }} -
    +
    + {{ form.visitors }} +
    -
    - {{ form.partisipants }} -
    +
    + {{ form.partisipants }} +
    + +
    + {{ form.square }} + м² +
    +
    -
    - {{ form.square }} - м²
    -
    -
    - -
    - +
    + -
    +
    -
    -
    -
    -
    - {{ form.countries }} +
    +
    +
    +
    + {{ form.countries }} +
    +
    -
    -
    -
    - - - -
    - -
    - -

    Стоимость посещения и участия

    +
    -
    -
    + -
    -
    +
    -
    Стоимость билетов
    +
    -
    +

    Стоимость посещения и участия

    -
      +
      +
      -
    • - {{ form.one_day }} - -
    • +
      +
      -
    • - {{ form.all_days }} - -
    • +
      Стоимость билетов
      -
    +
    -
    Предварительная регистрация
    +
      -
    +
  • + {{ form.one_day }} + +
  • -
    +
  • + {{ form.all_days }} + +
  • -
    + -
      +
      Предварительная регистрация
      -
    • - {{ form.pre_one_day }} - -
    • - -
    • - {{ form.pre_all_days }} - -
    • +
    - +
    -
    Регистрация на стойке
    +
    -
    +
      -
    +
  • + {{ form.pre_one_day }} + +
  • -
    +
  • + {{ form.pre_all_days }} + +
  • -
    -
    - -
    Стоимость аренды 1м²
    - -
      - -
    • - {{ form.equiped }} - -
    • - -
    • - {{ form.unequiped }} - -
    • - -
    • - {{ form.open_square }} - -
    • - -
    + -
    +
    Регистрация на стойке
    -
    - +
    -
    - {{ form.min_square }} - м²
    +
    -
    +
    +
    + +
    Стоимость аренды 1м²
    + +
      + +
    • + {{ form.equiped }} + +
    • + +
    • + {{ form.unequiped }} + +
    • + +
    • + {{ form.open_square }} + +
    • + +
    + +
    + +
    + + +
    + {{ form.min_square }} + м² +
    +
    -
    - +
    -
    - {{ form.registration_depos }} - -
    -
    +
    + -
    +
    + {{ form.registration_depos }} + +
    +
    -
    - +
    -
    -
    -
    - {{ form.deadline_date }} +
    + + +
    +
    +
    + {{ form.deadline_date }} +
    +
    +
    -
    -
    +
    -
    +
    -
    +
    +
    + {# #} -
    -
    - +
    +

    более полная информация повышает рейтинг вашего мероприятия и позволяет + ранжировать + его выше других

    +
    +
    -
    -

    более полная информация повышает рейтинг вашего мероприятия и позволяет ранжировать - его выше других

    -
    + -
    - - {% if wizard.steps.prev %} - - - {% endif %} - +
    -
    - +
    +
    +
    +

    Шаг 3. Добавление фото

    -
    -
    -
    -

    Шаг 3. Добавление фото

    -
    -
    -
    -
    -{% endwith %} -{% endif %} + +
    + + {% endwith %} + {% endif %} {% endblock %} \ No newline at end of file diff --git a/templates/client/wizard/third_step.html b/templates/client/wizard/third_step.html index 4ddd325e..df135d76 100644 --- a/templates/client/wizard/third_step.html +++ b/templates/client/wizard/third_step.html @@ -2,114 +2,147 @@ {% block styles %} - + {% endblock %} {% block content_list %} + {{ wizard.form.media }} - -
    -

    Добавить событие

    -
    - -
    - -
    -
    -

    Шаг 1. Основная информация

    - -
    +
    +

    Добавить событие

    -
    -
    -

    Шаг 2. Статистика и условия участия

    - -
    -
    -
    -
    -

    Шаг 3. Добавление фото

    -
    -
    + 1,2 балла к рейтингу
    -
    -
    +
    {% csrf_token %} -
    -
    -
    -
    - -
    -
    -

    более полная информация повышает рейтинг вашего мероприятия и позволяет ранжировать его выше других

    +
    +
    +

    Шаг 1. Основная информация

    + +
    +
    -
    +
    - -
      -
      - -
      - пропустить этот шаг +
      +
      +

      Шаг 2. Статистика и условия участия

      + +
      + +
      +
      +
      +
      +

      Шаг 3. Добавление фото

      -
      - +
      +
      + 1,2 балла к рейтингу
      +
      + {{ form.errors }} + {{ wizard.management_form }} + {% if wizard.form.forms %} + {{ wizard.form.management_form }} + {% for form in wizard.form.forms %} + {{ form }} + {% endfor %} + {% else %} + {% with wizard.form as form %} +
      +
      +
      +
      + {{ form.attachments }} +
      + +
      +

      более полная информация повышает рейтинг вашего мероприятия и позволяет + ранжировать его выше других

      +
      +
      -
      - -
      +
      -
      -{% endcomment %} + + + cnt +=1 ; + document.getElementById('list').insertBefore(div, null); + }; + })(f); + + // Read in the image file as a data URL. + reader.readAsDataURL(f); + } + } + + document.getElementById('files').addEventListener('change', handleFileSelect, false); + {% endblock %} \ No newline at end of file diff --git a/wizard/forms.py b/wizard/forms.py index c71149ec..c65a248a 100644 --- a/wizard/forms.py +++ b/wizard/forms.py @@ -4,6 +4,8 @@ from theme.models import Theme, Tag from place_exposition.models import PlaceExposition from city.models import City from country.models import Country +from multiupload.fields import MultiFileField, MultiFileInput + choices = ((0, ''), (1.0, u'Ежегодно'), (2.0, u'2 раза в год'), (3.0, u'3 раза в год'), (4.0, u'4 раза в год'), (5.0, u'5 раз в год'), (0.5, u'Раз в 2 года'), ( @@ -64,3 +66,10 @@ class ExpoForm2(forms.Form): deadline_date = forms.DateField(widget=forms.TextInput(attrs={'placeholder':'дд.мм.гг'})) +class ExpoForm3(forms.Form): + attachments = MultiFileField(min_num=0, max_num=2, max_file_size=1024*1024*5, widget=MultiFileInput( + attrs={'class':'button big icon-camera', 'value':u'выберите фотографии', 'id':'files'} + )) + + +formlist = [ExpoForm1, ExpoForm2, ExpoForm3] \ No newline at end of file diff --git a/wizard/models.py b/wizard/models.py index 71a83623..74b18b8a 100644 --- a/wizard/models.py +++ b/wizard/models.py @@ -1,3 +1,8 @@ from django.db import models - +from django.conf import settings +import os # Create your models here. + + +class Attachment(models.Model): + file = models.FileField(upload_to=os.path.join(settings.MEDIA_ROOT,'attachments_files')) \ No newline at end of file diff --git a/wizard/urls.py b/wizard/urls.py index 4140c730..6bd3e9eb 100644 --- a/wizard/urls.py +++ b/wizard/urls.py @@ -1,9 +1,8 @@ from django.conf.urls import patterns, url, include -from wizard.forms import ExpoForm1, ExpoForm2 -from wizard.views import ExpoWizard, add_photo_view +from wizard.views import wizard_view urlpatterns = patterns('', - url(r'^add-photo/', add_photo_view, name="add-photo"), - url(r'^$', ExpoWizard.as_view([ExpoForm1, ExpoForm2])) + url(r'^ajax/$', 'wizard.views.ajax_view'), + url(r'^$', wizard_view) ) \ No newline at end of file diff --git a/wizard/views.py b/wizard/views.py index 34203aa4..df29d8f8 100644 --- a/wizard/views.py +++ b/wizard/views.py @@ -1,65 +1,84 @@ -from django.shortcuts import render_to_response, render from django.contrib.formtools.wizard.views import SessionWizardView from django.core.files.storage import FileSystemStorage +from django.http import HttpResponseRedirect +from django.conf import settings + import os -from proj import settings -from wizard import forms +from photologue.models import Photo, Gallery from exposition.models import Exposition, Statistic +from wizard.models import Attachment from functions.form_check import translit_with_separator -from django.http import HttpResponseRedirect # defining different template for every form -TEMPLATES = {'0':'client/wizard/first_step.html', '1':'client/wizard/second_step.html'} - - - +TEMPLATES = { + '0': 'client/wizard/first_step.html', + '1': 'client/wizard/second_step.html', + '2': 'client/wizard/third_step.html' +} +post = None +files = None + +# main view that handle all data from 3 forms(steps) and finally create an Exposition class ExpoWizard(SessionWizardView): - location=os.path.join(settings.MEDIA_ROOT, 'temp', 'files') + + location = os.path.join(settings.MEDIA_ROOT, 'temp') file_storage = FileSystemStorage(location, settings.MEDIA_URL) def done(self, form_list, **kwargs): - upload_file = form_list[0].cleaned_data['logo'] + upload_logo = form_list[0].cleaned_data.get('logo') + upload_images = self.request.FILES.getlist(u'2-attachments') data = self.get_all_cleaned_data() - expo = Exposition.objects.language('ru').create( - name = data.get('name'), - data_begin = data.get('date_start'), - data_end = data.get('date_end'), - main_title = data.get('main_title'), - description = data.get('description'), - products = data.get('products'), - country = data.get('country', 1), - city = data.get('city', 1), - place = data.get('place', 1), - periodic = data.get('periodic'), - web_page = data.get('web_site'), - logo = data.get('logo'), - - foundation_year = data.get('found_year'), - area = data.get('square'), - price_day = '%i %s'%(data.get('one_day'), self.request.POST['oneDayCurrency1']), - price_all = '%i %s'%(data.get('all_days'), self.request.POST['allDaysCurrency1']), - price_day_bar = '%i %s'%(data.get('pre_one_day'),self.request.POST['oneDayCurrency1']), - price_all_bar = '%i %s'%(data.get('pre_all_days'),self.request.POST['allDaysCurrency1']), - - min_area = data.get('min_square'), - registration_payment = data.get('registration_depos'), - application_deadline = data.get('deadline_date'), - min_closed_area = data.get('unequiped'), - min_open_area = data.get('open_square'), - min_closed_equipped_area = data.get('equiped'), - url = translit_with_separator(data.get('name')), - quality_label= 0, - audience = 0 + + expo = Exposition.objects.language(self.request.LANGUAGE_CODE).create( + name=data.get('name'), + data_begin=data.get('date_start'), + data_end=data.get('date_end'), + main_title=data.get('main_title'), + description=data.get('description'), + products=data.get('products'), + country=data.get('country', 1), + city=data.get('city', 1), + place=data.get('place', 1), + periodic=data.get('periodic'), + web_page=data.get('web_site'), + logo=data.get('logo'), + + foundation_year=data.get('found_year'), + area=data.get('square'), + price_day=data.get('one_day'), + price_all=data.get('all_days'), + price_day_bar=data.get('pre_one_day'), + price_all_bar=data.get('pre_all_days'), + + min_area=data.get('min_square'), + registration_payment=data.get('registration_depos'), + application_deadline=data.get('deadline_date'), + min_closed_area=data.get('unequiped'), + min_open_area=data.get('open_square'), + min_closed_equipped_area=data.get('equiped'), + url=translit_with_separator(data.get('name')), + quality_label=0, + audience=0 ) + + photos = [] + for i, photo in enumerate(upload_images): + photos.append(Photo.objects.language(self.request.LANGUAGE_CODE).create( + image=photo, + title=data.get(u'pdescr_%i' % i, photo.name)) + ) + for photo in photos: + expo.upload_photo(photo) + expo.tag = [data.get('tag')] expo.theme = [data.get('theme')] if data['membership1']: - expo.quality_label = (expo.quality_label| Exposition.quality_label.exporating) + expo.quality_label = (expo.quality_label | Exposition.quality_label.exporating) if data['membership2']: - expo.quality_label = (expo.quality_label| Exposition.quality_label.rsva) + expo.quality_label = (expo.quality_label | Exposition.quality_label.rsva) if data['membership3']: - expo.quality_label = (expo.quality_label| Exposition.quality_label.ufi) + expo.quality_label = (expo.quality_label | Exposition.quality_label.ufi) if data['audience1']: expo.audience = (expo.audience | Exposition.audience.experts) @@ -71,39 +90,34 @@ class ExpoWizard(SessionWizardView): expo.save() Statistic.objects.language().create( - exposition = expo, - year = data.get('statistic_year'), - visitors = data.get('visitors'), - members = data.get('partisipants'), - countries = data.get('countries'), - area = data.get('square') + exposition=expo, + year=data.get('statistic_year'), + visitors=data.get('visitors'), + members=data.get('partisipants'), + countries=data.get('countries'), + area=data.get('square') ) - if upload_file: - self.file_storage.delete(upload_file.name) - - return HttpResponseRedirect("add-photo") - # return render_to_response('done.html', { - # 'form_data': [form.cleaned_data for form in form_list], - # }) + if upload_logo: + self.file_storage.delete(upload_logo.name) + if upload_images: + for f in upload_images: + self.file_storage.delete(f.name) + return HttpResponseRedirect('/') def get_template_names(self): return [TEMPLATES[self.steps.current]] -from django.core.context_processors import csrf -import logging -loger = logging.getLogger(__name__) -PATH_TO_FILE = os.path.join(settings.MEDIA_ROOT, 'exposition_foto/') +from wizard.forms import formlist +wizard_view = ExpoWizard.as_view(formlist) +from django.contrib.formtools.wizard.storage.session import SessionStorage +from django.http import HttpResponse +import json -def add_photo_view(request): - if request.POST: - for key, file in request.FILES.items(): - loger.debug(key) - loger.debug(len(request.FILES)) - context = {} - context.update(csrf(request)) - return render(request, "client/wizard/third_step.html", context) \ No newline at end of file +def ajax_view(request): + form = formlist[2](post, files, prefix='2') + return HttpResponse(json.dumps({'posts':post,'files':files}), content_type='application/json') From d51968c26888f32e90d09aafc51a1bbb3bba0c47 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Tue, 1 Sep 2015 16:35:59 +0300 Subject: [PATCH 05/45] Solved problems with saving of translatable models(Page, SeoText) --- core/models.py | 4 ++-- meta/models.py | 5 ++--- proj/settings.py | 1 + 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/core/models.py b/core/models.py index 268a7009..7d302d93 100644 --- a/core/models.py +++ b/core/models.py @@ -130,8 +130,8 @@ class Page(TranslatableModel): self.translate(lang) for field in clear_f_n: setattr(self, field, field_items.get(field, '')) - obj = super(Page,self).save(*args, **kwargs) - return obj + self.save_translations(self) + def __unicode__(self): return self.url diff --git a/meta/models.py b/meta/models.py index c3be90d8..101545b2 100644 --- a/meta/models.py +++ b/meta/models.py @@ -164,7 +164,7 @@ class SeoText(TranslatableModel): all_field_names = list(self._translated_field_names) clear_f_n = [] for field_name in all_field_names: - if field_name not in ['master', 'master_id', u'id', 'language_code']: + if field_name not in ['master', 'master_id', 'id', 'language_code']: clear_f_n.append(field_name) field_items = {field_name:getattr(self, field_name) for field_name in clear_f_n} @@ -174,8 +174,7 @@ class SeoText(TranslatableModel): self.translate(lang) for field in clear_f_n: setattr(self, field, field_items.get(field, '')) - super(SeoText,self).save(*args, **kwargs) - return SeoText + self.save_translations(self) def __unicode__(self): return self.url diff --git a/proj/settings.py b/proj/settings.py index ed02b25d..0c08d6b9 100644 --- a/proj/settings.py +++ b/proj/settings.py @@ -354,6 +354,7 @@ INSTALLED_APPS = ( 'django_crontab', # crons 'social.apps.django_app.default', # social auth 'core', + 'wizard' ) From 4cf03981b72409eb8c3bf9370dd42989fa0be0aa Mon Sep 17 00:00:00 2001 From: re0ne Date: Wed, 2 Sep 2015 14:31:31 +0300 Subject: [PATCH 06/45] Minor changes in file structure --- templates/client/blank.html | 2 +- templates/client/includes/banners/tops.html | 12 ++---------- templates/client/popups/cemat_modal.html | 2 +- .../client/static_client/js/{ => rejs}/banners.js | 13 +++++++++---- templates/client/static_client/js/rejs/tops.js | 8 ++++++++ 5 files changed, 21 insertions(+), 16 deletions(-) rename templates/client/static_client/js/{ => rejs}/banners.js (89%) create mode 100644 templates/client/static_client/js/rejs/tops.js diff --git a/templates/client/blank.html b/templates/client/blank.html index 00219448..1be9b75a 100644 --- a/templates/client/blank.html +++ b/templates/client/blank.html @@ -87,7 +87,7 @@ This template include basic anf main styles and js files, "tag": "{{ tag }}" }; - + diff --git a/templates/client/includes/banners/tops.html b/templates/client/includes/banners/tops.html index 142e63a4..d421696d 100644 --- a/templates/client/includes/banners/tops.html +++ b/templates/client/includes/banners/tops.html @@ -1,13 +1,5 @@
      - \ No newline at end of file + + \ No newline at end of file diff --git a/templates/client/popups/cemat_modal.html b/templates/client/popups/cemat_modal.html index fb497d72..d6c437d9 100644 --- a/templates/client/popups/cemat_modal.html +++ b/templates/client/popups/cemat_modal.html @@ -16,7 +16,7 @@
      - +
      diff --git a/templates/client/static_client/js/banners.js b/templates/client/static_client/js/rejs/banners.js similarity index 89% rename from templates/client/static_client/js/banners.js rename to templates/client/static_client/js/rejs/banners.js index 1f6126ca..df86bbb0 100644 --- a/templates/client/static_client/js/banners.js +++ b/templates/client/static_client/js/rejs/banners.js @@ -4,10 +4,17 @@ var API_URL_ROOT = "/expo-b/get-banners/"; var getUrl = function () { + var catalog = ""; + + var parts = /^\/([^\/]+)(?:\/|$)/i.exec(location.pathname); + if (parts) { + catalog = parts[1]; + } + var data = window.sendData; if (data instanceof Object) { - var search = []; + var search = ["catalog=" + catalog]; for (var key in data) { if (data.hasOwnProperty(key)) { @@ -23,9 +30,7 @@ } } - if (search.length) { - return API_URL_ROOT + "?" + search.join("&"); - } + return API_URL_ROOT + "?" + search.join("&"); } return API_URL_ROOT; diff --git a/templates/client/static_client/js/rejs/tops.js b/templates/client/static_client/js/rejs/tops.js new file mode 100644 index 00000000..b3fbd8a5 --- /dev/null +++ b/templates/client/static_client/js/rejs/tops.js @@ -0,0 +1,8 @@ +(function () { + "use strict"; + + var API_URL_ROOT = "/expo-b/get-tops/"; + var PARENT_ID = "expo_top_events"; + + console.log("TOPS"); +})(); From 7a757d9cb83cb5b1c7f84e1e4e8976dc5dad7c46 Mon Sep 17 00:00:00 2001 From: re0ne Date: Wed, 2 Sep 2015 15:26:26 +0300 Subject: [PATCH 07/45] Added tops getting --- templates/client/includes/banners/tops.html | 2 + .../client/static_client/js/rejs/tops.js | 64 ++++++++++++++++++- 2 files changed, 65 insertions(+), 1 deletion(-) diff --git a/templates/client/includes/banners/tops.html b/templates/client/includes/banners/tops.html index d421696d..f1678855 100644 --- a/templates/client/includes/banners/tops.html +++ b/templates/client/includes/banners/tops.html @@ -1,3 +1,5 @@ +{% load static %} +
      diff --git a/templates/client/static_client/js/rejs/tops.js b/templates/client/static_client/js/rejs/tops.js index b3fbd8a5..5f99943b 100644 --- a/templates/client/static_client/js/rejs/tops.js +++ b/templates/client/static_client/js/rejs/tops.js @@ -4,5 +4,67 @@ var API_URL_ROOT = "/expo-b/get-tops/"; var PARENT_ID = "expo_top_events"; - console.log("TOPS"); + var getUrl = function () { + var catalog = ""; + + var parts = /^\/([^\/]+)(?:\/|$)/i.exec(location.pathname); + if (parts) { + catalog = parts[1]; + } + + var data = window.sendData; + + if (data instanceof Object) { + var search = ["catalog=" + catalog]; + + for (var key in data) { + if (data.hasOwnProperty(key)) { + var value = data[key]; + + if (value instanceof Array) { + for (var i = 0, l = value.length; i < l; i++) { + search.push(encodeURIComponent(key) + "=" + encodeURIComponent(value[i])); + } + } else { + search.push(encodeURIComponent(key) + "=" + encodeURIComponent(value)); + } + } + } + + return API_URL_ROOT + "?" + search.join("&"); + } + + return API_URL_ROOT; + }; + + var getTops = function (url, callback) { + var xhr = new XMLHttpRequest(); + xhr.open("GET", url, true); + + xhr.onreadystatechange = function (event) { + if (event.target.readyState === 4) { + if (event.target.status === 200) { + try { + callback(JSON.parse(event.target.responseText)); + } catch (error) { + // do nothing + } + } + } + }; + + xhr.send(); + }; + + var insertTops = function (data) { + console.log(data); + }; + + var main = function () { + console.log("### TOPS ###"); + + getTops(getUrl(), insertTops); + }; + + window.addEventListener("load", main); })(); From 3b2fd70e5b1131b9e691b175c8ab7fd9a89dbca6 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Wed, 2 Sep 2015 15:35:54 +0300 Subject: [PATCH 08/45] minor bug fix --- exposition/models.py | 2 + meta/admin.py | 12 ++--- meta/admin_urls.py | 11 ++-- meta/forms.py | 10 ++-- meta/models.py | 7 ++- meta/views.py | 10 ++-- proj/views.py | 2 + templates/client/includes/seo_text.html | 2 +- wizard/models.py | 8 --- wizard/urls.py | 2 +- wizard/views.py | 69 +++++++++++++------------ 11 files changed, 60 insertions(+), 75 deletions(-) diff --git a/exposition/models.py b/exposition/models.py index dce42537..950c36f8 100644 --- a/exposition/models.py +++ b/exposition/models.py @@ -59,6 +59,8 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): data_end = models.DateField(verbose_name='Дата окончания') services = BitField(flags=flags) # relations + creator = models.ForeignKey('accounts.User', verbose_name=u'Создатель', on_delete=models.SET_NULL, + related_name='exposition_creator', blank=True, null=True) country = models.ForeignKey('country.Country', verbose_name='Страна', on_delete=models.PROTECT, related_name='exposition_country') city = models.ForeignKey('city.City', verbose_name='Город', on_delete=models.PROTECT, diff --git a/meta/admin.py b/meta/admin.py index 5d944cd3..7f21eb6b 100644 --- a/meta/admin.py +++ b/meta/admin.py @@ -1,13 +1,7 @@ # -*- coding: utf-8 -*- -from django.shortcuts import render_to_response -from django.http import HttpResponseRedirect, HttpResponse -from django.core.context_processors import csrf +from django.http import HttpResponseRedirect from django.conf import settings -from django.forms.formsets import BaseFormSet, formset_factory -from django.forms.models import modelformset_factory -from django.contrib.contenttypes.models import ContentType -from django.contrib.auth.decorators import login_required -#models and forms +# models and forms from models import MetaSetting from forms import MetaForm, MetaFilterForm from functions.admin_views import AdminListView, AdminView @@ -45,7 +39,7 @@ class MetaView(AdminView): data['keywords_%s' % code] = trans_obj.keywords data['h1_%s' % code] = trans_obj.h1 - form =form_class(initial=data) + form = form_class(initial=data) return form else: return form_class() diff --git a/meta/admin_urls.py b/meta/admin_urls.py index a545ff76..f93ae2c7 100644 --- a/meta/admin_urls.py +++ b/meta/admin_urls.py @@ -1,16 +1,15 @@ # -*- coding: utf-8 -*- -from django.conf.urls import patterns, include, url -from admin import MetaListView, MetaView -from .views import CreateSeoText, SeoTextList, EditSeoText, DeleteSeoText +from django.conf.urls import patterns, url +from views import CreateSeoText, SeoTextList, EditSeoText, DeleteSeoText +from .admin import MetaListView, MetaView -urlpatterns = patterns('conference.admin', +urlpatterns = patterns('', url(r'^seo/new/$', CreateSeoText.as_view(), name='seo_new'), url(r'^seo/all/$', SeoTextList.as_view(), name='seo_all'), url(r'^seo/edit/(?P\d{1,5})/$', EditSeoText.as_view(), name='seo_edit'), url(r'^seo/delete/(?P\d{1,5})/$', DeleteSeoText.as_view(), name='seo_delete'), url(r'^all/$', MetaListView.as_view()), - #url(r'^change/(?P.*)/$', 'conference_change'), - url(r'^(?P.*)/$', MetaView.as_view()), + url(r'^(?P\d{1,6})/$', MetaView.as_view()), url(r'^$', MetaView.as_view()), ) \ No newline at end of file diff --git a/meta/forms.py b/meta/forms.py index eb93f28a..641845f4 100644 --- a/meta/forms.py +++ b/meta/forms.py @@ -1,9 +1,11 @@ # -*- coding: utf-8 -*- from django import forms from django.conf import settings -from models import MetaSetting +from models import MetaSetting, SeoText from functions.translate import fill_with_signal from functions.admin_forms import AdminFilterForm +from ckeditor.widgets import CKEditorWidget +from hvad.forms import TranslatableModelForm class MetaForm(forms.Form): @@ -14,7 +16,7 @@ class MetaForm(forms.Form): create dynamical translated fields fields """ super(MetaForm, self).__init__(*args, **kwargs) - #creates translated forms example: name_ru, name_en + # creates translated forms example: name_ru, name_en # len(10) is a hack for detect if settings.LANGUAGES is not configured it return all langs if len(settings.LANGUAGES) in range(10): for lid, (code, name) in enumerate(settings.LANGUAGES): @@ -48,10 +50,6 @@ class MetaFilterForm(AdminFilterForm): model = MetaSetting -from .models import SeoText -from ckeditor.widgets import CKEditorWidget -from hvad.forms import TranslatableModelForm - class SeoTextForm(TranslatableModelForm): class Meta: diff --git a/meta/models.py b/meta/models.py index 101545b2..504207f9 100644 --- a/meta/models.py +++ b/meta/models.py @@ -135,13 +135,12 @@ class SeoTextManager(TranslationManager): key = 'seo_text_cache' result = cache.get(key) if result: - return result.get(lang+'_' + url) + return result.get("%s_%s" % (lang, url)) qs = SeoText.objects.language('all') - value_dict = {obj.language_code+'_'+obj.url:obj for obj in qs} + value_dict = {obj.language_code+'_'+obj.url: obj for obj in qs} cache.set(key, value_dict, self.cache_time) - return value_dict.get(lang+'_'+url) - + return value_dict.get("%s_%s" % (lang, url)) class SeoText(TranslatableModel): diff --git a/meta/views.py b/meta/views.py index 28d30eba..f8639343 100644 --- a/meta/views.py +++ b/meta/views.py @@ -1,9 +1,9 @@ from __future__ import unicode_literals - +from . import settings +from django.views.generic import CreateView, UpdateView, DeleteView, ListView from django.core.exceptions import ImproperlyConfigured from models import MetaSetting - -from . import settings +from .forms import SeoTextForm, SeoText class Meta(object): @@ -189,10 +189,6 @@ class MetadataMixin(object): return context -from django.views.generic import CreateView, UpdateView, DeleteView, ListView -from .models import SeoText -from .forms import SeoTextForm - class CreateSeoText(CreateView): form_class = SeoTextForm diff --git a/proj/views.py b/proj/views.py index 0db0e5bd..da14db80 100644 --- a/proj/views.py +++ b/proj/views.py @@ -26,6 +26,7 @@ def clear_slashes(str_): str_ = str_[:-1] return str_ + def add_seo(request): url = request.path lang = get_language() @@ -38,6 +39,7 @@ def add_seo(request): seo_text = None return seo_text + def expo_context(request): banners_themes = [24, 34, 4] banner_tags = [141, 142, 143, 156, 206, 231, 232, 390, 391, 400, 457, 500, 536, 537, 539, 457, 500, 686, 715, 765, diff --git a/templates/client/includes/seo_text.html b/templates/client/includes/seo_text.html index 46773696..833c8d87 100644 --- a/templates/client/includes/seo_text.html +++ b/templates/client/includes/seo_text.html @@ -1,3 +1,3 @@ -
      +

      {{ object.title }}

      {{ object.body|safe }}
      \ No newline at end of file diff --git a/wizard/models.py b/wizard/models.py index 74b18b8a..e69de29b 100644 --- a/wizard/models.py +++ b/wizard/models.py @@ -1,8 +0,0 @@ -from django.db import models -from django.conf import settings -import os -# Create your models here. - - -class Attachment(models.Model): - file = models.FileField(upload_to=os.path.join(settings.MEDIA_ROOT,'attachments_files')) \ No newline at end of file diff --git a/wizard/urls.py b/wizard/urls.py index 6bd3e9eb..4ae424d2 100644 --- a/wizard/urls.py +++ b/wizard/urls.py @@ -3,6 +3,6 @@ from django.conf.urls import patterns, url, include from wizard.views import wizard_view urlpatterns = patterns('', - url(r'^ajax/$', 'wizard.views.ajax_view'), + # url(r'^ajax/$', 'wizard.views.ajax_view'), url(r'^$', wizard_view) ) \ No newline at end of file diff --git a/wizard/views.py b/wizard/views.py index df29d8f8..9a9b21ea 100644 --- a/wizard/views.py +++ b/wizard/views.py @@ -4,10 +4,10 @@ from django.http import HttpResponseRedirect from django.conf import settings import os -from photologue.models import Photo, Gallery +from photologue.models import Photo from exposition.models import Exposition, Statistic -from wizard.models import Attachment from functions.form_check import translit_with_separator +from accounts.models import User # defining different template for every form @@ -16,20 +16,26 @@ TEMPLATES = { '1': 'client/wizard/second_step.html', '2': 'client/wizard/third_step.html' } -post = None -files = None -# main view that handle all data from 3 forms(steps) and finally create an Exposition class ExpoWizard(SessionWizardView): + "main view that handle all data from 3 forms(steps) and finally create an Exposition" + + # storing temporary files during upload location = os.path.join(settings.MEDIA_ROOT, 'temp') file_storage = FileSystemStorage(location, settings.MEDIA_URL) + SUCCES_URL = "/" + + def get_template_names(self): + return [TEMPLATES[self.steps.current]] def done(self, form_list, **kwargs): + # getting data and files upload_logo = form_list[0].cleaned_data.get('logo') upload_images = self.request.FILES.getlist(u'2-attachments') data = self.get_all_cleaned_data() - + + # creating new exposition expo = Exposition.objects.language(self.request.LANGUAGE_CODE).create( name=data.get('name'), data_begin=data.get('date_start'), @@ -59,9 +65,10 @@ class ExpoWizard(SessionWizardView): min_closed_equipped_area=data.get('equiped'), url=translit_with_separator(data.get('name')), quality_label=0, - audience=0 + audience=0, + creator = User.objects.get(id=self.request.user.id) ) - + # adding photo to gallery photos = [] for i, photo in enumerate(upload_images): photos.append(Photo.objects.language(self.request.LANGUAGE_CODE).create( @@ -71,25 +78,16 @@ class ExpoWizard(SessionWizardView): for photo in photos: expo.upload_photo(photo) + # many to many relations saving expo.tag = [data.get('tag')] expo.theme = [data.get('theme')] - if data['membership1']: - expo.quality_label = (expo.quality_label | Exposition.quality_label.exporating) - if data['membership2']: - expo.quality_label = (expo.quality_label | Exposition.quality_label.rsva) - if data['membership3']: - expo.quality_label = (expo.quality_label | Exposition.quality_label.ufi) - - if data['audience1']: - expo.audience = (expo.audience | Exposition.audience.experts) - if data['audience2']: - expo.audience = expo.audience | getattr(Exposition.audience, 'experts and consumers') - if data['audience3']: - expo.audience = expo.audience | (getattr(Exposition.audience, 'general public')) + # setting bit fields audience and quality_label + self.set_flags(expo, data) expo.save() - Statistic.objects.language().create( + # ? + Statistic.objects.language(self.request.LANGUAGE_CODE).create( exposition=expo, year=data.get('statistic_year'), visitors=data.get('visitors'), @@ -98,26 +96,31 @@ class ExpoWizard(SessionWizardView): area=data.get('square') ) + # remove temporary files if it has any if upload_logo: self.file_storage.delete(upload_logo.name) if upload_images: for f in upload_images: self.file_storage.delete(f.name) - return HttpResponseRedirect('/') - def get_template_names(self): - return [TEMPLATES[self.steps.current]] + return HttpResponseRedirect(self.SUCCES_URL) + def set_flags(self, expo, data): + if data['membership1']: + expo.quality_label = (expo.quality_label | Exposition.quality_label.exporating) + if data['membership2']: + expo.quality_label = (expo.quality_label | Exposition.quality_label.rsva) + if data['membership3']: + expo.quality_label = (expo.quality_label | Exposition.quality_label.ufi) + + if data['audience1']: + expo.audience = (expo.audience | Exposition.audience.experts) + if data['audience2']: + expo.audience = expo.audience | getattr(Exposition.audience, 'experts and consumers') + if data['audience3']: + expo.audience = expo.audience | (getattr(Exposition.audience, 'general public')) from wizard.forms import formlist wizard_view = ExpoWizard.as_view(formlist) - -from django.contrib.formtools.wizard.storage.session import SessionStorage -from django.http import HttpResponse -import json - -def ajax_view(request): - form = formlist[2](post, files, prefix='2') - return HttpResponse(json.dumps({'posts':post,'files':files}), content_type='application/json') From 4c179cb3e5262e642de17914432e5e10b4e42b2f Mon Sep 17 00:00:00 2001 From: re0ne Date: Wed, 2 Sep 2015 15:59:25 +0300 Subject: [PATCH 09/45] Top events adding --- templates/client/static_client/js/rejs/tops.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/templates/client/static_client/js/rejs/tops.js b/templates/client/static_client/js/rejs/tops.js index 5f99943b..db87aa6a 100644 --- a/templates/client/static_client/js/rejs/tops.js +++ b/templates/client/static_client/js/rejs/tops.js @@ -45,7 +45,7 @@ if (event.target.readyState === 4) { if (event.target.status === 200) { try { - callback(JSON.parse(event.target.responseText)); + callback(event.target.responseText); } catch (error) { // do nothing } @@ -56,13 +56,15 @@ xhr.send(); }; - var insertTops = function (data) { - console.log(data); + var insertTops = function (text) { + var parent = document.getElementById(PARENT_ID); + + if (parent) { + parent.innerHTML = text; + } }; var main = function () { - console.log("### TOPS ###"); - getTops(getUrl(), insertTops); }; From bc267464c46d547150114a870882afed1b11de8d Mon Sep 17 00:00:00 2001 From: Kotiuk Nazarii Date: Wed, 2 Sep 2015 17:31:34 +0300 Subject: [PATCH 10/45] Popups hardcoded --- expobanner/models.py | 4 +++- expobanner/views.py | 4 ++-- proj/settings.py | 2 ++ templates/client/includes/banners/popup.html | 2 ++ 4 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 templates/client/includes/banners/popup.html diff --git a/expobanner/models.py b/expobanner/models.py index b49c914f..12e1d066 100644 --- a/expobanner/models.py +++ b/expobanner/models.py @@ -95,8 +95,10 @@ class Banner(models.Model, StatMixin): html = models.BooleanField(verbose_name=_('HTML?'), default=False) flash = models.BooleanField(verbose_name=_('Flash?'), default=False) - js = models.BooleanField(verbose_name=_('Javascript?'), default=False) + popup = models.BooleanField(verbose_name=_('Popup?'), default=False) paid = models.BooleanField(verbose_name=_('Is Paid event link?'), default=False) + # for detecting popups + cookie = models.CharField(max_length=30, blank=True, null=True, default=settings.DEFAULT_POPUP_COOKIE) public = models.BooleanField(verbose_name=u'Активный', default=True) created_at = models.DateTimeField(verbose_name=_('Created At'), auto_now_add=True) diff --git a/expobanner/views.py b/expobanner/views.py index 96540cdc..99135b27 100644 --- a/expobanner/views.py +++ b/expobanner/views.py @@ -46,7 +46,7 @@ def get_banners(request): for group, banners in group_banners.iteritems(): banner = get_banner_by_params(banners, good_urls, params) if banner: - if banner.js or banner.html: + if banner.html: text = banner.text img = '' alt = '' @@ -61,7 +61,7 @@ def get_banners(request): 'is_html': banner.html, 'is_flash': banner.flash, 'is_img': is_img, - 'is_js': banner.js, + 'is_popup': banner.popup, 'img': img, 'alt': alt, 'text': text diff --git a/proj/settings.py b/proj/settings.py index c2828869..14caba29 100644 --- a/proj/settings.py +++ b/proj/settings.py @@ -449,6 +449,8 @@ CLIENT_DATE_FORMAT = ["%d.%m.%Y"] # cache pages in random seconds. random in this range CACHE_RANGE = [60, 120] +DEFAULT_POPUP_COOKIE = 'expo_b_default_popup' + try: from local import * except ImportError, e: diff --git a/templates/client/includes/banners/popup.html b/templates/client/includes/banners/popup.html new file mode 100644 index 00000000..51d5d4ad --- /dev/null +++ b/templates/client/includes/banners/popup.html @@ -0,0 +1,2 @@ + \ No newline at end of file From 28aec988e16b2df6a1960532fb16c0397c709e75 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Wed, 2 Sep 2015 17:58:02 +0300 Subject: [PATCH 11/45] deleted static/client --- meta/models.py | 6 +++--- templates/admin/meta/create_seo_text.html | 2 +- wizard/forms.py | 17 +++++++++++------ 3 files changed, 15 insertions(+), 10 deletions(-) diff --git a/meta/models.py b/meta/models.py index 5dd80db9..2079be66 100644 --- a/meta/models.py +++ b/meta/models.py @@ -144,11 +144,11 @@ class SeoTextManager(TranslationManager): class SeoText(TranslatableModel): - url = models.CharField(max_length=50, unique=True) + url = models.CharField(max_length=50, unique=True, verbose_name=u"URL: expomap.ru") translations = TranslatedFields( - title=models.CharField(max_length=255), - body=models.TextField() + title=models.CharField(max_length=255, verbose_name=u"Заголовок"), + body=models.TextField(verbose_name=u"Текст") ) objects = SeoTextManager() diff --git a/templates/admin/meta/create_seo_text.html b/templates/admin/meta/create_seo_text.html index d11af3d7..a18a44c5 100644 --- a/templates/admin/meta/create_seo_text.html +++ b/templates/admin/meta/create_seo_text.html @@ -29,7 +29,7 @@
      {{ form.langs }} - {{ form.url }} + {{ form.url }} {{ form.url.errors }}
      diff --git a/wizard/forms.py b/wizard/forms.py index c65a248a..e77ee6a8 100644 --- a/wizard/forms.py +++ b/wizard/forms.py @@ -11,25 +11,30 @@ choices = ((0, ''), (1.0, u'Ежегодно'), (2.0, u'2 раза в год'), (5.0, u'5 раз в год'), (0.5, u'Раз в 2 года'), ( 0.33, u'Раз в 3 года'), (0.25, u'Раз в 4 года')) +places = [(item.id, item.name) for item in PlaceExposition.objects.language().all()] +places.insert(0,('', 'Не выбрано')) + class ExpoForm1(forms.Form): """ main information about exposition """ - theme = forms.ModelChoiceField(queryset=Theme.objects.filter(id=50)) - tag = forms.ModelChoiceField(queryset=Tag.objects.filter(id=50)) name = forms.CharField(max_length=255, widget=forms.TextInput(attrs={'placeholder': "Введите название выставки"})) main_title = forms.CharField(max_length=255, widget=forms.TextInput(attrs={'placeholder': "Краткое описание выставки (необязательно)"})) description = forms.CharField(widget=forms.Textarea(attrs={'placeholder': "Полное описание выставки", 'cols':30, 'rows':10})) date_start = forms.DateField(widget=forms.TextInput(attrs={'class':'data dateFrom', 'placeholder':'дд.мм.гг'})) date_end = forms.DateField(widget=forms.TextInput(attrs={'class':'data dateTo','placeholder':'дд.мм.гг'})) - country = forms.ModelChoiceField(queryset=Country.objects.filter(id=50)) - city = forms.ModelChoiceField(queryset=City.objects.language('ru').filter(id=900052419)) - place = forms.ModelChoiceField(queryset=PlaceExposition.objects.filter(id=50)) + + country = forms.ChoiceField(label=u'Страна', choices=[(c.id, c.name) for c in Country.objects.all()]) + theme = forms.MultipleChoiceField(label='Тематики', choices=[(item.id, item.name) for item in Theme.objects.language().all()]) + place = forms.ChoiceField(label=u'Место проведения', required=False, choices=places) + city = forms.CharField(label=u'Город', widget=forms.HiddenInput()) + tag = forms.CharField(label=u'Теги', widget=forms.HiddenInput(), required=False) + audience1 = forms.BooleanField(required=False) audience2 = forms.BooleanField(required=False) audience3 = forms.BooleanField(required=False) - periodic = forms.ChoiceField(choices=choices) + periodic = forms.ChoiceField(choices=choices, required=False, widget=forms.Select(attrs={'placeholder':u'Периодичность'})) membership1= forms.BooleanField(required=False) membership2= forms.BooleanField(required=False) membership3= forms.BooleanField(required=False) From d95d0ddb3597a0599e5a5938e8e77525618b3f26 Mon Sep 17 00:00:00 2001 From: re0ne Date: Wed, 2 Sep 2015 18:36:09 +0300 Subject: [PATCH 12/45] Added popup support --- templates/client/blank.html | 1 + .../client/static_client/js/rejs/banners.js | 43 +++++++++++++------ 2 files changed, 32 insertions(+), 12 deletions(-) diff --git a/templates/client/blank.html b/templates/client/blank.html index 1be9b75a..19a075c1 100644 --- a/templates/client/blank.html +++ b/templates/client/blank.html @@ -136,6 +136,7 @@ This template include basic anf main styles and js files, {% endif %} {% include 'client/popups/callback.html' %} + {% include 'client/includes/banners/popup.html' %} {% block popup_banner %} {% if not request.COOKIES.popover_test1 %} {% if theme_for_filter %} diff --git a/templates/client/static_client/js/rejs/banners.js b/templates/client/static_client/js/rejs/banners.js index df86bbb0..fc266152 100644 --- a/templates/client/static_client/js/rejs/banners.js +++ b/templates/client/static_client/js/rejs/banners.js @@ -59,18 +59,37 @@ var parent = document.getElementById(banner.id); if (parent) { - if (banner.is_img) { - var a = document.createElement("a"); - a.href = banner.url; - - var img = document.createElement("img"); - img.src = banner.img; - img.alt = banner.alt; - - a.appendChild(img); - parent.appendChild(a); - } else if (banner.is_html) { - parent.innerHTML = banner.text; + if (banner.is_popup) { + if (banner.is_img) { + parent.innerHTML = + "
      " + + "\""
      "; + } else if (banner.is_html) { + parent.innerHTML = banner.text; + } + + $("#expo-form-popup").on("submit", function(e) { + e.preventDefault(); + window.location = $("#expo-form-popup").attr("action"); + }); + + setTimeout(function(){ + $.fancybox.open([{"href": "#" + banner.id}], {}); + }, 5000); + } else { + if (banner.is_img) { + var a = document.createElement("a"); + a.href = banner.url; + + var img = document.createElement("img"); + img.src = banner.img; + img.alt = banner.alt; + + a.appendChild(img); + parent.appendChild(a); + } else if (banner.is_html) { + parent.innerHTML = banner.text; + } } } From 3a133a10aa56ba9d4d705937316b28ad6249ef97 Mon Sep 17 00:00:00 2001 From: Kotiuk Nazarii Date: Wed, 2 Sep 2015 20:53:15 +0300 Subject: [PATCH 13/45] Cookies check --- expobanner/utils.py | 7 ++++++- expobanner/views.py | 11 ++++++++--- templates/client/blank.html | 1 + 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/expobanner/utils.py b/expobanner/utils.py index 9c4222a2..b87e1c7f 100644 --- a/expobanner/utils.py +++ b/expobanner/utils.py @@ -20,11 +20,16 @@ def get_by_sort(banner_list): return result -def get_banner_by_params(banners_list, urls, params): +def get_banner_by_params(banners_list, urls, params, request): thematic_banners = [] url_banners = [] for banner in banners_list: + # check popups + if banner.popup: + cookie = request.COOKIES.get(banner.cookie) + if cookie: + continue # check by theme banner_theme_ids = [str(theme.id) for theme in banner.theme.all()] if banner_theme_ids: diff --git a/expobanner/views.py b/expobanner/views.py index 99135b27..512292e0 100644 --- a/expobanner/views.py +++ b/expobanner/views.py @@ -42,9 +42,10 @@ def get_banners(request): group_banners = BannerGroup.cached.group_banners() result = [] + set_cookie = None # get banners for all groups for group, banners in group_banners.iteritems(): - banner = get_banner_by_params(banners, good_urls, params) + banner = get_banner_by_params(banners, good_urls, params, request) if banner: if banner.html: text = banner.text @@ -66,10 +67,14 @@ def get_banners(request): 'alt': alt, 'text': text }) + if banner.popup: + set_cookie = banner.cookie # add view log banner.log(request, 1) - - return HttpResponse(json.dumps(result, indent=4), content_type='application/json') + response = HttpResponse(json.dumps(result, indent=4), content_type='application/json') + if set_cookie: + response.set_cookie(set_cookie, 1) + return response def get_top(request): params = {'theme': request.GET.getlist('theme', []), diff --git a/templates/client/blank.html b/templates/client/blank.html index 1be9b75a..19a075c1 100644 --- a/templates/client/blank.html +++ b/templates/client/blank.html @@ -136,6 +136,7 @@ This template include basic anf main styles and js files, {% endif %} {% include 'client/popups/callback.html' %} + {% include 'client/includes/banners/popup.html' %} {% block popup_banner %} {% if not request.COOKIES.popover_test1 %} {% if theme_for_filter %} From 3450aa09682fb9a2accd3f0688f6cc87b65f893e Mon Sep 17 00:00:00 2001 From: Kotiuk Nazarii Date: Thu, 3 Sep 2015 14:46:11 +0300 Subject: [PATCH 14/45] GET TOPS. Fix views counting --- expobanner/admin.py | 86 +++++++++++++- expobanner/admin_urls.py | 12 +- expobanner/forms.py | 107 ++++++++++++++++-- .../management/commands/banner_log_update.py | 2 +- expobanner/managers.py | 6 +- expobanner/models.py | 25 +++- expobanner/views.py | 5 + exposition/manager.py | 1 + exposition/models.py | 7 ++ functions/models_methods.py | 11 ++ proj/views.py | 7 +- .../admin/expobanner/banners_control.html | 6 + templates/admin/expobanner/link_list.html | 38 +++++++ templates/admin/expobanner/main_list.html | 38 +++++++ templates/admin/expobanner/top_create.html | 2 +- templates/client/blank.html | 26 +++-- .../client/includes/index/main_events.html | 4 +- 17 files changed, 349 insertions(+), 34 deletions(-) create mode 100644 templates/admin/expobanner/link_list.html create mode 100644 templates/admin/expobanner/main_list.html diff --git a/expobanner/admin.py b/expobanner/admin.py index 5bb709d7..40287996 100644 --- a/expobanner/admin.py +++ b/expobanner/admin.py @@ -3,9 +3,9 @@ from django.views.generic import TemplateView, CreateView, ListView, UpdateView, from django.conf import settings from django.http import HttpResponseRedirect from django.shortcuts import get_object_or_404 -from expobanner.models import URL, BannerGroup, Banner, Paid +from expobanner.models import URL, BannerGroup, Banner, Paid, MainPage, Top from expobanner.forms import UrlCreateForm, BannerCreateGroupForm, BannerCreateForm, BannerGroupUpdateForm,\ - PaidCreateForm, PaidUpdateForm, TopCreateForm + PaidCreateForm, PaidUpdateForm, TopCreateForm, BannerLinkCreateForm, MainCreateForm, MainUpdateForm, TopUpdateForm from exposition.models import Exposition @@ -32,6 +32,10 @@ class CreateBanner(AbstractCreate): model = Banner form_class = BannerCreateForm +class CreateLink(AbstractCreate): + model = Banner + form_class = BannerLinkCreateForm + # LISTS VIEWS class AbstractList(ListView): @@ -63,6 +67,16 @@ class BannerList(AbstractList): qs = qs.filter(group__isnull=False) return qs +class LinkList(AbstractList): + model = Banner + verbose = u'Список ссылок' + template_name = 'admin/expobanner/link_list.html' + + def get_queryset(self): + qs = super(LinkList, self).get_queryset() + qs = qs.filter(link=True) + return qs + # UPDATE VIEWS class AbstractUpdate(UpdateView): template_name = 'admin/expobanner/default_form.html' @@ -84,10 +98,16 @@ class BannerUpdate(AbstractUpdate): form_class = BannerCreateForm +class LinkUpdate(AbstractUpdate): + model = Banner + form_class = BannerLinkCreateForm + + class BannerStat(DetailView): model = Banner template_name = 'admin/expobanner/banner_stat.html' + class PaidList(ListView): model = Exposition template_name = 'admin/expobanner/paid_list.html' @@ -96,11 +116,13 @@ class PaidList(ListView): def get_queryset(self): return self.model.objects.language().filter(paid_new__isnull=False) + class PaidCreate(CreateView): form_class = PaidCreateForm template_name = 'admin/expobanner/paid_create.html' success_url = '/admin/expobanners/paid/list/' + class PaidUpdate(UpdateView): model = Paid form_class = PaidUpdateForm @@ -140,6 +162,52 @@ class PaidStat(DetailView): model = Paid template_name = 'admin/expobanner/paid_stat.html' +# ---------------------------------- +class MainList(ListView): + model = Exposition + template_name = 'admin/expobanner/main_list.html' + paginate_by = settings.ADMIN_PAGINATION + + def get_queryset(self): + return self.model.objects.language().filter(main__isnull=False) + + +class MainCreate(CreateView): + form_class = MainCreateForm + template_name = 'admin/expobanner/paid_create.html' + success_url = '/admin/expobanners/main/list/' + + +class MainUpdate(UpdateView): + model = MainPage + form_class = MainUpdateForm + template_name = 'admin/expobanner/default_form.html' + success_url = '/admin/expobanners/main/list/' + + + def get_context_data(self, **kwargs): + context = super(MainUpdate, self).get_context_data(**kwargs) + obj = self.object + context['exposition'] = obj.get_event() + return context + + +def main_turn(request, pk, status): + main = get_object_or_404(MainPage, pk=pk) + if status == 'on': + main.public = True + else: + main.public = False + main.save() + return HttpResponseRedirect('/admin/expobanners/main/list/') + + +class MainStat(DetailView): + model = MainPage + template_name = 'admin/expobanner/paid_stat.html' + +# ------------------------------------ + class TopList(ListView): model = Exposition @@ -154,3 +222,17 @@ class TopCreate(CreateView): form_class = TopCreateForm template_name = 'admin/expobanner/top_create.html' success_url = '/admin/expobanners/top/list/' + + +class TopUpdate(UpdateView): + model = Top + form_class = TopUpdateForm + template_name = 'admin/expobanner/top_create.html' + success_url = '/admin/expobanners/top/list/' + + + def get_context_data(self, **kwargs): + context = super(TopUpdate, self).get_context_data(**kwargs) + obj = self.object + context['exposition'] = obj.get_event() + return context diff --git a/expobanner/admin_urls.py b/expobanner/admin_urls.py index 5497da30..d91abfca 100644 --- a/expobanner/admin_urls.py +++ b/expobanner/admin_urls.py @@ -8,13 +8,17 @@ urlpatterns = patterns('expobanner.admin', url(r'^banners/url/$', CreateUrl.as_view(), name='expobanner-create_url'), url(r'^banners/group/$', CreateBannerGroup.as_view(), name='expobanner-create_group'), url(r'^banners/banner/$', CreateBanner.as_view(), name='expobanner-create_banner'), + url(r'^banners/link/$', CreateLink.as_view(), name='expobanner-create_link'), url(r'^banners/url/list/$', UrlList.as_view(), name='expobanner-list_url'), url(r'^banners/group/list/$', BannerGroupList.as_view(), name='expobanner-list_group'), url(r'^banners/banner/list/$', BannerList.as_view(), name='expobanner-list_banner'), + url(r'^banners/link/list/$', LinkList.as_view(), name='expobanner-list_link'), url(r'^banners/url/(?P\d+)/edit/$', UrlUpdate.as_view(), name='expobanner-update_url'), url(r'^banners/group/(?P\d+)/edit/$', BannerGroupUpdate.as_view(), name='expobanner-update_group'), url(r'^banners/banner/(?P\d+)/edit/$', BannerUpdate.as_view(), name='expobanner-update_banner'), + url(r'^banners/link/(?P\d+)/edit/$', LinkUpdate.as_view(), name='expobanner-update_link'), url(r'^banners/banner/(?P\d+)/stat/$', BannerStat.as_view(), name='expobanner_stat_banner'), + url(r'^banners/banner/(?P\d+)/stat/$', BannerStat.as_view(), name='expobanner_stat_link'), # paid url(r'^paid/list/$', PaidList.as_view(), name='expobanner-list_paid'), url(r'^paid/(?P\d+)/edit/$', PaidUpdate.as_view(), name='expobanner-update_paid'), @@ -23,7 +27,13 @@ urlpatterns = patterns('expobanner.admin', url(r'^paid/(?P\d+)/stat/$', PaidStat.as_view(), name='expobanner_stat_paid'), # top url(r'^top/list/$', TopList.as_view(), name='expobanner-list_top'), - url(r'^top/(?P\d+)/edit/$', PaidUpdate.as_view(), name='expobanner-update_top'), + url(r'^top/(?P\d+)/edit/$', TopUpdate.as_view(), name='expobanner-update_top'), url(r'^top/$', TopCreate.as_view(), name='expobanner-create_top'), url(r'^top/(?P\d+)/stat/$', PaidStat.as_view(), name='expobanner_stat_top'), + # main page + url(r'^main/list/$', MainList.as_view(), name='expobanner-list_main'), + url(r'^main/(?P\d+)/edit/$', MainUpdate.as_view(), name='expobanner-update_main'), + url(r'^main/$', MainCreate.as_view(), name='expobanner-create_main'), + url(r'^main/turn/(?P\d+)/(?P.*)/$', main_turn, name='expobanner-main-turn'), + url(r'^main/(?P\d+)/stat/$', MainStat.as_view(), name='expobanner_stat_main'), ) \ No newline at end of file diff --git a/expobanner/forms.py b/expobanner/forms.py index 5c3b6473..c51eecfa 100644 --- a/expobanner/forms.py +++ b/expobanner/forms.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- from django import forms -from expobanner.models import URL, BannerGroup, Banner, Paid, Top +from expobanner.models import URL, BannerGroup, Banner, Paid, Top, MainPage from exposition.models import Exposition from country.models import Country from city.models import City @@ -9,6 +9,7 @@ from theme.models import Theme, Tag class UrlCreateForm(forms.ModelForm): verbose = u'Создать урл' + class Meta: model = URL exclude = ['created_at', 'updated_at', 'sites'] @@ -16,12 +17,14 @@ class UrlCreateForm(forms.ModelForm): class BannerCreateGroupForm(forms.ModelForm): verbose = u'Создать групу' + class Meta: model = BannerGroup exclude = ['created_at', 'updated_at', 'speed'] class BannerGroupUpdateForm(BannerCreateGroupForm): verbose = u'Изменить групу' + class Meta: model = BannerGroup exclude = ['created_at', 'updated_at', 'slug', 'speed'] @@ -29,15 +32,28 @@ class BannerGroupUpdateForm(BannerCreateGroupForm): class BannerCreateForm(forms.ModelForm): verbose = u'Создать банер' - #country = forms.ChoiceField(label=u'Страна', choices=[('', ' ')] + [(c.id, c.name) for c in Country.objects.all()], required=False) - #theme = forms.ChoiceField(label=u'Тематика', required=False, - # choices=[('', ' ')] + [(item.id, item.name) for item in Theme.objects.language().all()]) - #city = forms.CharField(label=u'Город', widget=forms.HiddenInput(), required=False) - #tag = forms.CharField(label=u'Тег', widget=forms.HiddenInput(), required=False) class Meta: model = Banner - exclude = ['created_at', 'updated_at', 'often', 'paid', 'stat_pswd'] + exclude = ['created_at', 'updated_at', 'often', 'paid', 'stat_pswd', 'cookie', 'link'] + + +class BannerLinkCreateForm(forms.ModelForm): + verbose = u'Отслеживаемую ссылку' + + class Meta: + model = Banner + fields = ['public', 'alt', 'url'] + exclude = ['created_at', 'updated_at', 'often', 'paid', 'stat_pswd', 'cookie', 'link'] + + def save(self, commit=True): + banner = super(BannerLinkCreateForm, self).save(commit=False) + if commit: + banner.link =True + banner.save() + + return banner + class ClientStatForm(forms.Form): @@ -91,6 +107,36 @@ class PaidCreateForm(forms.ModelForm): raise forms.ValidationError(u'Такой выставки не существует') return expo +class MainCreateForm(forms.ModelForm): + verbose = u'Добавить выставку на главную' + exposition = forms.CharField(label=u'Выставка', widget=forms.HiddenInput()) + + class Meta: + model = MainPage + fields = ['position', 'public'] + + def save(self, commit=True): + main = super(MainCreateForm, self).save(commit=False) + if commit: + expo = self.cleaned_data['exposition'] + link = expo.get_permanent_url() + link_b = Banner.objects.create_for_paid(expo, link, 'main_page_link') + main.link = link_b + main.save() + + expo.main = main + expo.save() + return main + + def clean_exposition(self): + expo_id = self.cleaned_data['exposition'] + try: + expo = Exposition.objects.get(id=expo_id) + except Exposition.DoesNotExist: + raise forms.ValidationError(u'Такой выставки не существует') + return expo + + class PaidUpdateForm(forms.ModelForm): tickets = forms.URLField(label=u'Линк на билеты') participation = forms.URLField(label=u'Линк на участие') @@ -126,17 +172,23 @@ class PaidUpdateForm(forms.ModelForm): return paid +class MainUpdateForm(forms.ModelForm): + class Meta: + model = MainPage + fields = ['position', 'public'] + + class TopCreateForm(forms.ModelForm): verbose = u'Создать выставку в топе' exposition = forms.CharField(label=u'Выставка', widget=forms.HiddenInput()) country = forms.MultipleChoiceField(label=u'Страна', choices=[('', ' ')] + [(c.id, c.name) for c in Country.objects.all()], required=False) theme = forms.MultipleChoiceField(label=u'Тематика', required=False, choices=[('', ' ')] + [(item.id, item.name) for item in Theme.objects.language().all()]) - excluded_cities = forms.CharField(label=u'Город', widget=forms.HiddenInput(), required=False) - excluded_tags = forms.CharField(label=u'Тег', widget=forms.HiddenInput(), required=False) + #excluded_cities = forms.CharField(label=u'Город', widget=forms.HiddenInput(), required=False) + #excluded_tags = forms.CharField(label=u'Тег', widget=forms.HiddenInput(), required=False) class Meta: model = Top - fields = ['catalog', 'position', 'theme', 'excluded_tags', 'country', 'excluded_cities', 'fr', 'to'] + fields = ['catalog', 'position', 'theme', 'country', 'fr', 'to'] def save(self, commit=True): top = super(TopCreateForm, self).save(commit=False) @@ -149,6 +201,9 @@ class TopCreateForm(forms.ModelForm): top.theme.clear() for theme in self.cleaned_data['theme']: top.theme.add(theme) + top.country.clear() + for country in self.cleaned_data['country']: + top.country.add(country) self.save_m2m = save_m2m @@ -178,4 +233,34 @@ class TopCreateForm(forms.ModelForm): expo = Exposition.objects.get(id=expo_id) except Exposition.DoesNotExist: raise forms.ValidationError(u'Такой выставки не существует') - return expo \ No newline at end of file + return expo + + +class TopUpdateForm(forms.ModelForm): + verbose = u'Изменить выставку' + class Meta: + model = Top + fields = ['catalog', 'position', 'theme', 'country', 'fr', 'to'] + + def save(self, commit=True): + top = super(TopUpdateForm, self).save(commit=False) + # Prepare a 'save_m2m' method for the form, + old_save_m2m = self.save_m2m + + def save_m2m(): + old_save_m2m() + # This is where we actually link the pizza with toppings + top.theme.clear() + for theme in self.cleaned_data['theme']: + top.theme.add(theme) + top.country.clear() + for country in self.cleaned_data['country']: + top.country.add(country) + + self.save_m2m = save_m2m + + if commit: + + top.save() + self.save_m2m() + return top diff --git a/expobanner/management/commands/banner_log_update.py b/expobanner/management/commands/banner_log_update.py index 86cfb920..9b795176 100644 --- a/expobanner/management/commands/banner_log_update.py +++ b/expobanner/management/commands/banner_log_update.py @@ -9,7 +9,7 @@ class Command(BaseCommand): def handle(self, *args, **options): today = date.today() # banners - for banner in Banner.objects.select_related('group').filter(public=True, group__isnull=False): + for banner in Banner.objects.select_related('group').filter(public=True): try: logstat = LogStat.objects.get(banner=banner, group=banner.group, date=today) except LogStat.DoesNotExist: diff --git a/expobanner/managers.py b/expobanner/managers.py index 42e82670..51f988af 100644 --- a/expobanner/managers.py +++ b/expobanner/managers.py @@ -51,7 +51,7 @@ class BannerGroupCached(models.Manager): for group in groups: result[group.slug] = list(group.banners.prefetch_related('urls', 'theme', 'country')\ .filter(public=True, fr__lte=today)\ - .filter(Q(to__gte=today) | Q(to__isnull=True)).extra({})) + .filter(Q(to__gte=today) | Q(to__isnull=True))) cache.set(key, result, 70) return result @@ -71,7 +71,9 @@ class TopCached(models.Manager): key = 'expo_b_top_all' result = cache.get(key) if not result: - result = list(self.prefetch_related('theme', 'country', 'excluded_tags', 'excluded_cities').all()) + today = date.today() + result = list(self.prefetch_related('theme', 'country', 'excluded_tags', 'excluded_cities'). + filter(fr__lte=today).filter(Q(to__gte=today) | Q(to__isnull=True))) cache.set(key, result, 80) return result \ No newline at end of file diff --git a/expobanner/models.py b/expobanner/models.py index 12e1d066..2b84e793 100644 --- a/expobanner/models.py +++ b/expobanner/models.py @@ -97,6 +97,7 @@ class Banner(models.Model, StatMixin): flash = models.BooleanField(verbose_name=_('Flash?'), default=False) popup = models.BooleanField(verbose_name=_('Popup?'), default=False) paid = models.BooleanField(verbose_name=_('Is Paid event link?'), default=False) + link = models.BooleanField(verbose_name=_('Is simple link?'), default=False) # for detecting popups cookie = models.CharField(max_length=30, blank=True, null=True, default=settings.DEFAULT_POPUP_COOKIE) @@ -223,9 +224,10 @@ class Paid(models.Model, StatMixin): ordering = ['-public'] def get_event(self): - if self.exposition_set.all().exists(): + try: return self.exposition_set.all()[0] - return None + except IndexError: + return None class PaidStat(models.Model): @@ -272,6 +274,25 @@ class TopStat(models.Model): views = models.PositiveIntegerField(default=0) clicks = models.PositiveIntegerField(default=0) + +class MainPage(models.Model, StatMixin): + link = models.ForeignKey(Banner) + position = models.PositiveIntegerField(blank=True, default=2, null=True, verbose_name=u'Позиция') + public = models.BooleanField(default=True, verbose_name=u'Активная') + stat_pswd = models.CharField(max_length=16) + created = models.DateTimeField(auto_now_add=True) + modified = models.DateTimeField(auto_now=True) + + class Meta: + ordering = ['-public'] + + def get_event(self): + try: + return self.exposition_set.all()[0] + except IndexError: + return None + + def generatePassword(length=5): """ generate random password diff --git a/expobanner/views.py b/expobanner/views.py index 512292e0..9e634464 100644 --- a/expobanner/views.py +++ b/expobanner/views.py @@ -44,7 +44,12 @@ def get_banners(request): result = [] set_cookie = None # get banners for all groups + places = request.GET.getlist('places', []) + for group, banners in group_banners.iteritems(): + if group not in places: + # on this page there is no such group + continue banner = get_banner_by_params(banners, good_urls, params, request) if banner: if banner.html: diff --git a/exposition/manager.py b/exposition/manager.py index 1c9deec7..bf08f166 100644 --- a/exposition/manager.py +++ b/exposition/manager.py @@ -10,6 +10,7 @@ class ClientManager(TranslationManager): def upcoming(self): return self.filter(data_begin__gte=datetime.datetime.now().date()) + """ from exposition.models import Exposition diff --git a/exposition/models.py b/exposition/models.py index 76b7177f..3b09d994 100644 --- a/exposition/models.py +++ b/exposition/models.py @@ -158,6 +158,7 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): paid_new = models.ForeignKey('expobanner.Paid', blank=True, null=True, on_delete=models.SET_NULL) top = models.ForeignKey('expobanner.Top', blank=True, null=True, on_delete=models.SET_NULL) + main = models.ForeignKey('expobanner.MainPage', blank=True, null=True, on_delete=models.SET_NULL) #set manager of this model(fisrt manager is default) objects = ExpoManager() enable = ClientManager() @@ -306,6 +307,12 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): def theme_ids(self): return [item['id'] for item in self.theme.all().values('id')] + def get_main_link(self): + if self.main: + return self.main.link.get_click_link() + else: + return self.get_permanent_url() + class Statistic(TranslatableModel): exposition = models.ForeignKey(Exposition, related_name='statistic') diff --git a/functions/models_methods.py b/functions/models_methods.py index 35121ea9..064667ac 100644 --- a/functions/models_methods.py +++ b/functions/models_methods.py @@ -25,6 +25,17 @@ class ExpoManager(TranslationManager): except: return None + def expo_main(self): + lang = translation.get_language() + key = 'expo_main_page_key_%s'%lang + result = cache.get(key) + if not result: + result = list(self.language(lang).select_related('country', 'city', 'place', 'main').prefetch_related('tag').filter(main__isnull=False)) + cache.set(key, result, 45) + + return result + + class CityManager(TranslationManager): cache_time = 600 diff --git a/proj/views.py b/proj/views.py index 0db0e5bd..cfb06577 100644 --- a/proj/views.py +++ b/proj/views.py @@ -77,8 +77,11 @@ class MainPageView(JitterCacheMixin, TemplateView): def get_context_data(self, **kwargs): context = super(MainPageView, self).get_context_data(**kwargs) - - events = Exposition.objects.language().select_related('country', 'city', 'place').filter(main_page__gte=1).order_by('-main_page') + ev = Exposition.objects.expo_main() + events = sorted(ev, key=lambda x: x.main.position) + # update main_page counter + for event in events: + event.main.link.log(self.request, 1) exposition_themes = Theme.objects.language().order_by('-main_page').filter(types=Theme.types.exposition)[:6] conference_themes = Theme.objects.language().order_by('-main_page').filter(types=Theme.types.conference)[:6] diff --git a/templates/admin/expobanner/banners_control.html b/templates/admin/expobanner/banners_control.html index e307cecd..5d4214fb 100644 --- a/templates/admin/expobanner/banners_control.html +++ b/templates/admin/expobanner/banners_control.html @@ -13,6 +13,9 @@
      +
      @@ -27,6 +30,9 @@
      +
      diff --git a/templates/admin/expobanner/link_list.html b/templates/admin/expobanner/link_list.html new file mode 100644 index 00000000..278ad845 --- /dev/null +++ b/templates/admin/expobanner/link_list.html @@ -0,0 +1,38 @@ +{% extends 'base.html' %} + +{% block body %} + +
      +
      +

      {{ verbose }}

      +
      +
      + {% block list_table %} + + + + + + + + + + + + {% for item in object_list %} + + + + + + + {% endfor %} + +
      Объектссылка для отслеживания  
      {{ item }}{{request.get_host}}{{ item.get_click_link }}Изменить Статистика
      + {% endblock %} +
      + {# pagination #} + {% include 'admin/includes/admin_pagination.html' with page_obj=object_list %} +
      + +{% endblock %} \ No newline at end of file diff --git a/templates/admin/expobanner/main_list.html b/templates/admin/expobanner/main_list.html new file mode 100644 index 00000000..0b018442 --- /dev/null +++ b/templates/admin/expobanner/main_list.html @@ -0,0 +1,38 @@ +{% extends 'base.html' %} + +{% block body %} + +
      +
      +

      Список выставок на главной

      +
      +
      + {% block list_table %} + Добавить выставку + + + + + + + + + + + {% for item in object_list %} + + + + + + + {% endfor %} + +
      Выставка   
      {{ item }}Изменить {% if item.main.public %}отключить{% else %}включить{% endif %} Статистика
      + {% endblock %} +
      + {# pagination #} + {% include 'admin/includes/admin_pagination.html' with page_obj=object_list %} +
      + +{% endblock %} \ No newline at end of file diff --git a/templates/admin/expobanner/top_create.html b/templates/admin/expobanner/top_create.html index 4479d055..648ea992 100644 --- a/templates/admin/expobanner/top_create.html +++ b/templates/admin/expobanner/top_create.html @@ -61,7 +61,7 @@ $(function(){
      -

      {{ form.verbose }}

      +

      {{ form.verbose }} {% if object %}{{ object.get_event }}{% endif %}

      {% for field in form %} diff --git a/templates/client/blank.html b/templates/client/blank.html index 19a075c1..6d3514b9 100644 --- a/templates/client/blank.html +++ b/templates/client/blank.html @@ -78,16 +78,7 @@ This template include basic anf main styles and js files, }); - - - + @@ -237,5 +228,20 @@ This template include basic anf main styles and js files, {% endif %} + + + + diff --git a/templates/client/includes/index/main_events.html b/templates/client/includes/index/main_events.html index f39da5c8..17368ba8 100644 --- a/templates/client/includes/index/main_events.html +++ b/templates/client/includes/index/main_events.html @@ -12,7 +12,7 @@
    • - +
      {{ event.name|safe }}
      {% include 'client/includes/index/main_date_block.html' with obj=event %} From 5964cdafc0b751d8f0be26b0b4df4e73ac49bc7e Mon Sep 17 00:00:00 2001 From: re0ne Date: Thu, 3 Sep 2015 15:25:02 +0300 Subject: [PATCH 15/45] Changed url generation --- templates/client/blank.html | 6 +----- .../client/static_client/js/rejs/banners.js | 18 ++++++++++-------- templates/client/static_client/js/rejs/tops.js | 13 +++++-------- 3 files changed, 16 insertions(+), 21 deletions(-) diff --git a/templates/client/blank.html b/templates/client/blank.html index 6d3514b9..2a28c17f 100644 --- a/templates/client/blank.html +++ b/templates/client/blank.html @@ -231,15 +231,11 @@ This template include basic anf main styles and js files, diff --git a/templates/client/static_client/js/rejs/banners.js b/templates/client/static_client/js/rejs/banners.js index fc266152..70e4998b 100644 --- a/templates/client/static_client/js/rejs/banners.js +++ b/templates/client/static_client/js/rejs/banners.js @@ -4,18 +4,22 @@ var API_URL_ROOT = "/expo-b/get-banners/"; var getUrl = function () { - var catalog = ""; + var search = []; var parts = /^\/([^\/]+)(?:\/|$)/i.exec(location.pathname); if (parts) { - catalog = parts[1]; + search.push("catalog=" + encodeURIComponent(parts[1])); + } else { + search.push("catalog="); } - var data = window.sendData; + var elements = $("[id^=\"expo_b_\"]"); + for (var j = 0; j < elements.length; j++) { + search.push("places=" + encodeURIComponent($(elements[j]).attr("id"))); + } + var data = window.sendData; if (data instanceof Object) { - var search = ["catalog=" + catalog]; - for (var key in data) { if (data.hasOwnProperty(key)) { var value = data[key]; @@ -29,11 +33,9 @@ } } } - - return API_URL_ROOT + "?" + search.join("&"); } - return API_URL_ROOT; + return API_URL_ROOT + "?" + search.join("&"); }; var getBanners = function (url, callback) { diff --git a/templates/client/static_client/js/rejs/tops.js b/templates/client/static_client/js/rejs/tops.js index db87aa6a..31bee27b 100644 --- a/templates/client/static_client/js/rejs/tops.js +++ b/templates/client/static_client/js/rejs/tops.js @@ -5,18 +5,17 @@ var PARENT_ID = "expo_top_events"; var getUrl = function () { - var catalog = ""; + var search = []; var parts = /^\/([^\/]+)(?:\/|$)/i.exec(location.pathname); if (parts) { - catalog = parts[1]; + search.push("catalog=" + encodeURIComponent(parts[1])); + } else { + search.push("catalog="); } var data = window.sendData; - if (data instanceof Object) { - var search = ["catalog=" + catalog]; - for (var key in data) { if (data.hasOwnProperty(key)) { var value = data[key]; @@ -30,11 +29,9 @@ } } } - - return API_URL_ROOT + "?" + search.join("&"); } - return API_URL_ROOT; + return API_URL_ROOT + "?" + search.join("&"); }; var getTops = function (url, callback) { From 592ff39e29d98a5363903341a2cade27828ece8f Mon Sep 17 00:00:00 2001 From: re0ne Date: Thu, 3 Sep 2015 17:38:17 +0300 Subject: [PATCH 16/45] Fixed calendar button --- templates/client/static_client/js/_modules/block.common.js | 2 +- .../client/static_client/js_min/_modules/block.common.min.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/client/static_client/js/_modules/block.common.js b/templates/client/static_client/js/_modules/block.common.js index c61cda55..9dad6235 100644 --- a/templates/client/static_client/js/_modules/block.common.js +++ b/templates/client/static_client/js/_modules/block.common.js @@ -354,7 +354,7 @@ if (EXPO.common){ $staticFields = $('.'+validErrorClass); $waiter = $('#wait-ajax:not(.absolute)').css({'z-index': '8031'}); - $('.'+addClass+', .'+remClass).on('click', function(event){ + $('body').on('click', '.' + addClass + ', .' + remClass, function(event) { addText = self.opt.addCalendarText; remText = self.opt.removeCalendarText; event.preventDefault(); diff --git a/templates/client/static_client/js_min/_modules/block.common.min.js b/templates/client/static_client/js_min/_modules/block.common.min.js index bbe0ad18..ec08a27c 100644 --- a/templates/client/static_client/js_min/_modules/block.common.min.js +++ b/templates/client/static_client/js_min/_modules/block.common.min.js @@ -1 +1 @@ -var EXPO=EXPO||{};EXPO.common?console.warn("WARNING: EXPO.common is already defined!"):EXPO.common=function(){var e,t={},s=function(e,t){return(e.matches||e.matchesSelector||e.msMatchesSelector||e.mozMatchesSelector||e.webkitMatchesSelector||e.oMatchesSelector).call(e,t)};t.opt={};var r=function(e){this.fields=[],this.allIsClear=!1,this.ajaxUrl=e.getAttribute("action"),this.DOM=e,this._initFields(),this._eventController()};return r.prototype={_eventController:function(){var e=this;this.DOM.addEventListener?this.DOM.addEventListener("submit",function(t){return e.validate(),t.preventDefault(),!1},!1):this.DOM.attachEvent&&this.DOM.attachEvent("onsubmit",function(t){return e.validate(),t.preventDefault(),!1})},_initFields:function(){},validate:function(){var t,s=this,r=$(s.DOM).serialize(),o={},a="err-message-box",i=s.DOM.querySelector("."+a),n=i.innerHTML,l=function(r){var a,l;if(t=r,s.unHighlightFields(),t.success)i&&EXPO.common.removeClass(i,"active"),$(s.DOM).attr("id")==EXPO.common.opt.registerFormId?(a=$("#"+EXPO.common.opt.successRegisterId),l=$.trim($("#id_email",s.DOM).val()),$("."+EXPO.common.opt.resendLetterClass,a).attr("data-email",l),$.fancybox.close(!0),$.fancybox("#"+EXPO.common.opt.successRegisterId)):window.location.reload();else{EXPO.common.removeClass(i,"active"),o={},s.fields=[];for(var c in t.errors)t.errors.hasOwnProperty(c)&&("__all__"!=c?(o={name:c,id:"id_"+c,errorText:t.errors[c]},s.fields.push(o)):i&&(EXPO.common.addClass(i,"active"),n.indexOf(t.errors[c])<0&&i.insertAdjacentHTML("beforeend",t.errors[c]+" ")));s.highliteFields()}e.hide()};s.unHighlightFields(),e.show(),EXPO.common.postRequest(r,s.ajaxUrl,l)},highliteFields:function(){for(var e,t,s=0;s").attr("class","error").append(s);r.parent().addClass("required err").prepend(o)}))};"post"==o?$.post(s,r,a):$.get(s,r,a)}),$("form.simple-validate-register").on("submit",function(e){e.preventDefault();var t=$(this),s=t.attr("action"),r=$(this).serialize(),o=t.attr("method"),a=$("#pw-reg-complete"),i=$(".resend-letter",a),n=$.trim($("#id_email",t).val()),l=function(e){e.success?($(".error",t).remove(),$(".required.err",t).removeClass("required err"),$("input:text",t).val(""),$(".pwf-line .msg-help",t).each(function(){var e=$(this),t=e.attr("data-default");""!=$.trim(t)&&e.html("").text(t)}),i.attr("data-email",n),$.fancybox.close(!0),$.fancybox("#pw-reg-complete")):($(".error",t).remove(),$(".required.err",t).removeClass("required err"),$(".pwf-line .msg-help",t).each(function(){var e=$(this),t=e.attr("data-default");""!=$.trim(t)&&e.html("").text(t)}),$.each(e.errors,function(e,s){var r=$("#id_"+e,t),o=$("
      ").attr("class","error").append(s),a=r.closest(".pwf-line").find(".msg-help");r.parent().addClass("required err"),a.attr("data-default",a.text()),a.text("").prepend(o)}))};"post"==o?$.post(s,r,l):$.get(s,r,l)})}),$(function(){$.fancybox.helpers.overlay.overlay=$('
      ').appendTo("body"),$.fn.customRadioCheck=function(){return $(this).each(function(){function e(){if("radio"==s){var e=t.attr("name"),r=$('input[type="radio"]').filter('[name="'+e+'"]');r.each(function(){var e=$(this).closest(".custom-radio");e.removeClass("checked"),$(this).is(":checked")&&e.addClass("checked")})}else t.prop("checked")?o.addClass("checked"):o.removeClass("checked");t.trigger("blur")}var t=$(this),s=t.attr("type"),r=t.closest("label"),o=t.wrap("").parent();r.addClass("custom-radio-check"),e(),t.on("change",e)})},$("input[type='checkbox'], input[type='radio']").customRadioCheck()}),function(e){e.fn.inlineStyle=function(t){var s,r=this.attr("style");return r&&r.split(";").forEach(function(r){var o=r.split(":");e.trim(o[0])===t&&(s=o[1])}),s}}(jQuery),t.init=function(t){$.extend(this.opt,t);{var s,r=this,o=this.opt.addCalendarClass,a=this.opt.removeCalendarClass,i=this.opt.addCalendarText,n=this.opt.removeCalendarText,l=r.opt.staticValidation.errorClass,c=r.opt.staticValidation.containerClass;r.opt.staticValidation.blobClass}$(function(){s=$("."+l),e=$("#wait-ajax:not(.absolute)").css({"z-index":"8031"}),$("."+o+", ."+a).on("click",function(e){i=r.opt.addCalendarText,n=r.opt.removeCalendarText,e.preventDefault();var t=$(this),s=t.attr("href");$.get(s,function(e){e.not_authorized?$.fancybox.open("#"+r.opt.loginModalId):e.success&&(e.in?t.removeClass(o).addClass(a).text(n):t.removeClass(a).addClass(o).text(i))})}),s.length&&s.find("input:text").on("keyup",function(){""!=$.trim($(this).val())?$(this).closest("."+l).removeClass(l):$(this).closest("."+c).addClass(l)});for(var t=0;t=0;)r=r.replace(" "+s+" "," ");e.className=r.replace(/^\s+|\s+$/g," ")}return e},t.closest=function(e,s){for(var r=function(s){return t.hasClass(e,s)};e;){if(r(s))return e;e=e.parentNode}},t.children=function(e,t){for(var r,o=[],r=0,a=e.childNodes.length;a>r;++r)s(e.childNodes[r],t)&&o.push(e.childNodes[r]);return o},t.postRequest=function(e,t,s){e||(e=""),$.ajax({type:"POST",url:t,data:e,success:function(e){return"function"!=typeof s?e:(console.log("data recieved:"),console.log(e),console.log(JSON.stringify(e)),s(e),void 0)}})},t.getRequest=function(e,t,s){e||(e=""),$.ajax({type:"GET",url:t,data:e,success:function(e){return"function"!=typeof s?e:(console.log("data recieved:"),console.log(e),console.log(JSON.stringify(e)),s(e),void 0)}})},t.Modal=function(e){var t=this;this.id,this.opt=e,this.DOMwrap=document.getElementById(e.id),this.DOM=this.DOMwrap.querySelector("."+e.wrapClass),$(".modal-close",this.DOM).on("click",function(){t.close()}),$(".modals > *").on("click",function(e){$(e.target.parentNode).find(t.DOMwrap).length&&t.close()})},t.Modal.prototype={pullData:function(e){this.id=e.substr(1),$(e).show().siblings().hide(),this.refresh()},open:function(){$(this.DOMwrap).fadeIn(),t.addClass(document.body,"ov-hidden")},close:function(){$(this.DOMwrap).fadeOut(),t.removeClass(document.body,"ov-hidden")},refresh:function(){var e=this;e.DOM.style.width=e.opt.size[e.id].width+"px",e.DOM.style.minHeight=e.opt.size[e.id].height+"px",e.DOM.style.marginLeft=-(e.opt.size[e.id].width/2)+"px",e.DOM.style.marginTop=-(e.opt.size[e.id].height/2)+"px"}},t.SEOhide={seoContent:{},seoHrefs:{},decode:function(e){for(var t=$("["+e+"]"),s=0,r=t.length;r>s;s++){var o=t.eq(s),a=o.attr("data-hash");switch(o.data("type")){case"href":o.attr("href",Base64.decode(this.seoHrefs[a]));break;case"content":o.replaceWith(Base64.decode(this.seoContent[a]))}}}},t.nl2br=function(e,t){var s=t||"undefined"==typeof t?"
      ":"
      ";return(e+"").replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g,"$1"+s+"$2")},t}(); \ No newline at end of file +var EXPO=EXPO||{};EXPO.common?console.warn("WARNING: EXPO.common is already defined!"):EXPO.common=function(){var e,t={},s=function(e,t){return(e.matches||e.matchesSelector||e.msMatchesSelector||e.mozMatchesSelector||e.webkitMatchesSelector||e.oMatchesSelector).call(e,t)};t.opt={};var r=function(e){this.fields=[],this.allIsClear=!1,this.ajaxUrl=e.getAttribute("action"),this.DOM=e,this._initFields(),this._eventController()};return r.prototype={_eventController:function(){var e=this;this.DOM.addEventListener?this.DOM.addEventListener("submit",function(t){return e.validate(),t.preventDefault(),!1},!1):this.DOM.attachEvent&&this.DOM.attachEvent("onsubmit",function(t){return e.validate(),t.preventDefault(),!1})},_initFields:function(){},validate:function(){var t,s=this,r=$(s.DOM).serialize(),o={},a="err-message-box",i=s.DOM.querySelector("."+a),n=i.innerHTML,l=function(r){var a,l;if(t=r,s.unHighlightFields(),t.success)i&&EXPO.common.removeClass(i,"active"),$(s.DOM).attr("id")==EXPO.common.opt.registerFormId?(a=$("#"+EXPO.common.opt.successRegisterId),l=$.trim($("#id_email",s.DOM).val()),$("."+EXPO.common.opt.resendLetterClass,a).attr("data-email",l),$.fancybox.close(!0),$.fancybox("#"+EXPO.common.opt.successRegisterId)):window.location.reload();else{EXPO.common.removeClass(i,"active"),o={},s.fields=[];for(var c in t.errors)t.errors.hasOwnProperty(c)&&("__all__"!=c?(o={name:c,id:"id_"+c,errorText:t.errors[c]},s.fields.push(o)):i&&(EXPO.common.addClass(i,"active"),n.indexOf(t.errors[c])<0&&i.insertAdjacentHTML("beforeend",t.errors[c]+" ")));s.highliteFields()}e.hide()};s.unHighlightFields(),e.show(),EXPO.common.postRequest(r,s.ajaxUrl,l)},highliteFields:function(){for(var e,t,s=0;s").attr("class","error").append(s);r.parent().addClass("required err").prepend(o)}))};"post"==o?$.post(s,r,a):$.get(s,r,a)}),$("form.simple-validate-register").on("submit",function(e){e.preventDefault();var t=$(this),s=t.attr("action"),r=$(this).serialize(),o=t.attr("method"),a=$("#pw-reg-complete"),i=$(".resend-letter",a),n=$.trim($("#id_email",t).val()),l=function(e){e.success?($(".error",t).remove(),$(".required.err",t).removeClass("required err"),$("input:text",t).val(""),$(".pwf-line .msg-help",t).each(function(){var e=$(this),t=e.attr("data-default");""!=$.trim(t)&&e.html("").text(t)}),i.attr("data-email",n),$.fancybox.close(!0),$.fancybox("#pw-reg-complete")):($(".error",t).remove(),$(".required.err",t).removeClass("required err"),$(".pwf-line .msg-help",t).each(function(){var e=$(this),t=e.attr("data-default");""!=$.trim(t)&&e.html("").text(t)}),$.each(e.errors,function(e,s){var r=$("#id_"+e,t),o=$("
      ").attr("class","error").append(s),a=r.closest(".pwf-line").find(".msg-help");r.parent().addClass("required err"),a.attr("data-default",a.text()),a.text("").prepend(o)}))};"post"==o?$.post(s,r,l):$.get(s,r,l)})}),$(function(){$.fancybox.helpers.overlay.overlay=$('
      ').appendTo("body"),$.fn.customRadioCheck=function(){return $(this).each(function(){function e(){if("radio"==s){var e=t.attr("name"),r=$('input[type="radio"]').filter('[name="'+e+'"]');r.each(function(){var e=$(this).closest(".custom-radio");e.removeClass("checked"),$(this).is(":checked")&&e.addClass("checked")})}else t.prop("checked")?o.addClass("checked"):o.removeClass("checked");t.trigger("blur")}var t=$(this),s=t.attr("type"),r=t.closest("label"),o=t.wrap("").parent();r.addClass("custom-radio-check"),e(),t.on("change",e)})},$("input[type='checkbox'], input[type='radio']").customRadioCheck()}),function(e){e.fn.inlineStyle=function(t){var s,r=this.attr("style");return r&&r.split(";").forEach(function(r){var o=r.split(":");e.trim(o[0])===t&&(s=o[1])}),s}}(jQuery),t.init=function(t){$.extend(this.opt,t);{var s,r=this,o=this.opt.addCalendarClass,a=this.opt.removeCalendarClass,i=this.opt.addCalendarText,n=this.opt.removeCalendarText,l=r.opt.staticValidation.errorClass,c=r.opt.staticValidation.containerClass;r.opt.staticValidation.blobClass}$(function(){s=$("."+l),e=$("#wait-ajax:not(.absolute)").css({"z-index":"8031"}),$("body").on("click","."+o+", ."+a,function(e){i=r.opt.addCalendarText,n=r.opt.removeCalendarText,e.preventDefault();var t=$(this),s=t.attr("href");$.get(s,function(e){e.not_authorized?$.fancybox.open("#"+r.opt.loginModalId):e.success&&(e.in?t.removeClass(o).addClass(a).text(n):t.removeClass(a).addClass(o).text(i))})}),s.length&&s.find("input:text").on("keyup",function(){""!=$.trim($(this).val())?$(this).closest("."+l).removeClass(l):$(this).closest("."+c).addClass(l)});for(var t=0;t=0;)r=r.replace(" "+s+" "," ");e.className=r.replace(/^\s+|\s+$/g," ")}return e},t.closest=function(e,s){for(var r=function(s){return t.hasClass(e,s)};e;){if(r(s))return e;e=e.parentNode}},t.children=function(e,t){for(var r,o=[],r=0,a=e.childNodes.length;a>r;++r)s(e.childNodes[r],t)&&o.push(e.childNodes[r]);return o},t.postRequest=function(e,t,s){e||(e=""),$.ajax({type:"POST",url:t,data:e,success:function(e){return"function"!=typeof s?e:(console.log("data recieved:"),console.log(e),console.log(JSON.stringify(e)),s(e),void 0)}})},t.getRequest=function(e,t,s){e||(e=""),$.ajax({type:"GET",url:t,data:e,success:function(e){return"function"!=typeof s?e:(console.log("data recieved:"),console.log(e),console.log(JSON.stringify(e)),s(e),void 0)}})},t.Modal=function(e){var t=this;this.id,this.opt=e,this.DOMwrap=document.getElementById(e.id),this.DOM=this.DOMwrap.querySelector("."+e.wrapClass),$(".modal-close",this.DOM).on("click",function(){t.close()}),$(".modals > *").on("click",function(e){$(e.target.parentNode).find(t.DOMwrap).length&&t.close()})},t.Modal.prototype={pullData:function(e){this.id=e.substr(1),$(e).show().siblings().hide(),this.refresh()},open:function(){$(this.DOMwrap).fadeIn(),t.addClass(document.body,"ov-hidden")},close:function(){$(this.DOMwrap).fadeOut(),t.removeClass(document.body,"ov-hidden")},refresh:function(){var e=this;e.DOM.style.width=e.opt.size[e.id].width+"px",e.DOM.style.minHeight=e.opt.size[e.id].height+"px",e.DOM.style.marginLeft=-(e.opt.size[e.id].width/2)+"px",e.DOM.style.marginTop=-(e.opt.size[e.id].height/2)+"px"}},t.SEOhide={seoContent:{},seoHrefs:{},decode:function(e){for(var t=$("["+e+"]"),s=0,r=t.length;r>s;s++){var o=t.eq(s),a=o.attr("data-hash");switch(o.data("type")){case"href":o.attr("href",Base64.decode(this.seoHrefs[a]));break;case"content":o.replaceWith(Base64.decode(this.seoContent[a]))}}}},t.nl2br=function(e,t){var s=t||"undefined"==typeof t?"
      ":"
      ";return(e+"").replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g,"$1"+s+"$2")},t}(); \ No newline at end of file From 6b94fc665df4448499fa7385f3f4ed3bab948939 Mon Sep 17 00:00:00 2001 From: Kotiuk Nazarii Date: Fri, 4 Sep 2015 02:14:37 +0300 Subject: [PATCH 17/45] ExpoBanner. Finale --- expobanner/admin.py | 8 ++- expobanner/forms.py | 8 ++- expobanner/models.py | 1 + expobanner/utils.py | 56 +++++++++++++-- expobanner/views.py | 21 +++--- exposition/forms.py | 8 +-- exposition/models.py | 6 ++ exposition/views.py | 4 +- proj/urls.py | 1 - settings/views.py | 22 +----- templates/admin/expobanner/default_form.html | 1 + templates/admin/expobanner/link_list.html | 2 +- templates/admin/expobanner/main_list.html | 2 + templates/admin/expobanner/main_stat.html | 48 +++++++++++++ templates/admin/expobanner/paid_stat.html | 4 ++ templates/admin/includes/admin_nav.html | 1 + templates/client/base_catalog.html | 2 +- templates/client/blank.html | 69 ------------------ templates/client/expobanners/banner_stat.html | 28 ++++++++ templates/client/expobanners/paid_stat.html | 30 +++++++- .../client/exposition/exposition_detail.html | 71 +------------------ templates/client/includes/banners/popup.html | 2 +- .../client/includes/exposition/expo_top.html | 6 +- 23 files changed, 206 insertions(+), 195 deletions(-) create mode 100644 templates/admin/expobanner/main_stat.html diff --git a/expobanner/admin.py b/expobanner/admin.py index 40287996..311c83f8 100644 --- a/expobanner/admin.py +++ b/expobanner/admin.py @@ -204,7 +204,13 @@ def main_turn(request, pk, status): class MainStat(DetailView): model = MainPage - template_name = 'admin/expobanner/paid_stat.html' + template_name = 'admin/expobanner/main_stat.html' + + def get_context_data(self, **kwargs): + context = super(MainStat, self).get_context_data(**kwargs) + obj = self.object + context['stats'] = obj.link.banner_stat.all() + return context # ------------------------------------ diff --git a/expobanner/forms.py b/expobanner/forms.py index c51eecfa..85f479ea 100644 --- a/expobanner/forms.py +++ b/expobanner/forms.py @@ -3,7 +3,7 @@ from django import forms from expobanner.models import URL, BannerGroup, Banner, Paid, Top, MainPage from exposition.models import Exposition from country.models import Country -from city.models import City +from ckeditor.widgets import CKEditorWidget from theme.models import Theme, Tag @@ -32,7 +32,7 @@ class BannerGroupUpdateForm(BannerCreateGroupForm): class BannerCreateForm(forms.ModelForm): verbose = u'Создать банер' - + text = forms.CharField(label=u'Текст', required=False, widget=CKEditorWidget) class Meta: model = Banner exclude = ['created_at', 'updated_at', 'often', 'paid', 'stat_pswd', 'cookie', 'link'] @@ -209,10 +209,14 @@ class TopCreateForm(forms.ModelForm): if commit: expo = self.cleaned_data['exposition'] + link = expo.get_permanent_url() + link_b = Banner.objects.create_for_paid(expo, link, 'top_link') + top.link = link_b top.save() self.save_m2m() expo.top = top expo.save() + return top def clean_theme(self): diff --git a/expobanner/models.py b/expobanner/models.py index 2b84e793..7091af0e 100644 --- a/expobanner/models.py +++ b/expobanner/models.py @@ -243,6 +243,7 @@ class PaidStat(models.Model): class Top(models.Model, StatMixin): + link = models.ForeignKey(Banner) catalog = models.CharField(max_length=16, verbose_name=u'Каталог для топа') position = models.PositiveIntegerField(blank=True, default=2, null=True, verbose_name=u'Позиция') theme = models.ManyToManyField('theme.Theme', blank=True, null=True, verbose_name=u'Тематики') diff --git a/expobanner/utils.py b/expobanner/utils.py index b87e1c7f..f3e457cf 100644 --- a/expobanner/utils.py +++ b/expobanner/utils.py @@ -1,5 +1,7 @@ # -*- coding: utf-8 -*- +import re import random +import datetime from django.db import connection def get_client_ip(request): @@ -10,6 +12,32 @@ def get_client_ip(request): ip = request.META.get('REMOTE_ADDR') return ip +def get_referer_view(request, default=None): + ''' + Return the referer view of the current request + + Example: + + def some_view(request): + ... + referer_view = get_referer_view(request) + return HttpResponseRedirect(referer_view, '/accounts/login/') + ''' + + # if the user typed the url directly in the browser's address bar + referer = request.META.get('HTTP_REFERER') + if not referer: + return default + + # remove the protocol and split the url at the slashes + referer = re.sub('^https?:\/\/', '', referer).split('/') + if referer[0] != request.META.get('SERVER_NAME'): + return default + + # add the slash at the relative path's view and finished + referer = u'/' + u'/'.join(referer[1:]) + return referer + def get_by_sort(banner_list): max_sort = 0 for banner in banner_list: @@ -19,6 +47,15 @@ def get_by_sort(banner_list): result = [banner for banner in banner_list if banner.sort == max_sort] return result +def set_cookie(response, key, value, days_expire = 7): + if days_expire is None: + max_age = 365 * 24 * 60 * 60 #one year + else: + max_age = days_expire * 24 * 60 * 60 + expires = datetime.datetime.strftime(datetime.datetime.utcnow() + datetime.timedelta(seconds=max_age), "%a, %d-%b-%Y %H:%M:%S GMT") + response.set_cookie(key, value, max_age=max_age, expires=expires) + return response + def get_banner_by_params(banners_list, urls, params, request): thematic_banners = [] @@ -69,14 +106,18 @@ def get_banner_by_params(banners_list, urls, params, request): continue if thematic_banners: - return random.choice(thematic_banners) - if url_banners: - return random.choice(url_banners) - return None - - #print('END. NUMBER of queries = %d'%len(connection.queries)) + result = thematic_banners + elif url_banners: + result = url_banners + else: + result = [] + if result: + sort_result = get_by_sort(result) + return random.choice(sort_result) + else: + return None -def get_top_events(tops, params): +def get_top_events(tops, params, request): catalog = params.get('catalog') country = params.get('country', '') theme = params.get('theme', []) @@ -113,5 +154,6 @@ def get_top_events(tops, params): for top in sorted_top: event = top.get_event() if event: + top.link.log(request, 1) events.append(event) return events \ No newline at end of file diff --git a/expobanner/views.py b/expobanner/views.py index 9e634464..0c5a0438 100644 --- a/expobanner/views.py +++ b/expobanner/views.py @@ -6,7 +6,7 @@ from django.shortcuts import redirect, get_object_or_404 from django.shortcuts import render_to_response from django.template import RequestContext from .models import Banner, BannerGroup, URL, Top -from expobanner.utils import get_by_sort, get_banner_by_params, get_client_ip, get_top_events +from expobanner.utils import get_banner_by_params, get_client_ip, get_top_events, get_referer_view, set_cookie def click(request, banner_id): @@ -21,8 +21,7 @@ def view(request, banner_id): return redirect(banner.img.url) def get_banners(request): - #url = request.GET.get('url', '/') - url = request.META.get('HTTP_REFERER', '/') + url = get_referer_view(request, default='/') # get urls by current url urls = URL.cached.all() good_urls = [] @@ -42,7 +41,7 @@ def get_banners(request): group_banners = BannerGroup.cached.group_banners() result = [] - set_cookie = None + cookie = None # get banners for all groups places = request.GET.getlist('places', []) @@ -59,7 +58,10 @@ def get_banners(request): is_img = False else: text = '' - img = banner.img.url + try: + img = banner.img.url + except ValueError: + continue alt = banner.alt is_img = True result.append({'id': group, @@ -73,12 +75,13 @@ def get_banners(request): 'text': text }) if banner.popup: - set_cookie = banner.cookie + cookie = banner.cookie # add view log banner.log(request, 1) response = HttpResponse(json.dumps(result, indent=4), content_type='application/json') - if set_cookie: - response.set_cookie(set_cookie, 1) + if cookie: + response = set_cookie(response, cookie, '1') + return response def get_top(request): @@ -89,6 +92,6 @@ def get_top(request): 'catalog': request.GET.get('catalog')} tops = Top.cached.all() - events = get_top_events(tops, params) + events = get_top_events(tops, params, request) context = {'objects': events} return render_to_response('client/includes/exposition/expo_top.html', context, context_instance=RequestContext(request)) \ No newline at end of file diff --git a/exposition/forms.py b/exposition/forms.py index 990fc457..5cb1380e 100644 --- a/exposition/forms.py +++ b/exposition/forms.py @@ -2,8 +2,6 @@ from django import forms from django.conf import settings from ckeditor.widgets import CKEditorWidget -from tinymce.widgets import TinyMCE -from django.core.exceptions import ValidationError from django.forms.util import ErrorList from django.core.validators import validate_email, URLValidator from django.utils.translation import ugettext as _ @@ -13,15 +11,11 @@ from theme.models import Tag from country.models import Country from theme.models import Theme from organiser.models import Organiser -from accounts.models import User -from company.models import Company from city.models import City -from service.models import Service from place_exposition.models import PlaceExposition #functions -from functions.translate import populate_all, fill_trans_fields_all, fill_with_signal +from functions.translate import fill_with_signal from functions.form_check import is_positive_integer -from functions.files import check_tmp_files from functions.form_check import translit_with_separator from settings.settings import date_formats from functions.admin_forms import AdminFilterForm diff --git a/exposition/models.py b/exposition/models.py index 3b09d994..fbae6343 100644 --- a/exposition/models.py +++ b/exposition/models.py @@ -313,6 +313,12 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): else: return self.get_permanent_url() + def get_top_link(self): + if self.top: + return self.top.link.get_click_link() + else: + return self.get_permanent_url() + class Statistic(TranslatableModel): exposition = models.ForeignKey(Exposition, related_name='statistic') diff --git a/exposition/views.py b/exposition/views.py index 43f5fb8f..fa7eff6a 100644 --- a/exposition/views.py +++ b/exposition/views.py @@ -433,7 +433,9 @@ class ExpoCityCatalog(ExpoCatalog): return qs def get_context_data(self, **kwargs): context = super(ExpoCityCatalog, self).get_context_data(**kwargs) - context['city'] = str(self.kwargs['city'].id) + city = self.kwargs['city'] + context['country'] = str(city.country_id) + context['city'] = str(city.id) return context diff --git a/proj/urls.py b/proj/urls.py index 03c2a385..085e5bf1 100644 --- a/proj/urls.py +++ b/proj/urls.py @@ -78,7 +78,6 @@ urlpatterns = patterns('', # ajax urls urlpatterns += patterns('', - url(r'^ajax/get_popover/$', 'settings.views.get_popover_info'), url(r'^registration/reply/$', 'registration.backends.default.views.RegisterReply'), url(r'^register/', 'registration.backends.default.views.RegisterAjaxView'), url(r'^register-complete/', 'registration.backends.default.views.complete_registration'), diff --git a/settings/views.py b/settings/views.py index 0655f9c3..80875d27 100644 --- a/settings/views.py +++ b/settings/views.py @@ -159,24 +159,4 @@ def get_popover(request): html = render_to_string(popover) response['html'] = html - return HttpResponse(json.dumps(response), content_type='application/json') - -from banners.models import Redirect -from django.db.models import F -import datetime - -def set_cookie(response, key, value, days_expire = 7): - if days_expire is None: - max_age = 365 * 24 * 60 * 60 #one year - else: - max_age = days_expire * 24 * 60 * 60 - expires = datetime.datetime.strftime(datetime.datetime.utcnow() + datetime.timedelta(seconds=max_age), "%a, %d-%b-%Y %H:%M:%S GMT") - response.set_cookie(key, value, max_age=max_age, expires=expires) - -def get_popover_info(request): - id = request.GET.get('rdr') - if id: - Redirect.objects.filter(id=id).update(views = F('views') + 1) - response = HttpResponse('success') - set_cookie(response, 'popover_test1', '1') - return response \ No newline at end of file + return HttpResponse(json.dumps(response), content_type='application/json') \ No newline at end of file diff --git a/templates/admin/expobanner/default_form.html b/templates/admin/expobanner/default_form.html index 50d696c0..3322088e 100644 --- a/templates/admin/expobanner/default_form.html +++ b/templates/admin/expobanner/default_form.html @@ -2,6 +2,7 @@ {% load static %} {% block scripts %} + +{% endblock %} + + +{% block body %} +
      +
      +
      +

      {{ object.get_event }}

      +
      +
      +
      +
      Линк на статистику: {{ request.get_host }}/expo-b/banner/{{ object.link.id }}/stat/
      +
      Пароль: {{ object.link.stat_pswd }}
      +
      + + + + + + + + + + + + {% with stats=stats %} + {% for stat in stats %} + + + + + + + + + {% endfor %} + {% endwith %} + +
      ДатаПоказыКликиУникальные показыУникальные клики
      {{ stat.date|date:"Y-m-d" }}{{ stat.view }}{{ stat.click }}{{ stat.unique_view }}{{ stat.unique_click }}
      +
      +
      +
      + +{% endblock %} \ No newline at end of file diff --git a/templates/admin/expobanner/paid_stat.html b/templates/admin/expobanner/paid_stat.html index b935251c..b47791c5 100644 --- a/templates/admin/expobanner/paid_stat.html +++ b/templates/admin/expobanner/paid_stat.html @@ -12,6 +12,10 @@

      {{ object.get_event }} (Пароль: {{ object.stat_pswd }})

      +
      +
      Линк на статистику: {{ request.get_host }}/expo-b/paid/{{ object.id }}/stat/
      +
      Пароль: {{ object.stat_pswd }}
      +
      diff --git a/templates/admin/includes/admin_nav.html b/templates/admin/includes/admin_nav.html index 59a41ebf..068e0067 100644 --- a/templates/admin/includes/admin_nav.html +++ b/templates/admin/includes/admin_nav.html @@ -111,6 +111,7 @@
    • Управление банерами
    • Платные выставки
    • Выставки в топе
    • +
    • Выставки на главной
    • diff --git a/templates/client/base_catalog.html b/templates/client/base_catalog.html index 46746b57..6582dc3e 100644 --- a/templates/client/base_catalog.html +++ b/templates/client/base_catalog.html @@ -1,4 +1,4 @@ -{% extends 'blank.html' %} +{% extends 'client/blank.html' %} {% load static %} {% load i18n %} diff --git a/templates/client/blank.html b/templates/client/blank.html index 6d3514b9..ea14cf50 100644 --- a/templates/client/blank.html +++ b/templates/client/blank.html @@ -129,75 +129,6 @@ This template include basic anf main styles and js files, {% include 'client/popups/callback.html' %} {% include 'client/includes/banners/popup.html' %} {% block popup_banner %} - {% if not request.COOKIES.popover_test1 %} - {% if theme_for_filter %} - - {% if theme_for_filter.id == 54 or theme_for_filter.id == 26 or theme_for_filter.id == 22 or theme_for_filter.id == 15 or theme_for_filter.id == 44 or theme_for_filter.id == 30 %} - {% with r=False|random3 %} - {% if r == 1 %} - {% include 'client/popups/cemat_modal.html' %} - {% else %} - {% if r == 2 %} - {% include 'client/popups/cemat_banner1.html' %} - {% else %} - {% include 'client/popups/cemat_banner2.html' %} - {% endif %} - {% endif %} - {% endwith %} - {% endif %} - - {% if theme_for_filter.id == 32 %} - {% with r=False|random3 %} - {% if r == 1 %} - {% include 'client/popups/cemat_modal.html' %} - {% endif %} - {% if r == 2 %} - {% include 'client/popups/cemat_banner1.html' %} - {% endif %} - {% if r == 0 %} - {% include 'client/popups/cemat_banner2.html' %} - {% endif %} - {% endwith %} - {% endif %} - - - - - {% endif %} - {% endif %} {% endblock %} {# if user doesnt have url- show form #} {% if 'partial_pipeline' not in request.session %} diff --git a/templates/client/expobanners/banner_stat.html b/templates/client/expobanners/banner_stat.html index da8af1c1..924617ca 100644 --- a/templates/client/expobanners/banner_stat.html +++ b/templates/client/expobanners/banner_stat.html @@ -1,5 +1,33 @@ {% extends 'base_catalog.html' %} +{% block styles %} + +{% endblock %} + {% block page_title %}

      {{ object }}. Статистика

      diff --git a/templates/client/expobanners/paid_stat.html b/templates/client/expobanners/paid_stat.html index ba695d71..a7e54012 100644 --- a/templates/client/expobanners/paid_stat.html +++ b/templates/client/expobanners/paid_stat.html @@ -1,4 +1,32 @@ -{% extends 'base_catalog.html' %} +{% extends 'client/base_catalog.html' %} + +{% block styles %} + +{% endblock %} {% block page_title %}
      diff --git a/templates/client/exposition/exposition_detail.html b/templates/client/exposition/exposition_detail.html index 3910dd18..f95b6dc3 100644 --- a/templates/client/exposition/exposition_detail.html +++ b/templates/client/exposition/exposition_detail.html @@ -26,73 +26,4 @@ {% block paginator %} -{% endblock %} - -{% block popup%} - -{% if not request.COOKIES.popover_test1 %} - - {% with theme_ids=object.theme_ids %} - {% if 32 in theme_ids %} - {% with r=False|random3 %} - {% if r == 0 %} - {% include 'client/popups/cemat_modal.html' %} - {% endif %} - {% if r == 1 %} - {% include 'client/popups/cemat_banner1.html' %} - {% endif %} - {% if r == 2 %} - {% include 'client/popups/cemat_banner2.html' %} - {% endif %} - {% endwith %} - {% else %} - {% if 54 in theme_ids or 26 in theme_ids or 22 in theme_ids or 15 in theme_ids or 44 in theme_ids or 30 in theme_ids %} - {% with r=False|random3 %} - {% if r == 1 %} - {% include 'client/popups/cemat_modal.html' %} - {% else %} - {% if r == 2 %} - {% include 'client/popups/cemat_banner1.html' %} - {% else %} - {% include 'client/popups/cemat_banner2.html' %} - {% endif %} - {% endif %} - {% endwith %} - - {% endif %} - {% endif %} - {% endwith %} - -{% endif %} - -{% endblock %} +{% endblock %} \ No newline at end of file diff --git a/templates/client/includes/banners/popup.html b/templates/client/includes/banners/popup.html index 51d5d4ad..6152147d 100644 --- a/templates/client/includes/banners/popup.html +++ b/templates/client/includes/banners/popup.html @@ -1,2 +1,2 @@ - +
      {% endblock %} diff --git a/templates/client/wizard/second_step.html b/templates/client/wizard/second_step.html index dcd78540..90018852 100644 --- a/templates/client/wizard/second_step.html +++ b/templates/client/wizard/second_step.html @@ -1,4 +1,19 @@ {% extends 'client/base_catalog.html' %} +{% load static %} + + +{% block head_scripts %} + + +{% endblock %} + {% block content_list %} {{ form.errors }} @@ -51,62 +66,6 @@
      -
      - -
      - -
      - - -
      - -
      - {{ form.statistic_year }} -
      - -
      - -
      - {{ form.visitors }} -
      - -
      - {{ form.partisipants }} -
      - -
      - {{ form.square }} - м² -
      -
      - -
      -
      - -
      - - -
      - -
      -
      -
      -
      - {{ form.countries }} -
      -
      -
      -
      -
      - -
      - - - - -

      Стоимость посещения и участия

      diff --git a/wizard/forms.py b/wizard/forms.py index e77ee6a8..c2e76b1b 100644 --- a/wizard/forms.py +++ b/wizard/forms.py @@ -1,8 +1,7 @@ # -*- coding: utf-8 -*- from django import forms -from theme.models import Theme, Tag +from theme.models import Theme from place_exposition.models import PlaceExposition -from city.models import City from country.models import Country from multiupload.fields import MultiFileField, MultiFileInput @@ -25,19 +24,19 @@ class ExpoForm1(forms.Form): date_start = forms.DateField(widget=forms.TextInput(attrs={'class':'data dateFrom', 'placeholder':'дд.мм.гг'})) date_end = forms.DateField(widget=forms.TextInput(attrs={'class':'data dateTo','placeholder':'дд.мм.гг'})) - country = forms.ChoiceField(label=u'Страна', choices=[(c.id, c.name) for c in Country.objects.all()]) - theme = forms.MultipleChoiceField(label='Тематики', choices=[(item.id, item.name) for item in Theme.objects.language().all()]) - place = forms.ChoiceField(label=u'Место проведения', required=False, choices=places) - city = forms.CharField(label=u'Город', widget=forms.HiddenInput()) - tag = forms.CharField(label=u'Теги', widget=forms.HiddenInput(), required=False) + country = forms.ChoiceField(label=u'Страна', choices=[(c.id, c.name) for c in Country.objects.all()], widget=forms.Select(attrs={'id':'id_country'})) + theme = forms.MultipleChoiceField(label='Тематики', choices=[(item.id, item.name) for item in Theme.objects.language().all()], widget=forms.SelectMultiple(attrs={'id':'id_theme'})) + place = forms.ChoiceField(label=u'Место проведения', required=False, choices=places, widget=forms.Select(attrs={'id':'id_place'})) + city = forms.CharField(label=u'Город', widget=forms.HiddenInput(attrs={'id':'id_city'})) + tag = forms.CharField(label=u'Теги', widget=forms.HiddenInput(attrs={'id':'id_tag'}), required=False) audience1 = forms.BooleanField(required=False) audience2 = forms.BooleanField(required=False) audience3 = forms.BooleanField(required=False) - periodic = forms.ChoiceField(choices=choices, required=False, widget=forms.Select(attrs={'placeholder':u'Периодичность'})) - membership1= forms.BooleanField(required=False) - membership2= forms.BooleanField(required=False) - membership3= forms.BooleanField(required=False) + periodic = forms.ChoiceField(choices=choices, required=False) + membership1 = forms.BooleanField(required=False) + membership2 = forms.BooleanField(required=False) + membership3 = forms.BooleanField(required=False) web_site = forms.URLField(required=False, widget=forms.TextInput(attrs={'placeholder': "Веб-сайт (необязательно)"})) products = forms.CharField(widget=forms.Textarea(attrs={'placeholder': "Экспонируемые продукты", 'cols':30, 'rows':10})) time_start = forms.TimeField() @@ -50,12 +49,6 @@ class ExpoForm2(forms.Form): statistics """ found_year = forms.IntegerField() - statistic_year = forms.IntegerField(widget=forms.TextInput(attrs={'placeholder':'введите год'})) - visitors = forms.IntegerField(widget=forms.TextInput(attrs={'placeholder':'количество посетителей'})) - partisipants = forms.IntegerField(widget=forms.TextInput(attrs={'placeholder':'количество учасников'})) - square = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'площадь'})) - countries = forms.ModelChoiceField(queryset=Country.objects.filter(id=50)) - # ticket price pre_one_day = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'на один день'})) pre_all_days = forms.FloatField(widget=forms.TextInput(attrs={'placeholder':'на все дни'})) @@ -72,9 +65,11 @@ class ExpoForm2(forms.Form): class ExpoForm3(forms.Form): - attachments = MultiFileField(min_num=0, max_num=2, max_file_size=1024*1024*5, widget=MultiFileInput( - attrs={'class':'button big icon-camera', 'value':u'выберите фотографии', 'id':'files'} + """ + photos from last expositions + """ + attachments = MultiFileField(min_num=0, max_num=6, max_file_size=1024*1024*5, widget=MultiFileInput( + attrs={'class':'button big icon-camera', 'value': u'выберите фотографии', 'id': 'files'} )) -formlist = [ExpoForm1, ExpoForm2, ExpoForm3] \ No newline at end of file diff --git a/wizard/urls.py b/wizard/urls.py index 4ae424d2..527cd96d 100644 --- a/wizard/urls.py +++ b/wizard/urls.py @@ -1,8 +1,7 @@ -from django.conf.urls import patterns, url, include +from django.conf.urls import patterns, url +from .views import ExpoWizard +from .forms import ExpoForm1, ExpoForm2,ExpoForm3 -from wizard.views import wizard_view +formlist = [ExpoForm1,ExpoForm2, ExpoForm3] -urlpatterns = patterns('', - # url(r'^ajax/$', 'wizard.views.ajax_view'), - url(r'^$', wizard_view) -) \ No newline at end of file +urlpatterns = patterns('', url(r'^$', ExpoWizard.as_view(formlist), name = 'add_exposition')) \ No newline at end of file diff --git a/wizard/views.py b/wizard/views.py index 9a9b21ea..01dadcac 100644 --- a/wizard/views.py +++ b/wizard/views.py @@ -1,13 +1,27 @@ from django.contrib.formtools.wizard.views import SessionWizardView from django.core.files.storage import FileSystemStorage -from django.http import HttpResponseRedirect +from django.http import HttpResponseRedirect, HttpResponseForbidden from django.conf import settings +from django.contrib.auth.decorators import login_required +from django.utils.decorators import method_decorator +from django.core.exceptions import PermissionDenied import os from photologue.models import Photo -from exposition.models import Exposition, Statistic +from exposition.models import Exposition from functions.form_check import translit_with_separator from accounts.models import User +from country.models import Country +from city.models import City +from place_exposition.models import PlaceExposition +from theme.models import Tag, Theme + +class LoginRequiredMixin(object): + @method_decorator(login_required) + def dispatch(self, request, *args, **kwargs): + if not request.user.organiser: + raise PermissionDenied + return super(LoginRequiredMixin, self).dispatch(request, *args, **kwargs) # defining different template for every form @@ -17,14 +31,15 @@ TEMPLATES = { '2': 'client/wizard/third_step.html' } -class ExpoWizard(SessionWizardView): - "main view that handle all data from 3 forms(steps) and finally create an Exposition" +class ExpoWizard(LoginRequiredMixin, SessionWizardView): + + """main view that handle all data from 3 forms(steps) and finally create an Exposition""" # storing temporary files during upload location = os.path.join(settings.MEDIA_ROOT, 'temp') file_storage = FileSystemStorage(location, settings.MEDIA_URL) - SUCCES_URL = "/" + SUCCESS_URL = "/" def get_template_names(self): return [TEMPLATES[self.steps.current]] @@ -36,16 +51,19 @@ class ExpoWizard(SessionWizardView): data = self.get_all_cleaned_data() # creating new exposition - expo = Exposition.objects.language(self.request.LANGUAGE_CODE).create( + lang = self.request.LANGUAGE_CODE + expo = Exposition.objects.language(lang).create( name=data.get('name'), data_begin=data.get('date_start'), data_end=data.get('date_end'), main_title=data.get('main_title'), description=data.get('description'), products=data.get('products'), - country=data.get('country', 1), - city=data.get('city', 1), - place=data.get('place', 1), + + country=Country.objects.language(lang).get(id=data.get('country')), + city=City.objects.language(lang).get(id=data.get('city')), + place=PlaceExposition.objects.language(lang).get(id=data.get('place')), + periodic=data.get('periodic'), web_page=data.get('web_site'), logo=data.get('logo'), @@ -66,7 +84,7 @@ class ExpoWizard(SessionWizardView): url=translit_with_separator(data.get('name')), quality_label=0, audience=0, - creator = User.objects.get(id=self.request.user.id) + creator=User.objects.get(id=self.request.user.id) ) # adding photo to gallery photos = [] @@ -78,24 +96,13 @@ class ExpoWizard(SessionWizardView): for photo in photos: expo.upload_photo(photo) - # many to many relations saving - expo.tag = [data.get('tag')] - expo.theme = [data.get('theme')] + expo.tag = Tag.objects.language(lang).filter(id__in=data.get('tag').split(',')) + expo.theme = Theme.objects.language(lang).filter(id__in=data.get('theme')) # setting bit fields audience and quality_label self.set_flags(expo, data) expo.save() - # ? - Statistic.objects.language(self.request.LANGUAGE_CODE).create( - exposition=expo, - year=data.get('statistic_year'), - visitors=data.get('visitors'), - members=data.get('partisipants'), - countries=data.get('countries'), - area=data.get('square') - ) - # remove temporary files if it has any if upload_logo: self.file_storage.delete(upload_logo.name) @@ -103,11 +110,10 @@ class ExpoWizard(SessionWizardView): for f in upload_images: self.file_storage.delete(f.name) - return HttpResponseRedirect(self.SUCCES_URL) - + return HttpResponseRedirect(self.SUCCESS_URL) - - def set_flags(self, expo, data): + @staticmethod + def set_flags(expo, data): if data['membership1']: expo.quality_label = (expo.quality_label | Exposition.quality_label.exporating) if data['membership2']: @@ -122,5 +128,4 @@ class ExpoWizard(SessionWizardView): if data['audience3']: expo.audience = expo.audience | (getattr(Exposition.audience, 'general public')) -from wizard.forms import formlist -wizard_view = ExpoWizard.as_view(formlist) + From e6b13e0f67ef967e8255b7aa98b2d5f79d28b356 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Tue, 8 Sep 2015 15:19:03 +0300 Subject: [PATCH 21/45] solved bug with adding theme error --- theme/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/theme/models.py b/theme/models.py index ee5c8f72..50ece870 100644 --- a/theme/models.py +++ b/theme/models.py @@ -246,7 +246,6 @@ def pre_save_handler(sender, **kwargs): if not obj.url: obj.url = ''.join([random.choice(string.ascii_lowercase) for n in xrange(8)]) -pre_save.connect(pre_save_handler, sender=Theme) pre_save.connect(pre_save_handler, sender=Tag) post_save.connect(post_save_handler, sender=Theme) From d81ea6a43238436dab35297c7d7e2b65e77ead46 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Wed, 9 Sep 2015 19:00:33 +0300 Subject: [PATCH 22/45] some changes in xls calendar export --- core/utils.py | 17 +++++++---------- core/views.py | 35 +++++++++++++++++++++-------------- 2 files changed, 28 insertions(+), 24 deletions(-) diff --git a/core/utils.py b/core/utils.py index ee429eee..b6416222 100644 --- a/core/utils.py +++ b/core/utils.py @@ -2,10 +2,6 @@ import xlwt import datetime - -from exposition.models import Exposition -from conference.models import Conference - from django.core.exceptions import ObjectDoesNotExist HEADER_STYLE = xlwt.easyxf('font: bold on') @@ -42,11 +38,13 @@ def get_column_cell(obj, name): return ', '.join(unicode(x).strip() for x in attr.all()) return attr + def queryset_to_workbook(queryset, columns, header_style=None, default_style=None, cell_style_map=None): workbook = xlwt.Workbook() report_date = datetime.date.today() - sheet_name = 'Export {0}'.format(report_date.strftime('%Y-%m-%d')) + sheet_name = u'My calendar {0}'.format(report_date.strftime('%Y-%m-%d')) sheet = workbook.add_sheet(sheet_name) + sheet.insert_bitmap('') if not header_style: header_style = HEADER_STYLE @@ -57,14 +55,13 @@ def queryset_to_workbook(queryset, columns, header_style=None, default_style=Non obj = queryset[0] - for y, column in enumerate(columns): - header_list=[u'Название события',u'Страна',u'Город',u'Место проведения', u'Дата начала', u'Дата окончания'] - - sheet.write(0, y, header_list[y], header_style) + for i, column in enumerate(columns): + header_list=[u'#', u'Название события',u'Даты',u'Краткое описание',u'Место проведения', u'Заметка', u'Ссылка на событие'] + sheet.write(0, i, header_list[i], header_style) for x, obj in enumerate(queryset, start=1): for y, column in enumerate(columns): - value = get_column_cell(obj, column) + value = getattr(obj, column) style = default_style for value_type, cell_style in cell_style_map: if isinstance(value, value_type): diff --git a/core/views.py b/core/views.py index 1c53d73d..46172999 100644 --- a/core/views.py +++ b/core/views.py @@ -1,5 +1,4 @@ # -*- coding: utf-8 -*- -from django.shortcuts import render_to_response from country.models import Country from city.models import City from place_exposition.models import PlaceExposition @@ -253,34 +252,42 @@ class PageDetailed(DetailView): slug_url_kwarg = 'url' - - - # ------------ XLS Export ---------------- from django.http import HttpResponse +from django.utils.translation import get_language from .utils import queryset_to_workbook from exposition.models import Exposition from conference.models import Conference + def download_workbook(request): - data = [(36539, 'expo'),(36602, 'expo'), (3033, 'conf'), (3053, 'conf')] + lang = get_language() + data = [(36539, 'expo'),(36602, 'expo')]#, (3033, 'conf'), (3053, 'conf')] qs = [] for obj in data: if obj[1] == 'expo': - qs.append(Exposition.objects.get(id=obj[0])) - if obj[1] == 'conf': - qs.append(Conference.objects.get(id=obj[0])) + qs.append(Exposition.objects.language(lang).get(id=obj[0])) + + elif obj[1] == 'conf': + qs.append(Conference.objects.language(lang).get(id=obj[0])) + for i, obj in enumerate(qs, start=1): + setattr(obj, 'number', i) + setattr(obj, 'dates', u'%s - %s'%(obj.data_begin.strftime('%d %B %Y'),obj.data_end.strftime('%d %B %Y'))) + setattr(obj, 'full_place', u'%s, %s, %s' % (obj.country, obj.city, getattr(obj.place, 'name', ''))) + setattr(obj, 'link', u'expomap.ru%s'%obj.get_absolute_url()) + columns = ( + 'number', 'name', - 'country.name', - 'city.name', - 'place.name', - 'data_begin', - 'data_end') + 'dates', + 'main_title', + 'full_place', + 'participation_note', + 'link') workbook = queryset_to_workbook(qs, columns) response = HttpResponse(content_type='application/vnd.ms-excel') - response['Content-Disposition'] = 'attachment; filename="export.xls"' + response['Content-Disposition'] = 'attachment; filename="My calendar.xls"' workbook.save(response) return response From 9fe7370f267dbc6dc1e6484fc0546553fb25cd41 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Wed, 9 Sep 2015 19:02:02 +0300 Subject: [PATCH 23/45] added specialist catalog models and form. view only form specialist model, --- exposition/models.py | 13 --- proj/admin_urls.py | 1 + proj/settings.py | 3 +- specialist_catalog/__init__.py | 0 specialist_catalog/admin_urls.py | 11 +++ specialist_catalog/forms.py | 86 ++++++++++++++++++ specialist_catalog/models.py | 89 +++++++++++++++++++ specialist_catalog/tests.py | 16 ++++ specialist_catalog/urls.py | 6 ++ specialist_catalog/views.py | 30 +++++++ .../admin/specialist/specialist_all.html | 54 +++++++++++ .../specialist/specialist_confirm_delete.html | 11 +++ .../admin/specialist/specialist_new.html | 79 ++++++++++++++++ 13 files changed, 385 insertions(+), 14 deletions(-) create mode 100644 specialist_catalog/__init__.py create mode 100644 specialist_catalog/admin_urls.py create mode 100644 specialist_catalog/forms.py create mode 100644 specialist_catalog/models.py create mode 100644 specialist_catalog/tests.py create mode 100644 specialist_catalog/urls.py create mode 100644 specialist_catalog/views.py create mode 100644 templates/admin/specialist/specialist_all.html create mode 100644 templates/admin/specialist/specialist_confirm_delete.html create mode 100644 templates/admin/specialist/specialist_new.html diff --git a/exposition/models.py b/exposition/models.py index 36326f02..81474a3a 100644 --- a/exposition/models.py +++ b/exposition/models.py @@ -160,7 +160,6 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): paid_new = models.ForeignKey('expobanner.Paid', blank=True, null=True, on_delete=models.SET_NULL) top = models.ForeignKey('expobanner.Top', blank=True, null=True, on_delete=models.SET_NULL) - main = models.ForeignKey('expobanner.MainPage', blank=True, null=True, on_delete=models.SET_NULL) #set manager of this model(fisrt manager is default) objects = ExpoManager() enable = ClientManager() @@ -309,18 +308,6 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): def theme_ids(self): return [item['id'] for item in self.theme.all().values('id')] - def get_main_link(self): - if self.main: - return self.main.link.get_click_link() - else: - return self.get_permanent_url() - - def get_top_link(self): - if self.top: - return self.top.link.get_click_link() - else: - return self.get_permanent_url() - class Statistic(TranslatableModel): exposition = models.ForeignKey(Exposition, related_name='statistic') diff --git a/proj/admin_urls.py b/proj/admin_urls.py index 47bbfeaf..c66d75f1 100644 --- a/proj/admin_urls.py +++ b/proj/admin_urls.py @@ -34,6 +34,7 @@ urlpatterns = required( url(r'^settings/', include('settings.admin_urls')), url(r'^meta/', include('meta.admin_urls')), url(r'^import_xls/', include('import_xls.admin_urls')), + url(r'^specialist_catalog/', include('specialist_catalog.admin_urls')), url(r'^language/add/', 'directories.admin.language_add'), url(r'^currency/add/', 'directories.admin.currency_add'), diff --git a/proj/settings.py b/proj/settings.py index 0a679246..863a6fa8 100644 --- a/proj/settings.py +++ b/proj/settings.py @@ -353,7 +353,8 @@ INSTALLED_APPS = ( 'password_reset', # reset password 'social.apps.django_app.default', # social auth 'core', - 'wizard' + 'wizard', + 'specialist_catalog', ) diff --git a/specialist_catalog/__init__.py b/specialist_catalog/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/specialist_catalog/admin_urls.py b/specialist_catalog/admin_urls.py new file mode 100644 index 00000000..9e3c71d8 --- /dev/null +++ b/specialist_catalog/admin_urls.py @@ -0,0 +1,11 @@ +# -*- coding: utf-8 -*- +from django.conf.urls import url, patterns +from .views import * + +urlpaterns = patterns('', + url(r'^specialist/new/$', SpecialistCreateView.as_view(), name='specialist_new'), + url(r'^specialist/all/$', SpecialistListView.as_view(), name='specialist_all'), + url(r'^specialist/edit/(?P\d{1,4})/$', SpecialistUpdateView.as_view(), name='specialist_edit'), + url(r'^specialist/delete/(?P\d{1,4})/$', SpecialistDeleteView.as_view(), name='specialist_delete'), + +) \ No newline at end of file diff --git a/specialist_catalog/forms.py b/specialist_catalog/forms.py new file mode 100644 index 00000000..27a469e5 --- /dev/null +++ b/specialist_catalog/forms.py @@ -0,0 +1,86 @@ +# -*- coding: utf-8 -*- +from django import forms +from hvad.forms import TranslatableModelForm +from .models import Specialist, SpecialistCatalog, Feedback, City, Country +from ckeditor.widgets import CKEditorWidget +from django.utils.translation import get_language + +country_choices = [(c.id, c.name) for c in Country.objects.all()] +lang_code = get_language()[:2] + +default_text = u"Планируете посетить выставку в %s?" \ + u" Мы предлагаем Вам подобрать переводчика именно под Ваши цели и потребности. " \ + u"Специализируясь уже более 7 лет на предоставлении переводчиков на выставки и конференции " \ + u"%s, мы можем предоставить профессионалов со знанием разных " \ + u"языков на гибких для Вас условиях. Каждый заказ индивидуален для нас, " \ + u"и итоговая цена зависит от вида перевода, тематики, срочности подбора " \ + u"специалиста, города и объема работы." +default_title = u"Переводчики в %s" + + +class SpecialistCatalogForm(TranslatableModelForm): + + class Meta: + model = SpecialistCatalog + fields = '__all__' + widgets = { + 'type': forms.Select(choices=(('1', 'Country'), ('2', 'City'))), + 'city': forms.HiddenInput(attrs={'id': 'id_city'}), + 'country': forms.Select(choices=country_choices, attrs={'id': 'id_country'}), + 'main_descr': CKEditorWidget, + 'benefits': CKEditorWidget, + } + + def clean_city(self): + data = self.cleaned_data + if data.get('city'): + data['city'] = City.objects.language(lang_code).get(id=data['city']) + return data + + def clean_country(self): + data = self.cleaned_data + if data.get('country'): + data['country'] = Country.objects.language(lang_code).get(id=data['country']) + return data + + def save(self, commit=True): + place = self.cleaned_data.get('city') or self.cleaned_data.get('country') + place_inflect = place.inflect or place.name + if not self.cleaned_data['title']: + self.cleaned_data['title'] = default_title % place_inflect + if not self.cleaned_data['main_descr']: + self.cleaned_data['main_descr'] = default_text % (place_inflect, place_inflect) + return super(SpecialistCatalogForm, self).save(commit=True) + + +class SpecialistForm(forms.ModelForm): + + class Meta: + model = Specialist + fields = '__all__' + widgets = { + 'city': forms.HiddenInput(attrs={'id': 'id_city'}), + 'country': forms.Select(choices=country_choices, attrs={'id': 'id_country'}) + } + + def clean_city(self): + data = self.cleaned_data + if data.get('city'): + data['city'] = City.objects.language(lang_code).get(id=data['city']) + return data + + def clean_country(self): + data = self.cleaned_data + if data.get('country'): + data['country'] = Country.objects.language(lang_code).get(id=data['country']) + return data + + +class FeedbackForm(forms.ModelForm): + + class Meta: + model = Feedback + fields = '__all__' + widgets = { + 'text':CKEditorWidget + } \ No newline at end of file diff --git a/specialist_catalog/models.py b/specialist_catalog/models.py new file mode 100644 index 00000000..904ef1c5 --- /dev/null +++ b/specialist_catalog/models.py @@ -0,0 +1,89 @@ +# -*- coding: utf-8 -*- +from django.db import models +from django.conf import settings +from hvad.models import TranslatableModel, TranslatedFields, TranslationManager +from functions.form_check import translit_with_separator as tws +from city.models import City +from country.models import Country +from django.core.urlresolvers import reverse_lazy +import copy + + +# types of catalog +_country = 1 +_city = 2 + + +class Specialist(models.Model): + name = models.CharField(max_length=255, verbose_name=u"Полное имя") + languages = models.CharField(max_length=255, verbose_name=u"Языки") + city = models.ForeignKey(City, on_delete=models.PROTECT, verbose_name=u"Город") + country = models.ForeignKey(Country, on_delete=models.PROTECT, verbose_name=u"Страна") + photo = models.ImageField(verbose_name=u"Фото", upload_to="specialist_catalog/specialist_photo/", blank=True) + + +class SpecialistCatalog(TranslatableModel): + price = models.IntegerField(verbose_name=u"Цена", default=200) + currency = models.CharField(max_length=255, verbose_name=u"Валюта", default=u"EUR") + logo_preview = models.ImageField(verbose_name=u"Логотип", blank=True, upload_to='/specialist_catalog/logo_preview/') + place_photo = models.ImageField(verbose_name=u"Фото для города", blank=True, upload_to='/specialist_catalog/place_photo/') + specialists = models.ManyToManyField(Specialist, verbose_name=u"Специалисты", blank=True) + city = models.ForeignKey(City, on_delete=models.PROTECT, verbose_name=u"Город") + country = models.ForeignKey(Country, on_delete=models.PROTECT, verbose_name=u"Страна") + type = models.PositiveSmallIntegerField(verbose_name=u"Тип(Страна/Город)", default=2) + + translations = TranslatedFields( + title=models.CharField(max_length=255, verbose_name=u"Заголовок"), + main_descr=models.CharField(max_length=1000, verbose_name=u"Краткое описание"), + benefits=models.CharField(max_length=2000, verbose_name=u"Преимущества") + ) + + def __init__(self, *args, **kwargs): + super(SpecialistCatalog, self).__init__(*args, **kwargs) + self.cache_fields = ['title', 'main_descr', 'benefits'] + self.is_new = True + + def get_absolute_url(self): + global _country, _city + if self.type == _country: + return reverse_lazy('spec_catalog_country', tws(self.country.name)) + else: + return reverse_lazy('spec_catalog_city', tws(self.city.name)) + + def save(self, *args, **kwargs): + super(SpecialistCatalog, self).save(*args, **kwargs) + self.initial_language = 'ru' + + new_values = {field: getattr(self, field) for field in self.cache_fields} + langs = [code for code, _ in settings.LANGUAGES] + if self.is_new: + for lang in langs: + if lang not in self.get_available_languages(): + self.translate(lang) + for key, value in new_values.items(): + setattr(self, key, value) + self.save_translations(self) + else: + translations = {obj.language_code:obj for obj in list(self.translations.all())} + for lang in langs: + if lang is not self.initial_language: + tr = translations[lang] + for key, value in new_values.items(): + #if u'%s' % getattr(tr, key) is u'%s' % self.var_cache[key]: + setattr(tr, key, value) + tr.save() + + self.lazy_translation_getter(self.initial_language) + self.var_cache = {var: copy.copy(getattr(self, var)) for var in self.cache_fields} + self.is_new = False + return self + + +class Feedback(models.Model): + company = models.CharField(max_length=255, verbose_name=u"Название компании") + name = models.CharField(max_length=100, verbose_name=u"Имя") + text = models.CharField(max_length=5000, verbose_name=u"Текст отзыва") + logo = models.ImageField(verbose_name=u"Логотип компании", upload_to='/specialist_catalog/feedback_logo/', blank=True) + catalog = models.ForeignKey(SpecialistCatalog, verbose_name=u"Страница") + + diff --git a/specialist_catalog/tests.py b/specialist_catalog/tests.py new file mode 100644 index 00000000..501deb77 --- /dev/null +++ b/specialist_catalog/tests.py @@ -0,0 +1,16 @@ +""" +This file demonstrates writing tests using the unittest module. These will pass +when you run "manage.py test". + +Replace this with more appropriate tests for your application. +""" + +from django.test import TestCase + + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.assertEqual(1 + 1, 2) diff --git a/specialist_catalog/urls.py b/specialist_catalog/urls.py new file mode 100644 index 00000000..e4fb7c7b --- /dev/null +++ b/specialist_catalog/urls.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- +from django.conf.urls import url, patterns +from .views import * + +urlpaterns = patterns('', +) \ No newline at end of file diff --git a/specialist_catalog/views.py b/specialist_catalog/views.py new file mode 100644 index 00000000..68c87f24 --- /dev/null +++ b/specialist_catalog/views.py @@ -0,0 +1,30 @@ +# -*- coding: utf-8 -*- +from django.views.generic import CreateView, UpdateView, DeleteView, ListView, DetailView +from .forms import * +from django.core.urlresolvers import reverse + + +class SpecialistCreateView(CreateView): + form_class = SpecialistForm + model = Specialist + template_name = 'admin/specialist/specialist_new.html' + success_url = reverse("specialist_all") + + +class SpecialistListView(ListView): + model = Specialist + template_name = 'admin/specialist/specialist_all.html' + + +class SpecialistUpdateView(UpdateView): + form_class = SpecialistForm + model = Specialist + template_name = 'admin/specialist/specialist_new.html' + success_url = reverse("specialist_all") + + +class SpecialistDeleteView(DeleteView): + model = Specialist + template_name = 'admin/specialist/specialist_confirm_delete.html' + success_url = reverse("specialist_all") + diff --git a/templates/admin/specialist/specialist_all.html b/templates/admin/specialist/specialist_all.html new file mode 100644 index 00000000..b4c33f27 --- /dev/null +++ b/templates/admin/specialist/specialist_all.html @@ -0,0 +1,54 @@ +{% extends 'base.html' %} +{% block body %} +
      +
      +

      Список специалистов(переводчиков)

      +
      +
      +
      + + + + + + + + + + {% for item in object_list %} + + + + + + + + + {% endfor %} + +
      ИмяЗаголовок 
      {{ item.url }}{{ item.title }} + + Изменить + + + + Удалить + +
      + + Добавить seo-текст +
      + + +
      +{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/specialist_confirm_delete.html b/templates/admin/specialist/specialist_confirm_delete.html new file mode 100644 index 00000000..90cc492c --- /dev/null +++ b/templates/admin/specialist/specialist_confirm_delete.html @@ -0,0 +1,11 @@ +{% extends 'base.html' %} +{% block sidebar %}{% endblock %} +{% block body %} +
      {% csrf_token %} +
      +

      Вы точно хотите удалить seo-текст "{{ object.title }}" для страницы ?

      + + Нет +
      +
      +{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/specialist_new.html b/templates/admin/specialist/specialist_new.html new file mode 100644 index 00000000..04182684 --- /dev/null +++ b/templates/admin/specialist/specialist_new.html @@ -0,0 +1,79 @@ +{% extends 'base.html' %} +{% load static %} +{# Displays article form #} + + {% block scripts %} + + + {# selects #} + + + + {# ajax #} + + + + {% endblock %} + +{% block body %} + {{ request.LANGUAGE_CODE }} +
      {% csrf_token %} +
      +
      +
      +

      Основная информация

      +
      +
      + {# url/slug #} +
      + +
      + {{ form.langs }} + {{ form.url }} + {{ form.url.errors }} +
      +
      + {# title #} +
      + +
      + {{ form.title }} + {{ form.title.errors }} +
      +
      + {# page title #} +
      + +
      + {{ form.page_title }} + {{ form.page_title.errors }} +
      +
      + {# description #} +
      + +
      + {{ form.description }} + {{ form.description.errors }} +
      +
      + {# body #} +
      + +
      + {{ form.body }} + {{ form.body.errors }} +
      +
      +
      +
      + +
      + + + +
      +
      +
      + +{% endblock %} From fa2d0a313a67e363a42c9703cfd029e7ab0aa225 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Thu, 10 Sep 2015 17:56:05 +0300 Subject: [PATCH 24/45] added views, urls and templates for specialist catalog and feedback --- specialist_catalog/admin_urls.py | 11 +- specialist_catalog/forms.py | 31 +-- specialist_catalog/models.py | 9 +- specialist_catalog/views.py | 79 ++++++- static/custom_js/specialist.js | 93 +++++++++ static/custom_js/specialist_catalog.js | 120 +++++++++++ templates/admin/specialist/catalog_all.html | 62 ++++++ .../specialist/catalog_confirm_delete.html | 11 + templates/admin/specialist/catalog_new.html | 195 ++++++++++++++++++ templates/admin/specialist/feedback_all.html | 62 ++++++ .../specialist/feedback_confirm_delete.html | 11 + templates/admin/specialist/feedback_new.html | 79 +++++++ .../admin/specialist/specialist_all.html | 22 +- .../specialist/specialist_confirm_delete.html | 4 +- .../admin/specialist/specialist_new.html | 80 +++---- 15 files changed, 784 insertions(+), 85 deletions(-) create mode 100644 static/custom_js/specialist.js create mode 100644 static/custom_js/specialist_catalog.js create mode 100644 templates/admin/specialist/catalog_all.html create mode 100644 templates/admin/specialist/catalog_confirm_delete.html create mode 100644 templates/admin/specialist/catalog_new.html create mode 100644 templates/admin/specialist/feedback_all.html create mode 100644 templates/admin/specialist/feedback_confirm_delete.html create mode 100644 templates/admin/specialist/feedback_new.html diff --git a/specialist_catalog/admin_urls.py b/specialist_catalog/admin_urls.py index 9e3c71d8..e80e6fb9 100644 --- a/specialist_catalog/admin_urls.py +++ b/specialist_catalog/admin_urls.py @@ -2,10 +2,17 @@ from django.conf.urls import url, patterns from .views import * -urlpaterns = patterns('', +urlpatterns = patterns('', url(r'^specialist/new/$', SpecialistCreateView.as_view(), name='specialist_new'), url(r'^specialist/all/$', SpecialistListView.as_view(), name='specialist_all'), url(r'^specialist/edit/(?P\d{1,4})/$', SpecialistUpdateView.as_view(), name='specialist_edit'), url(r'^specialist/delete/(?P\d{1,4})/$', SpecialistDeleteView.as_view(), name='specialist_delete'), - + url(r'^catalog/new/$', CatalogCreateView.as_view(), name='catalog_new'), + url(r'^catalog/all/$', CatalogListView.as_view(), name='catalog_all'), + url(r'^catalog/edit/(?P\d{1,4})/$', CatalogUpdateView.as_view(), name='catalog_edit'), + url(r'^catalog/delete/(?P\d{1,4})/$', CatalogDeleteView.as_view(), name='catalog_delete'), + url(r'^catalog/(?P\d{1,4})/add_feedback/$', FeedbackCreateView.as_view(), name='feedback_new'), + #url(r'^catalog/(?P\d{1,4})/feedbacks/$', FeedbackListView.as_view(), name='feedback_all'), + url(r'^catalog/(?P\d{1,4})/feedback/(?P\d{1,4})/$', FeedbackUpdateView.as_view(), name='feedback_edit'), + url(r'^feedback/delete/(?P\d{1,4})/$', FeedbackDeleteView.as_view(), name='feedback_delete'), ) \ No newline at end of file diff --git a/specialist_catalog/forms.py b/specialist_catalog/forms.py index 27a469e5..026a6c3f 100644 --- a/specialist_catalog/forms.py +++ b/specialist_catalog/forms.py @@ -22,7 +22,8 @@ class SpecialistCatalogForm(TranslatableModelForm): class Meta: model = SpecialistCatalog - fields = '__all__' + fields = ['price', 'currency', 'logo_preview', 'main_descr', 'place_photo', + 'specialists', 'city', 'country', 'type', 'title', 'benefits'] widgets = { 'type': forms.Select(choices=(('1', 'Country'), ('2', 'City'))), 'city': forms.HiddenInput(attrs={'id': 'id_city'}), @@ -31,18 +32,6 @@ class SpecialistCatalogForm(TranslatableModelForm): 'benefits': CKEditorWidget, } - def clean_city(self): - data = self.cleaned_data - if data.get('city'): - data['city'] = City.objects.language(lang_code).get(id=data['city']) - return data - - def clean_country(self): - data = self.cleaned_data - if data.get('country'): - data['country'] = Country.objects.language(lang_code).get(id=data['country']) - return data - def save(self, commit=True): place = self.cleaned_data.get('city') or self.cleaned_data.get('country') place_inflect = place.inflect or place.name @@ -57,30 +46,18 @@ class SpecialistForm(forms.ModelForm): class Meta: model = Specialist - fields = '__all__' + fields = ['name','country', 'city', 'photo', 'languages'] widgets = { 'city': forms.HiddenInput(attrs={'id': 'id_city'}), 'country': forms.Select(choices=country_choices, attrs={'id': 'id_country'}) } - def clean_city(self): - data = self.cleaned_data - if data.get('city'): - data['city'] = City.objects.language(lang_code).get(id=data['city']) - return data - - def clean_country(self): - data = self.cleaned_data - if data.get('country'): - data['country'] = Country.objects.language(lang_code).get(id=data['country']) - return data - class FeedbackForm(forms.ModelForm): class Meta: model = Feedback - fields = '__all__' + fields = ['company', 'name', 'text', 'logo', 'catalog'] widgets = { 'text':CKEditorWidget } \ No newline at end of file diff --git a/specialist_catalog/models.py b/specialist_catalog/models.py index 904ef1c5..8c32eb9d 100644 --- a/specialist_catalog/models.py +++ b/specialist_catalog/models.py @@ -21,12 +21,15 @@ class Specialist(models.Model): country = models.ForeignKey(Country, on_delete=models.PROTECT, verbose_name=u"Страна") photo = models.ImageField(verbose_name=u"Фото", upload_to="specialist_catalog/specialist_photo/", blank=True) + def __unicode__(self): + return u"%s" % self.name + class SpecialistCatalog(TranslatableModel): price = models.IntegerField(verbose_name=u"Цена", default=200) currency = models.CharField(max_length=255, verbose_name=u"Валюта", default=u"EUR") - logo_preview = models.ImageField(verbose_name=u"Логотип", blank=True, upload_to='/specialist_catalog/logo_preview/') - place_photo = models.ImageField(verbose_name=u"Фото для города", blank=True, upload_to='/specialist_catalog/place_photo/') + logo_preview = models.ImageField(verbose_name=u"Логотип", blank=True, upload_to='specialist_catalog/logo_preview/') + place_photo = models.ImageField(verbose_name=u"Фото для города", blank=True, upload_to='specialist_catalog/place_photo/') specialists = models.ManyToManyField(Specialist, verbose_name=u"Специалисты", blank=True) city = models.ForeignKey(City, on_delete=models.PROTECT, verbose_name=u"Город") country = models.ForeignKey(Country, on_delete=models.PROTECT, verbose_name=u"Страна") @@ -83,7 +86,7 @@ class Feedback(models.Model): company = models.CharField(max_length=255, verbose_name=u"Название компании") name = models.CharField(max_length=100, verbose_name=u"Имя") text = models.CharField(max_length=5000, verbose_name=u"Текст отзыва") - logo = models.ImageField(verbose_name=u"Логотип компании", upload_to='/specialist_catalog/feedback_logo/', blank=True) + logo = models.ImageField(verbose_name=u"Логотип компании", upload_to='specialist_catalog/feedback_logo/', blank=True) catalog = models.ForeignKey(SpecialistCatalog, verbose_name=u"Страница") diff --git a/specialist_catalog/views.py b/specialist_catalog/views.py index 68c87f24..01382c7c 100644 --- a/specialist_catalog/views.py +++ b/specialist_catalog/views.py @@ -1,30 +1,101 @@ # -*- coding: utf-8 -*- from django.views.generic import CreateView, UpdateView, DeleteView, ListView, DetailView from .forms import * -from django.core.urlresolvers import reverse +from django.core.urlresolvers import reverse_lazy +from django.conf import settings +from django.shortcuts import get_object_or_404 class SpecialistCreateView(CreateView): form_class = SpecialistForm model = Specialist template_name = 'admin/specialist/specialist_new.html' - success_url = reverse("specialist_all") + success_url = reverse_lazy("specialist_all") class SpecialistListView(ListView): model = Specialist template_name = 'admin/specialist/specialist_all.html' + paginate_by = settings.ADMIN_PAGINATION class SpecialistUpdateView(UpdateView): form_class = SpecialistForm model = Specialist template_name = 'admin/specialist/specialist_new.html' - success_url = reverse("specialist_all") + success_url = reverse_lazy("specialist_all") + + def get_form(self, form_class): + form = super(SpecialistUpdateView, self).get_form(form_class) + form.fields['city'].widget.attrs['data-init-text'] = self.object.city.name + return form class SpecialistDeleteView(DeleteView): model = Specialist template_name = 'admin/specialist/specialist_confirm_delete.html' - success_url = reverse("specialist_all") + success_url = reverse_lazy("specialist_all") + + +class CatalogCreateView(CreateView): + form_class = SpecialistCatalogForm + model = SpecialistCatalog + template_name = 'admin/specialist/catalog_new.html' + success_url = reverse_lazy("catalog_all") + + +class CatalogListView(ListView): + model = SpecialistCatalog + template_name = 'admin/specialist/catalog_all.html' + paginate_by = settings.ADMIN_PAGINATION + + +class CatalogUpdateView(UpdateView): + form_class = SpecialistCatalogForm + model = SpecialistCatalog + template_name = 'admin/specialist/catalog_new.html' + success_url = reverse_lazy("catalog_all") + + def get_form(self, form_class): + form = super(CatalogUpdateView, self).get_form(form_class) + if self.object.type is 2: # city + form.fields['city'].widget.attrs['data-init-text'] = self.object.city.name + return form + + +class CatalogDeleteView(DeleteView): + model = SpecialistCatalog + template_name = 'admin/specialist/catalog_confirm_delete.html' + success_url = reverse_lazy("catalog_all") + + +class FeedbackCreateView(CreateView): + form_class = FeedbackForm + model = Feedback + template_name = 'admin/specialist/feedback_new.html' + success_url = reverse_lazy("catalog_all") + + def get_initial(self): + catalog = get_object_or_404(SpecialistCatalog, pk=self.kwargs.get('pk')) + return {'catalog': catalog} + +# class FeedbackListView(ListView): +# model = Feedback +# template_name = 'admin/specialist/feedback_all.html' +# paginate_by = settings.ADMIN_PAGINATION + + +class FeedbackUpdateView(UpdateView): + form_class = FeedbackForm + model = Feedback + template_name = 'admin/specialist/feedback_new.html' + success_url = reverse_lazy("catalog_all") + + def get_initial(self): + catalog = get_object_or_404(SpecialistCatalog, pk=self.kwargs.get('id')) + return {'catalog': catalog} +class FeedbackDeleteView(DeleteView): + model = Feedback + template_name = 'admin/specialist/feedback_confirm_delete.html' + success_url = reverse_lazy("catalog_all") diff --git a/static/custom_js/specialist.js b/static/custom_js/specialist.js new file mode 100644 index 00000000..560d85a8 --- /dev/null +++ b/static/custom_js/specialist.js @@ -0,0 +1,93 @@ +/** + * Created by dev on 07.09.2015. + */ +$(document).ready(function () { + $('select').select2({ + width: 'element', + allowClear: true + }); + + $('#id_country').change(function () { + $.get( + "/admin/ajax_city/", {'id': $(this).val()}, function (j) { + + $('#id_city').html(j); + $('#id_city').attr('disabled', false); + + }); + }); + + + $('#id_city').select2({ + placeholder: "Город", + width: 300, + ajax: { + + url: "/admin/city/search/", + dataType: "json", + quietMillis: 200, + + data: function (term, page, country) { + var country = $('#id_country').val(); + return { + term: term, + page: page, + country: country + }; + }, + + results: function (data) { + var results = []; + $.each(data, function (index, item) { + results.push({ + id: item.id, + text: item.label + }); + }); + return {results: results}; + } + }, + initSelection: function (element, callback) { + var id = $(element).val(); + var text = $(element).attr('data-init-text'); + callback({id: id, text: text}); + + } + + }); + + + // displaying uploaded photo + + function handleFileSelect(evt) { + var files = evt.target.files; // FileList object + + // Loop through the FileList and render image files as thumbnails. + for (var i = 0, f; f = files[i]; i++) { + + // Only process image files. + if (!f.type.match('image.*')) { + continue; + } + + var reader = new FileReader(); + + // Closure to capture the file information. + + reader.onload = (function (theFile) { + return function (e) { + document.getElementById('list').innerHTML = [''].join(''); + }; + })(f); + + + // Read in the image file as a data URL. + reader.readAsDataURL(f); + } + } + + document.getElementById('id_photo').addEventListener('change', handleFileSelect, false); + document.getElementById('id_logo').addEventListener('change', handleFileSelect, false); + console.log("hello from new specialist view.js"); +}); \ No newline at end of file diff --git a/static/custom_js/specialist_catalog.js b/static/custom_js/specialist_catalog.js new file mode 100644 index 00000000..cdc3ef55 --- /dev/null +++ b/static/custom_js/specialist_catalog.js @@ -0,0 +1,120 @@ +/** + * Created by dev on 07.09.2015. + */ +$(document).ready(function () { + $('select').select2({ + width: 'element', + allowClear: true + }); + + $('#id_country').change(function () { + $.get( + "/admin/ajax_city/", {'id': $(this).val()}, function (j) { + + $('#id_city').html(j); + $('#id_city').attr('disabled', false); + + }); + }); + + + $('#id_city').select2({ + placeholder: "Город", + width: 300, + ajax: { + + url: "/admin/city/search/", + dataType: "json", + quietMillis: 200, + + data: function (term, page, country) { + var country = $('#id_country').val(); + return { + term: term, + page: page, + country: country + }; + }, + + results: function (data) { + var results = []; + $.each(data, function (index, item) { + results.push({ + id: item.id, + text: item.label + }); + }); + return {results: results}; + } + }, + initSelection: function (element, callback) { + var id = $(element).val(); + var text = $(element).attr('data-init-text'); + callback({id: id, text: text}); + + } + + }); + + + // displaying uploaded photo + + function handleFileSelect1(evt) { + var files = evt.target.files; // FileList object + + // Loop through the FileList and render image files as thumbnails. + for (var i = 0, f; f = files[i]; i++) { + + // Only process image files. + if (!f.type.match('image.*')) { + continue; + } + + var reader = new FileReader(); + + // Closure to capture the file information. + + reader.onload = (function (theFile) { + return function (e) { + document.getElementById('list_picture').innerHTML = [''].join(''); + }; + })(f); + + + // Read in the image file as a data URL. + reader.readAsDataURL(f); + } + } + function handleFileSelect2(evt) { + var files = evt.target.files; // FileList object + + // Loop through the FileList and render image files as thumbnails. + for (var i = 0, f; f = files[i]; i++) { + + // Only process image files. + if (!f.type.match('image.*')) { + continue; + } + + var reader = new FileReader(); + + // Closure to capture the file information. + + reader.onload = (function (theFile) { + return function (e) { + document.getElementById('list_logo').innerHTML = [''].join(''); + }; + })(f); + + + // Read in the image file as a data URL. + reader.readAsDataURL(f); + } + } + + document.getElementById('id_place_photo').addEventListener('change', handleFileSelect1, false); + document.getElementById('id_logo_preview').addEventListener('change', handleFileSelect2, false); + console.log("hello from new catalog view.js"); +}); \ No newline at end of file diff --git a/templates/admin/specialist/catalog_all.html b/templates/admin/specialist/catalog_all.html new file mode 100644 index 00000000..73c42069 --- /dev/null +++ b/templates/admin/specialist/catalog_all.html @@ -0,0 +1,62 @@ +{% extends 'base.html' %} +{% load thumbnail %} +{% block body %} +
      +
      +

      Все каталоги специалистов

      +
      +
      + + + + + + + + + + + + + {% for item in object_list %} + + + + + + + + + + + {% endfor %} + +
        ЗаголовокТипКоличество специалистов 
      + {% thumbnail item.logo_preview "100x100" crop="center" as im %} + + {% endthumbnail %}{{ item.title }}{% if item.type == 1%}Страна{% else %}Город{% endif %}{{ item.specialists.count }} + + Изменить + + + + Удалить + +
      + + Хочу еще один +
      + + +
      +{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/catalog_confirm_delete.html b/templates/admin/specialist/catalog_confirm_delete.html new file mode 100644 index 00000000..6dd1ae8e --- /dev/null +++ b/templates/admin/specialist/catalog_confirm_delete.html @@ -0,0 +1,11 @@ +{% extends 'base.html' %} +{% block sidebar %}{% endblock %} +{% block body %} +
      {% csrf_token %} +
      +

      Вы точно хотите удалить "{{ object.title }}" ?

      + + Нет +
      +
      +{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/catalog_new.html b/templates/admin/specialist/catalog_new.html new file mode 100644 index 00000000..024a2911 --- /dev/null +++ b/templates/admin/specialist/catalog_new.html @@ -0,0 +1,195 @@ +{% extends 'base.html' %} +{% load thumbnail %} +{% load static %} +{# Displays article form #} + + {% block scripts %} + + {# selects for city and country #} + + + + + {% endblock %} + +{% block body %} +
      {% csrf_token %} +
      +
      +
      +

      Добавление каталога специалистов(переводчиков)

      +
      +
      + {# title #} +
      + +
      + {{ form.title }} + {{ form.title.errors }} +
      +
      + {# main_descr #} +
      + +
      + {{ form.main_descr }} + {{ form.main_descr.errors }} +
      +
      + + {# benefits #} +
      + +
      + {{ form.benefits }} + {{ form.benefits.errors }} +
      +
      + + {# price #} +
      + +
      + {{ form.price }}{{ form.currency.label }}{{ form.currency }} + {{ form.price.errors }} +
      +
      + + {# type #} +
      + +
      + {{ form.type }} + {{ form.type.errors }} +
      +
      + + {# country #} +
      + +
      + {{ form.country }} + {{ form.country.errors }} +
      +
      + {# city #} +
      + +
      + {{ form.city }} + {{ form.city.errors }} +
      +
      + + {# specialists #} +
      + +
      + {{ form.specialists }}Довавить + {{ form.specialists.errors }} +
      +
      + {# logo_preview #} +
      + +
      + {{ form.logo_preview }} + {{ form.logo_preview.errors }} +
      +
      + {# place_photo #} +
      + +
      + {{ form.place_photo }} + {{ form.place_photo.errors }} +
      +
      + +
      +
      + + +
      +
      + + + {% if object.feedback_set.all %} + {% with object.feedback_set.all as feedbacks %} + +
      +
      +

      Отзывы для текущего каталога

      +
      +
      + + + + + + + + + + + + + {% for item in feedbacks %} + + + + + + + + + + + {% endfor %} + +
      ЛоготипИмяКомпанияТекст 
      + {% thumbnail item.logo "100x100" crop="center" as im %} + + {% endthumbnail %}{{ item.name }}{{ item.company }}{{ item.text }} + + Изменить + + + + Удалить + +
      + + Хочу еще один +
      + + +
      + {% endwith %} + {% elif object.id %} + Отзывов еще нет, + + Добавить + {% endif %} +{% endblock %} diff --git a/templates/admin/specialist/feedback_all.html b/templates/admin/specialist/feedback_all.html new file mode 100644 index 00000000..2d40605f --- /dev/null +++ b/templates/admin/specialist/feedback_all.html @@ -0,0 +1,62 @@ +{% extends 'base.html' %} +{% load thumbnail %} +{% block body %} +
      +
      +

      Отзывы для %(calatolog)

      +
      +
      + + + + + + + + + + + + + {% for item in object_list %} + + + + + + + + + + + {% endfor %} + +
      Логотип ИмяКомпанияТекст 
      + {% thumbnail item.logo "100x100" crop="center" as im %} + + {% endthumbnail %}{{ item.name }}{{ item.company }}{{ item.text }} + + Изменить + + + + Удалить + +
      + + Хочу еще один +
      + + +
      +{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/feedback_confirm_delete.html b/templates/admin/specialist/feedback_confirm_delete.html new file mode 100644 index 00000000..2314e117 --- /dev/null +++ b/templates/admin/specialist/feedback_confirm_delete.html @@ -0,0 +1,11 @@ +{% extends 'base.html' %} +{% block sidebar %}{% endblock %} +{% block body %} +
      {% csrf_token %} +
      +

      Вы точно хотите удалить "{{ object.name }}" ?

      + + Нет +
      +
      +{% endblock %} \ No newline at end of file diff --git a/templates/admin/specialist/feedback_new.html b/templates/admin/specialist/feedback_new.html new file mode 100644 index 00000000..404651b1 --- /dev/null +++ b/templates/admin/specialist/feedback_new.html @@ -0,0 +1,79 @@ +{% extends 'base.html' %} +{% load static %} +{# Displays article form #} + + {% block scripts %} + {# selects for city and country #} + + + + + {% endblock %} + +{% block body %} +
      {% csrf_token %} +
      +
      +
      +

      Добавление отз ва

      +
      +
      + {# name #} +
      + +
      + {{ form.name }} + {{ form.name.errors }} +
      +
      + {# company #} +
      + +
      + {{ form.company }} + {{ form.company.errors }} +
      +
      + {# text #} +
      + +
      + {{ form.text }} + {{ form.text.errors }} +
      +
      + {# catalog #} +
      + +
      + {{ form.catalog }} + {{ form.catalog.errors }} +
      +
      + {# logo #} +
      + +
      + {{ form.logo }} + {{ form.logo.errors }} +
      +
      + +
      +
      + +
      + + + +
      +
      +
      + +{% endblock %} diff --git a/templates/admin/specialist/specialist_all.html b/templates/admin/specialist/specialist_all.html index b4c33f27..7899d553 100644 --- a/templates/admin/specialist/specialist_all.html +++ b/templates/admin/specialist/specialist_all.html @@ -1,4 +1,5 @@ {% extends 'base.html' %} +{% load thumbnail %} {% block body %}
      @@ -9,8 +10,10 @@ + Фото Имя - Заголовок + Город + Языки   @@ -18,16 +21,21 @@ {% for item in object_list %} - {{ item.url }} - {{ item.title }} + + {% thumbnail item.photo "100x100" crop="center" as im %} + + {% endthumbnail %} + {{ item.name }} + {{ item.city.name }} + {{ item.languages }} - + Изменить - + Удалить @@ -35,8 +43,8 @@ {% endfor %} - - Добавить seo-текст + + Хочу еще
      + {# big_cities #} +
      + +
      + {{ form.big_cities }} + {{ form.big_cities.errors }} +
      +
      {# price #}
      @@ -156,7 +164,7 @@ {{ item.company }} {{ item.text }} - + Изменить @@ -189,7 +197,7 @@ {% endwith %} {% elif object.id %} Отзывов еще нет, - + Добавить {% endif %} {% endblock %} diff --git a/templates/client/specialist_catalog/catalog_detailed.html b/templates/client/specialist_catalog/catalog_detailed.html new file mode 100644 index 00000000..b0c079da --- /dev/null +++ b/templates/client/specialist_catalog/catalog_detailed.html @@ -0,0 +1,326 @@ +{% extends "client/base_catalog.html" %} +{% load static %} +{% load thumbnail %} +{% load i18n %} + +{% block head_scripts %} + +{% endblock %} + +{% block page_body%} +
      + +
      + +
      + + +
      +
      +
      {{ object.title }}
      +
      + +
      + {{ object.main_descr }} +
      +
      + +
      + +{# #} +
      + {% thumbnail object.place_photo "957x400" crop="center" as im %} + + {% endthumbnail %} +
      + +{# #} +{#
      #} +{# #} +{# #} +{#
      #} +{# #} +{#
      #} +
      + +
      +
      + {{ object.big_cities }} +
      +

      Крупные города:

      + {{ object.big_cities }} +
      + +
      + +
      +
      +

      Коротко о наших преимуществах:

      +
      + {{ object.benefits|safe }} +
      +
      +
      + +{# ----------------------------------------- FORM ----------------------------------------------#} +
      + {% csrf_token %} + +
      + +
      + +
      {% trans 'Информация о переводе' %}
      + +
      + +
      + {{ form.languages }} + +
      + +
      + {{ form.themes }} + + +
      +
      + +
      + +
      + {{ form.days }} {% trans 'дней' %} +
      + +
      + {{ form.hours }} {% trans 'часов в день' %} +
      +
      + +
      + +
      +
      +
      + + {{ form.fr }} +
      + {{ form.fr.errors }} + +
      +
      +
      + + {{ form.to }} +
      + {{ form.to.errors }} + +
      +
      +
      +
      +
      + +
      + +
      + +
      + +
      {% trans 'Ваши контактные данные' %}
      + {% if not object %} +
      +
      + {{ form.event }} +
      + {{ form.event.errors }} + +
      +
      +
      + {% endif %} + +
      +
      + {{ form.person_inf }} +
      + {{ form.person_inf.errors }} + +
      +
      +
      + +
      +
      + {{ form.country }} +
      + {{ form.country.errors }} + +
      +
      + +
      + {{ form.city }} +
      + {{ form.city.errors }} + +
      +
      +
      + +
      +
      + {{ form.phone }} +
      + {{ form.phone.errors }} + +
      +
      + +
      + {{ form.person }} +
      + {{ form.person.errors }} + +
      +
      +
      + +
      + +
      + +
      + +
      +
      +
      + +
      +
      +
      + +
      + + +
      +{# ----------------------------------------- END FORM -------------------------------------------#} + +
      +
      +
      +
      +
      +
      от {{ object.price }} {{ object.currency }} / день
      + +
      +
      +
      +
      +
      + + + + +
      + {% if request.GET.debug == '1' %} + + {% else %} + + {% endif %} + + + + + + {% with object.specialists.all as specialists %} + {% if specialists %} +
      +
      Наши специалисты
      + + + +
      + {% endif %} + {% endwith %} + +
      + {% with object.feedback_set.all as feedbacks %} + {% if feedbacks %} +
      + +
      +
      Отзывы клиентов:
      +
      + {% for feedback in feedbacks %} +
      +
      + +
      + {% thumbnail feedback.logo "100x100" crop="center" as im %} + + {% endthumbnail %} +
      +
      +
      +
      +
      {{ feedback.company }}
      +
      +
      + +
      {{ feedback.name }}
      + +
      + {{ feedback.text }} +
      +
      + +
      +
      + {% endfor %} +
      +
      + +
      + {% endif %} + {% endwith %} + +
      + +{% endblock %} \ No newline at end of file From 72014cdf0243596388fee6da241328b4d15dc1ca Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Mon, 14 Sep 2015 16:42:43 +0300 Subject: [PATCH 26/45] refactor some views and filling db scripts --- specialist_catalog/management/__init__.py | 1 + .../management/commands/__init__.py | 1 + .../management/commands/create_city_page.py | 34 +++++++++++++ .../commands/create_country_page.py | 33 ++++++++++++ specialist_catalog/models.py | 22 ++++---- specialist_catalog/urls.py | 6 +-- specialist_catalog/views.py | 51 +++++-------------- 7 files changed, 96 insertions(+), 52 deletions(-) create mode 100644 specialist_catalog/management/__init__.py create mode 100644 specialist_catalog/management/commands/__init__.py create mode 100644 specialist_catalog/management/commands/create_city_page.py create mode 100644 specialist_catalog/management/commands/create_country_page.py diff --git a/specialist_catalog/management/__init__.py b/specialist_catalog/management/__init__.py new file mode 100644 index 00000000..b29e46c3 --- /dev/null +++ b/specialist_catalog/management/__init__.py @@ -0,0 +1 @@ +__author__ = 'dart_vaider' diff --git a/specialist_catalog/management/commands/__init__.py b/specialist_catalog/management/commands/__init__.py new file mode 100644 index 00000000..b29e46c3 --- /dev/null +++ b/specialist_catalog/management/commands/__init__.py @@ -0,0 +1 @@ +__author__ = 'dart_vaider' diff --git a/specialist_catalog/management/commands/create_city_page.py b/specialist_catalog/management/commands/create_city_page.py new file mode 100644 index 00000000..7a6a3138 --- /dev/null +++ b/specialist_catalog/management/commands/create_city_page.py @@ -0,0 +1,34 @@ +# -*- coding: utf-8 -*- + +from django.core.management.base import BaseCommand +from city.models import City +from specialist_catalog.models import SpecialistCatalog + +default_text = u"Планируете посетить выставку в %s?" \ + u" Мы предлагаем Вам подобрать переводчика именно под Ваши цели и потребности. " \ + u"Специализируясь уже более 7 лет на предоставлении переводчиков на выставки и конференции " \ + u"%s, мы можем предоставить профессионалов со знанием разных " \ + u"языков на гибких для Вас условиях. Каждый заказ индивидуален для нас, " \ + u"и итоговая цена зависит от вида перевода, тематики, срочности подбора " \ + u"специалиста, города и объема работы." +default_title = u"Переводчики в %s" +default_logo = "specialist_catalog/logo_preview/default_logo.jpg" +default_cities = u"
      • Лондон
      • Киев
      • Барселона
      " + + +class Command(BaseCommand): + def handle(self, *args, **options): + cities = list(City.objects.language('ru').order_by('id')) + for cty in cities: + name = cty.inflect or cty.name + sc = SpecialistCatalog( + type=2, + country=cty.country, + city=cty, + title=default_title % name, + main_descr=default_text % (name, name), + logo_preview=default_logo, + big_cities=default_cities, + ) + sc.save() + print cty.url, " -> ", cty.country.url diff --git a/specialist_catalog/management/commands/create_country_page.py b/specialist_catalog/management/commands/create_country_page.py new file mode 100644 index 00000000..5f039274 --- /dev/null +++ b/specialist_catalog/management/commands/create_country_page.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +from django.core.management.base import BaseCommand +from country.models import Country +from specialist_catalog.models import SpecialistCatalog + +default_text = u"Планируете посетить выставку в %s?" \ + u" Мы предлагаем Вам подобрать переводчика именно под Ваши цели и потребности. " \ + u"Специализируясь уже более 7 лет на предоставлении переводчиков на выставки и конференции " \ + u"%s, мы можем предоставить профессионалов со знанием разных " \ + u"языков на гибких для Вас условиях. Каждый заказ индивидуален для нас, " \ + u"и итоговая цена зависит от вида перевода, тематики, срочности подбора " \ + u"специалиста, города и объема работы." +default_title = u"Переводчики в %s" +default_logo = "specialist_catalog/logo_preview/ukraine.gif" +default_cities = u"
      • Лондон
      • Киев
      • Барселона
      " +lang = 'ru' + + +class Command(BaseCommand): + def handle(self, *args, **options): + countries = Country.objects.language('ru').order_by('name') + for cntry in countries: + name = cntry.inflect or cntry.name + sc = SpecialistCatalog( + type='1', + country=cntry, + title=default_title % name, + main_descr=default_text % (name, name), + logo_preview=default_logo, + big_cities=default_cities, + ) + sc.save() + print "created for: %s" % cntry.url diff --git a/specialist_catalog/models.py b/specialist_catalog/models.py index 2d54cd4a..32fd0e35 100644 --- a/specialist_catalog/models.py +++ b/specialist_catalog/models.py @@ -2,22 +2,21 @@ from django.db import models from django.conf import settings from hvad.models import TranslatableModel, TranslatedFields, TranslationManager -from functions.form_check import translit_with_separator as tws from city.models import City from country.models import Country from django.core.urlresolvers import reverse_lazy +from django.utils.translation import get_language import copy - # types of catalog _country = 1 _city = 2 class Specialist(models.Model): - name = models.CharField(max_length=255, verbose_name=u"Полное имя") + name = models.CharField(max_length=255, verbose_name=u"Полное имя", blank=False) languages = models.CharField(max_length=255, verbose_name=u"Языки") - city = models.ForeignKey(City, on_delete=models.PROTECT, verbose_name=u"Город") + city = models.ForeignKey(City, on_delete=models.PROTECT, verbose_name=u"Город", blank=True) country = models.ForeignKey(Country, on_delete=models.PROTECT, verbose_name=u"Страна") photo = models.ImageField(verbose_name=u"Фото", upload_to="specialist_catalog/specialist_photo/", blank=True) @@ -31,8 +30,8 @@ class SpecialistCatalog(TranslatableModel): logo_preview = models.ImageField(verbose_name=u"Логотип", blank=True, upload_to='specialist_catalog/logo_preview/') place_photo = models.ImageField(verbose_name=u"Фото для города", blank=True, upload_to='specialist_catalog/place_photo/') specialists = models.ManyToManyField(Specialist, verbose_name=u"Специалисты", blank=True) - city = models.ForeignKey(City, on_delete=models.PROTECT, verbose_name=u"Город") - country = models.ForeignKey(Country, on_delete=models.PROTECT, verbose_name=u"Страна") + city = models.ForeignKey(City, on_delete=models.PROTECT, verbose_name=u"Город", unique=True, blank=True) + country = models.ForeignKey(Country, on_delete=models.PROTECT, verbose_name=u"Страна", blank=False) type = models.PositiveSmallIntegerField(verbose_name=u"Тип(Страна/Город)", default=2) translations = TranslatedFields( @@ -50,13 +49,12 @@ class SpecialistCatalog(TranslatableModel): def get_absolute_url(self): global _country, _city if self.type == _country: - return reverse_lazy('spec_catalog_country', kwargs={'slug':tws(self.country.name)}) - else: - return reverse_lazy('spec_catalog_city', kwargs={'slug':tws(self.city.name)}) + return reverse_lazy('spec_catalog_country', kwargs={'slug': self.country.url}) + return reverse_lazy('spec_catalog_city', kwargs={'slug': self.city.url}) def save(self, *args, **kwargs): super(SpecialistCatalog, self).save(*args, **kwargs) - self.initial_language = 'ru' + self.initial_language = get_language()[:2] or 'ru' new_values = {field: getattr(self, field) for field in self.cache_fields} langs = [code for code, _ in settings.LANGUAGES] @@ -68,7 +66,7 @@ class SpecialistCatalog(TranslatableModel): setattr(self, key, value) self.save_translations(self) else: - translations = {obj.language_code:obj for obj in list(self.translations.all())} + translations = {obj.language_code: obj for obj in list(self.translations.all())} for lang in langs: if lang is not self.initial_language: tr = translations[lang] @@ -91,7 +89,7 @@ class Feedback(models.Model): name = models.CharField(max_length=100, verbose_name=u"Имя") text = models.CharField(max_length=5000, verbose_name=u"Текст отзыва") logo = models.ImageField(verbose_name=u"Логотип компании", upload_to='specialist_catalog/feedback_logo/', blank=True) - catalog = models.ForeignKey(SpecialistCatalog, verbose_name=u"Страница") + catalog = models.ForeignKey(SpecialistCatalog, verbose_name=u"Страница", blank=False) def __unicode__(self): return "Feedback from %s" % self.company diff --git a/specialist_catalog/urls.py b/specialist_catalog/urls.py index 47f45dd5..a79bb14b 100644 --- a/specialist_catalog/urls.py +++ b/specialist_catalog/urls.py @@ -1,8 +1,8 @@ # -*- coding: utf-8 -*- from django.conf.urls import url, patterns -from .views import CatalogDetailedCityView, CatalogDetailedCountryView +from .views import CatalogDetailedView urlpatterns = patterns('', - url(r'^city/(?P.*)/$', CatalogDetailedCityView.as_view(), name="spec_catalog_city"), - url(r'^country/(?P.*)/$', CatalogDetailedCountryView.as_view(), name="spec_catalog_country"), + url(r'^city/(?P.*)/$', CatalogDetailedView.as_view(), {'type': 'city'}, name="spec_catalog_city"), + url(r'^country/(?P.*)/$', CatalogDetailedView.as_view(), {'type': 'country'}, name="spec_catalog_country"), ) \ No newline at end of file diff --git a/specialist_catalog/views.py b/specialist_catalog/views.py index 0dd43edb..36167693 100644 --- a/specialist_catalog/views.py +++ b/specialist_catalog/views.py @@ -7,7 +7,7 @@ from django.conf import settings from django.shortcuts import get_object_or_404 from service.order_forms import TranslationForm from django.http import HttpResponseRedirect - +from django.utils.translation import get_language # =========== ADMIN VIEWS =========== @@ -131,56 +131,28 @@ class FeedbackDeleteView(DeleteView): success_url = reverse_lazy("catalog_all") -# class FeedbackListView(ListView): -# model = Feedback -# template_name = 'admin/specialist/feedback_all.html' -# paginate_by = settings.ADMIN_PAGINATION - # ========= CLIENT VIEWS ============ - -class CatalogDetailedCityView(SingleObjectMixin, FormView): - model = SpecialistCatalog - form_class = TranslationForm - template_name = "client/specialist_catalog/catalog_detailed.html" - success_url = reverse_lazy("service_thanks") - - def get_object(self, queryset=None): - obj = self.model.objects.language().get(city__url=self.kwargs.get('slug')) - self.object = obj - return obj - - def get_context_data(self, **kwargs): - self.get_object() - context = super(CatalogDetailedCityView, self).get_context_data(**kwargs) - context['object'] = self.object - return context - - def form_valid(self, form): - order = form.save(commit=False) - order.save() - return HttpResponseRedirect(self.success_url) - - def get_initial(self): - obj = self.get_object() - return {'country':obj.country.name, 'city':obj.city.name} +lang = get_language()[:2] -class CatalogDetailedCountryView(SingleObjectMixin, FormView): +class CatalogDetailedView(SingleObjectMixin, FormView): model = SpecialistCatalog form_class = TranslationForm template_name = "client/specialist_catalog/catalog_detailed.html" success_url = reverse_lazy("service_thanks") - def get_object(self, queryset=None): - obj = self.model.objects.language().get(country__url=self.kwargs.get('slug')) + if self.kwargs.get('type') is "country": + obj = self.model.objects.language(lang).get(country__url=self.kwargs.get('slug')) + else: + obj = self.model.objects.language(lang).get(city__url=self.kwargs.get('slug')) self.object = obj return obj def get_context_data(self, **kwargs): self.get_object() - context = super(CatalogDetailedCountryView, self).get_context_data(**kwargs) + context = super(CatalogDetailedView, self).get_context_data(**kwargs) context['object'] = self.object return context @@ -191,4 +163,9 @@ class CatalogDetailedCountryView(SingleObjectMixin, FormView): def get_initial(self): obj = self.get_object() - return {'country':obj.country.name} \ No newline at end of file + init = {} + init['country'] = obj.country.name + if self.kwargs.get('type') is "city": + init['city'] = obj.city.name + return init + From 42034b8d9c1962f9ae40b02c220c5e567345a812 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Thu, 17 Sep 2015 14:40:33 +0300 Subject: [PATCH 27/45] expobanner: ordering by date(active), column 'at all' --- expobanner/admin.py | 39 ++++++++++++++++++++--- expobanner/forms.py | 2 +- expobanner/models.py | 9 ++++-- exposition/models.py | 16 ++++++++-- templates/admin/expobanner/main_list.html | 21 ++++++++++-- templates/admin/expobanner/main_stat.html | 10 +++++- templates/admin/expobanner/paid_list.html | 19 +++++++++-- templates/admin/expobanner/paid_stat.html | 7 ++++ templates/admin/expobanner/top_list.html | 15 ++++++++- 9 files changed, 120 insertions(+), 18 deletions(-) diff --git a/expobanner/admin.py b/expobanner/admin.py index 311c83f8..0fe5c1bc 100644 --- a/expobanner/admin.py +++ b/expobanner/admin.py @@ -3,6 +3,7 @@ from django.views.generic import TemplateView, CreateView, ListView, UpdateView, from django.conf import settings from django.http import HttpResponseRedirect from django.shortcuts import get_object_or_404 +from django.db.models import Sum from expobanner.models import URL, BannerGroup, Banner, Paid, MainPage, Top from expobanner.forms import UrlCreateForm, BannerCreateGroupForm, BannerCreateForm, BannerGroupUpdateForm,\ PaidCreateForm, PaidUpdateForm, TopCreateForm, BannerLinkCreateForm, MainCreateForm, MainUpdateForm, TopUpdateForm @@ -32,6 +33,7 @@ class CreateBanner(AbstractCreate): model = Banner form_class = BannerCreateForm + class CreateLink(AbstractCreate): model = Banner form_class = BannerLinkCreateForm @@ -67,6 +69,7 @@ class BannerList(AbstractList): qs = qs.filter(group__isnull=False) return qs + class LinkList(AbstractList): model = Banner verbose = u'Список ссылок' @@ -114,7 +117,10 @@ class PaidList(ListView): paginate_by = settings.ADMIN_PAGINATION def get_queryset(self): - return self.model.objects.language().filter(paid_new__isnull=False) + qs = self.model.objects.language().filter(paid_new__isnull=False).order_by('-paid_new__public') + if self.request.GET.get('onlypublic'): + qs = qs.filter(paid_new__public=True) + return qs class PaidCreate(CreateView): @@ -162,6 +168,18 @@ class PaidStat(DetailView): model = Paid template_name = 'admin/expobanner/paid_stat.html' + def get_context_data(self, **kwargs): + context = super(PaidStat, self).get_context_data(**kwargs) + obj = self.object + context['all'] = obj.paidstat_set.aggregate( + official=Sum('official_clicks'), + ticket=Sum('tickets_clicks'), + participation=Sum('participation_clicks'), + catalog=Sum('catalog_clicks') + ) + return context + + # ---------------------------------- class MainList(ListView): model = Exposition @@ -169,7 +187,10 @@ class MainList(ListView): paginate_by = settings.ADMIN_PAGINATION def get_queryset(self): - return self.model.objects.language().filter(main__isnull=False) + qs = self.model.objects.language().filter(main__isnull=False).order_by('-main__public') + if self.request.GET.get('onlypublic'): + qs = qs.filter(main__public=True) + return qs class MainCreate(CreateView): @@ -202,6 +223,7 @@ def main_turn(request, pk, status): return HttpResponseRedirect('/admin/expobanners/main/list/') + class MainStat(DetailView): model = MainPage template_name = 'admin/expobanner/main_stat.html' @@ -210,10 +232,16 @@ class MainStat(DetailView): context = super(MainStat, self).get_context_data(**kwargs) obj = self.object context['stats'] = obj.link.banner_stat.all() + context['all'] = obj.link.banner_stat.aggregate( + views=Sum('view'), + clicks=Sum('click'), + unique_clicks=Sum('unique_click'), + unique_views=Sum('unique_view') + ) return context # ------------------------------------ - +from datetime import date class TopList(ListView): model = Exposition @@ -221,7 +249,10 @@ class TopList(ListView): paginate_by = settings.ADMIN_PAGINATION def get_queryset(self): - return self.model.objects.language().filter(top__isnull=False) + qs = self.model.objects.language().filter(top__isnull=False).order_by('-top__fr') + if self.request.GET.get('onlypublic'): + qs = qs.filter(top__fr__lte=date.today(), top__to__gte=date.today()) + return qs class TopCreate(CreateView): diff --git a/expobanner/forms.py b/expobanner/forms.py index 85f479ea..84d45965 100644 --- a/expobanner/forms.py +++ b/expobanner/forms.py @@ -267,4 +267,4 @@ class TopUpdateForm(forms.ModelForm): top.save() self.save_m2m() - return top + return top \ No newline at end of file diff --git a/expobanner/models.py b/expobanner/models.py index 5acbdca1..2208fc9a 100644 --- a/expobanner/models.py +++ b/expobanner/models.py @@ -113,7 +113,6 @@ class Banner(models.Model, StatMixin): def get_admin_url(self): return '/admin/expobanners/banners/banner/%d/edit/'%self.id - def key(slef): if hasattr(settings, 'SECRET_KEY'): key = str(datetime.now()) + settings.SECRET_KEY @@ -206,6 +205,9 @@ class LogStat(models.Model): def __unicode__(self): return '%s - (%s)' % (self.banner, self.date) + class Meta: + ordering = ['-date'] + # ------------------ class Paid(models.Model, StatMixin): @@ -241,6 +243,9 @@ class PaidStat(models.Model): participation_clicks = models.PositiveIntegerField(default=0) official_clicks = models.PositiveIntegerField(default=0) + class Meta: + ordering = ['-date'] + class Top(models.Model, StatMixin): link = models.ForeignKey(Banner) @@ -266,6 +271,7 @@ class Top(models.Model, StatMixin): except IndexError: return None + class TopStat(models.Model): date = models.DateField() theme = models.ForeignKey('theme.Theme', blank=True, null=True) @@ -317,7 +323,6 @@ def generate_stat_pass(sender, **kwargs): obj.save() - post_save.connect(generate_stat_pass, sender=Banner) post_save.connect(generate_stat_pass, sender=Paid) post_save.connect(generate_stat_pass, sender=Top) diff --git a/exposition/models.py b/exposition/models.py index 81474a3a..8a38e1a9 100644 --- a/exposition/models.py +++ b/exposition/models.py @@ -160,14 +160,12 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): paid_new = models.ForeignKey('expobanner.Paid', blank=True, null=True, on_delete=models.SET_NULL) top = models.ForeignKey('expobanner.Top', blank=True, null=True, on_delete=models.SET_NULL) + main = models.ForeignKey('expobanner.MainPage', blank=True, null=True, on_delete=models.SET_NULL) #set manager of this model(fisrt manager is default) objects = ExpoManager() enable = ClientManager() imports = ExpoImportManager() - - - def __unicode__(self): return self.lazy_translation_getter('name', unicode(self.pk)) @@ -308,6 +306,18 @@ class Exposition(TranslatableModel, EventMixin, ExpoMixin): def theme_ids(self): return [item['id'] for item in self.theme.all().values('id')] + def get_main_link(self): + if self.main: + return self.main.link.get_click_link() + else: + return self.get_permanent_url() + + def get_top_link(self): + if self.top: + return self.top.link.get_click_link() + else: + return self.get_permanent_url() + class Statistic(TranslatableModel): exposition = models.ForeignKey(Exposition, related_name='statistic') diff --git a/templates/admin/expobanner/main_list.html b/templates/admin/expobanner/main_list.html index 0175e392..a06a2411 100644 --- a/templates/admin/expobanner/main_list.html +++ b/templates/admin/expobanner/main_list.html @@ -1,4 +1,4 @@ -{% extends 'base.html' %} +{% extends 'admin/base.html' %} {% block body %} @@ -8,7 +8,14 @@
      {% block list_table %} - Добавить выставку + +
      +
      + Только опубликование +
      +
      @@ -36,5 +43,13 @@ {# pagination #} {% include 'admin/includes/admin_pagination.html' with page_obj=object_list %} - + {% endblock %} \ No newline at end of file diff --git a/templates/admin/expobanner/main_stat.html b/templates/admin/expobanner/main_stat.html index 1e1a5bb6..6c593bb7 100644 --- a/templates/admin/expobanner/main_stat.html +++ b/templates/admin/expobanner/main_stat.html @@ -1,4 +1,4 @@ -{% extends 'base.html' %} +{% extends 'admin/base.html' %} {% load static %} {% block scripts %} @@ -27,6 +27,14 @@ + + + + + + + + {% with stats=stats %} {% for stat in stats %} diff --git a/templates/admin/expobanner/paid_list.html b/templates/admin/expobanner/paid_list.html index 81402128..f4996058 100644 --- a/templates/admin/expobanner/paid_list.html +++ b/templates/admin/expobanner/paid_list.html @@ -8,8 +8,13 @@
      {% block list_table %} - Добавить выставку -
      Всего{{ all.views }}{{ all.clicks }}{{ all.unique_views}}{{ all.unique_clicks }}
      + Добавить выставку +
      +
      + Только опубликование + +
      +
      @@ -34,5 +39,13 @@ {# pagination #} {% include 'admin/includes/admin_pagination.html' with page_obj=object_list %} - + {% endblock %} \ No newline at end of file diff --git a/templates/admin/expobanner/paid_stat.html b/templates/admin/expobanner/paid_stat.html index b47791c5..86bbc620 100644 --- a/templates/admin/expobanner/paid_stat.html +++ b/templates/admin/expobanner/paid_stat.html @@ -27,6 +27,13 @@ + + + + + + + {% with stats=object.paidstat_set.all %} {% for stat in stats %} diff --git a/templates/admin/expobanner/top_list.html b/templates/admin/expobanner/top_list.html index 78642de7..13110d32 100644 --- a/templates/admin/expobanner/top_list.html +++ b/templates/admin/expobanner/top_list.html @@ -9,6 +9,11 @@
      {% block list_table %} Добавить выставку +
      +
      + Только активние + +
      Выставка
      За весь период{{ all.official }}{{ all.ticket }}{{ all.participation}}{{ all.catalog }}
      @@ -32,5 +37,13 @@ {# pagination #} {% include 'admin/includes/admin_pagination.html' with page_obj=object_list %} - + {% endblock %} \ No newline at end of file From 6bcc90412aa13a7cd0600ad2846d5fed7ceb7b7e Mon Sep 17 00:00:00 2001 From: Nazar Kotjuk Date: Thu, 17 Sep 2015 15:20:03 +0300 Subject: [PATCH 28/45] Template hot fixes --- expobanner/admin.py | 2 +- expobanner/admin_urls.py | 2 +- functions/models_methods.py | 6 ++- templates/client/blank.html | 1 + .../client/includes/article/blog_list.html | 2 +- .../client/includes/article/news_list.html | 2 +- .../client/includes/banners/aside_2.html | 15 +++---- .../client/includes/banners/aside_4.html | 9 ++++ .../includes/banners/catalog_inner.html | 35 +++++----------- .../includes/banners/catalog_inner_2.html | 21 ++++++++++ .../client/includes/banners/detail_inner.html | 41 +++++++++---------- .../includes/banners/detail_inner_3.html | 11 +++++ .../client/includes/banners/popup_2.html | 2 + .../client/includes/company/company_list.html | 2 +- .../includes/company/company_object.html | 1 + .../includes/conference/conference_list.html | 2 +- .../conference/conference_object.html | 1 + .../includes/exposition/exposition_list.html | 2 +- .../exposition/exposition_object.html | 3 +- .../client/includes/exposition/members.html | 2 +- .../includes/exposition/search_result.html | 2 +- .../client/includes/exposition/visitors.html | 2 +- .../client/includes/place/place_list.html | 2 +- .../client/includes/place/place_object.html | 1 + 24 files changed, 102 insertions(+), 67 deletions(-) create mode 100644 templates/client/includes/banners/detail_inner_3.html create mode 100644 templates/client/includes/banners/popup_2.html diff --git a/expobanner/admin.py b/expobanner/admin.py index 311c83f8..cfcaa599 100644 --- a/expobanner/admin.py +++ b/expobanner/admin.py @@ -241,4 +241,4 @@ class TopUpdate(UpdateView): context = super(TopUpdate, self).get_context_data(**kwargs) obj = self.object context['exposition'] = obj.get_event() - return context + return context \ No newline at end of file diff --git a/expobanner/admin_urls.py b/expobanner/admin_urls.py index d91abfca..cce3e1aa 100644 --- a/expobanner/admin_urls.py +++ b/expobanner/admin_urls.py @@ -29,7 +29,7 @@ urlpatterns = patterns('expobanner.admin', url(r'^top/list/$', TopList.as_view(), name='expobanner-list_top'), url(r'^top/(?P\d+)/edit/$', TopUpdate.as_view(), name='expobanner-update_top'), url(r'^top/$', TopCreate.as_view(), name='expobanner-create_top'), - url(r'^top/(?P\d+)/stat/$', PaidStat.as_view(), name='expobanner_stat_top'), + url(r'^top/(?P\d+)/stat/$', MainStat.as_view(), name='expobanner_stat_top'), # main page url(r'^main/list/$', MainList.as_view(), name='expobanner-list_main'), url(r'^main/(?P\d+)/edit/$', MainUpdate.as_view(), name='expobanner-update_main'), diff --git a/functions/models_methods.py b/functions/models_methods.py index 064667ac..c5c45e58 100644 --- a/functions/models_methods.py +++ b/functions/models_methods.py @@ -30,7 +30,11 @@ class ExpoManager(TranslationManager): key = 'expo_main_page_key_%s'%lang result = cache.get(key) if not result: - result = list(self.language(lang).select_related('country', 'city', 'place', 'main').prefetch_related('tag').filter(main__isnull=False)) + result = list(self.language(lang). + select_related('country', 'city', 'place', 'main'). + prefetch_related('tag'). + filter(main__isnull=False). + filter(main__public=True)) cache.set(key, result, 45) return result diff --git a/templates/client/blank.html b/templates/client/blank.html index 04a4d77e..594550da 100644 --- a/templates/client/blank.html +++ b/templates/client/blank.html @@ -137,6 +137,7 @@ This template include basic anf main styles and js files, {% include 'client/popups/callback.html' %} {% include 'client/includes/banners/popup.html' %} + {% include 'client/includes/banners/popup_2.html' %} {% block popup_banner %} {% endblock %} {# if user doesnt have url- show form #} diff --git a/templates/client/includes/article/blog_list.html b/templates/client/includes/article/blog_list.html index 0c70bd85..afd7969d 100644 --- a/templates/client/includes/article/blog_list.html +++ b/templates/client/includes/article/blog_list.html @@ -14,7 +14,7 @@ {% include 'client/includes/banners/catalog_inner_2.html' %} {% endif %} - {% if forloop.counter == 8 %} + {% if forloop.counter == 10 %} {% include 'client/includes/banners/catalog_inner.html' %} {%endif %} {% endfor %} diff --git a/templates/client/includes/article/news_list.html b/templates/client/includes/article/news_list.html index b2cc424b..8171901d 100644 --- a/templates/client/includes/article/news_list.html +++ b/templates/client/includes/article/news_list.html @@ -14,7 +14,7 @@ {% include 'client/includes/banners/catalog_inner_2.html' %} {% endif %} - {% if forloop.counter == 8 %} + {% if forloop.counter == 10 %} {% include 'client/includes/banners/catalog_inner.html' %} {%endif %} {% endfor %} diff --git a/templates/client/includes/banners/aside_2.html b/templates/client/includes/banners/aside_2.html index 439bfe68..0c637c72 100644 --- a/templates/client/includes/banners/aside_2.html +++ b/templates/client/includes/banners/aside_2.html @@ -5,17 +5,18 @@ yandex_partner_id = 58151; yandex_site_bg_color = 'FFFFF'; yandex_ad_format = 'direct'; - yandex_font_size = 1; - yandex_direct_type = 'vertical'; - yandex_direct_limit = 3; + yandex_direct_type = 'posterVertical'; + yandex_direct_border_type = 'ad'; + yandex_direct_limit = 2; yandex_direct_title_font_size = 3; yandex_direct_links_underline = false; - yandex_direct_title_color = '666666'; - yandex_direct_url_color = '000000'; + yandex_direct_border_color = 'CCCCCC'; + yandex_direct_title_color = '333333'; + yandex_direct_url_color = '666666'; yandex_direct_text_color = '000000'; yandex_direct_hover_color = 'FF8000'; - yandex_direct_sitelinks_color = 'FF8000'; - yandex_direct_favicon = false; + yandex_direct_sitelinks_color = '333333'; + yandex_direct_favicon = true; yandex_no_sitelinks = false; document.write(''); diff --git a/templates/client/includes/banners/aside_4.html b/templates/client/includes/banners/aside_4.html index 94d6023e..28a2f1c6 100644 --- a/templates/client/includes/banners/aside_4.html +++ b/templates/client/includes/banners/aside_4.html @@ -1,4 +1,13 @@
      + + + +
      \ No newline at end of file diff --git a/templates/client/includes/banners/catalog_inner.html b/templates/client/includes/banners/catalog_inner.html index ccf1add4..272f9963 100644 --- a/templates/client/includes/banners/catalog_inner.html +++ b/templates/client/includes/banners/catalog_inner.html @@ -1,26 +1,11 @@ -
      - - +
      + + + +
      \ No newline at end of file diff --git a/templates/client/includes/banners/catalog_inner_2.html b/templates/client/includes/banners/catalog_inner_2.html index b8ec5c0f..fd12557e 100644 --- a/templates/client/includes/banners/catalog_inner_2.html +++ b/templates/client/includes/banners/catalog_inner_2.html @@ -1,2 +1,23 @@
      + +
      \ No newline at end of file diff --git a/templates/client/includes/banners/detail_inner.html b/templates/client/includes/banners/detail_inner.html index 6d0760aa..e28563bd 100644 --- a/templates/client/includes/banners/detail_inner.html +++ b/templates/client/includes/banners/detail_inner.html @@ -1,25 +1,22 @@
      + yandex_partner_id = 58151; + yandex_site_bg_color = 'FFFFF'; + yandex_ad_format = 'direct'; + yandex_direct_type = 'posterHorizontal'; + yandex_direct_border_type = 'block'; + yandex_direct_limit = 3; + yandex_direct_title_font_size = 3; + yandex_direct_border_radius = true; + yandex_direct_links_underline = false; + yandex_direct_border_color = 'FBE5C0'; + yandex_direct_title_color = '333333'; + yandex_direct_url_color = '666666'; + yandex_direct_text_color = '000000'; + yandex_direct_hover_color = 'FF8000'; + yandex_direct_sitelinks_color = '333333'; + yandex_direct_favicon = true; + yandex_no_sitelinks = false; + document.write(''); +
      \ No newline at end of file diff --git a/templates/client/includes/banners/detail_inner_3.html b/templates/client/includes/banners/detail_inner_3.html new file mode 100644 index 00000000..7315e28e --- /dev/null +++ b/templates/client/includes/banners/detail_inner_3.html @@ -0,0 +1,11 @@ +
      + + + + +
      \ No newline at end of file diff --git a/templates/client/includes/banners/popup_2.html b/templates/client/includes/banners/popup_2.html new file mode 100644 index 00000000..75c55929 --- /dev/null +++ b/templates/client/includes/banners/popup_2.html @@ -0,0 +1,2 @@ + \ No newline at end of file diff --git a/templates/client/includes/company/company_list.html b/templates/client/includes/company/company_list.html index 89614691..b0089a78 100644 --- a/templates/client/includes/company/company_list.html +++ b/templates/client/includes/company/company_list.html @@ -64,7 +64,7 @@ {% include 'client/includes/banners/catalog_inner_2.html' %} {% endif %} - {% if forloop.counter == 8 %} + {% if forloop.counter == 10 %} {% include 'client/includes/banners/catalog_inner.html' %} {%endif %} {% endfor %} diff --git a/templates/client/includes/company/company_object.html b/templates/client/includes/company/company_object.html index 57bb11b5..93489d5c 100644 --- a/templates/client/includes/company/company_object.html +++ b/templates/client/includes/company/company_object.html @@ -216,6 +216,7 @@ {% trans 'Все события' %} {% endif %}
      + {% include 'client/includes/banners/detail_inner_3.html' %} {% if company.get_expositions_number > 0 or company.get_conferences_number > 0 or company.get_seminars_number > 0 %}
      {% endif %} diff --git a/templates/client/includes/conference/conference_list.html b/templates/client/includes/conference/conference_list.html index c1d2487f..d3084307 100644 --- a/templates/client/includes/conference/conference_list.html +++ b/templates/client/includes/conference/conference_list.html @@ -96,7 +96,7 @@ {% include 'client/includes/banners/catalog_inner_2.html' %} {% endif %} - {% if forloop.counter == 8 %} + {% if forloop.counter == 10 %} {% include 'client/includes/banners/catalog_inner.html' %} {%endif %} {% endfor %} diff --git a/templates/client/includes/conference/conference_object.html b/templates/client/includes/conference/conference_object.html index 02b61d28..aed18bdc 100644 --- a/templates/client/includes/conference/conference_object.html +++ b/templates/client/includes/conference/conference_object.html @@ -332,6 +332,7 @@ {% endif %} + {% include 'client/includes/banners/detail_inner_3.html' %}
      {% trans 'Смотрите также:' %}
      {% trans "Конференции" %} {% if request.LANGUAGE_CODE == 'ru' and event.city.inflect %}{{ event.city.inflect }}{% else %}{% trans 'in' %} {{ event.city.name }}{% endif %} diff --git a/templates/client/includes/exposition/exposition_list.html b/templates/client/includes/exposition/exposition_list.html index 6f27536d..5730ceb8 100644 --- a/templates/client/includes/exposition/exposition_list.html +++ b/templates/client/includes/exposition/exposition_list.html @@ -104,7 +104,7 @@ {% include 'client/includes/banners/catalog_inner_2.html' %} {% endif %} - {% if forloop.counter == 8 %} + {% if forloop.counter == 10 %} {% include 'client/includes/banners/catalog_inner.html' %} {%endif %} {% endfor %} diff --git a/templates/client/includes/exposition/exposition_object.html b/templates/client/includes/exposition/exposition_object.html index dc783ff0..737182a9 100644 --- a/templates/client/includes/exposition/exposition_object.html +++ b/templates/client/includes/exposition/exposition_object.html @@ -67,7 +67,7 @@
      - +\1 {% endif %}
      @@ -352,6 +352,7 @@ {% endfor %}
      + {% include 'client/includes/banners/detail_inner_3.html' %} {% endif %}
      {% trans 'Смотрите также:' %}
      diff --git a/templates/client/includes/exposition/members.html b/templates/client/includes/exposition/members.html index d0bd4e4a..ee143f72 100644 --- a/templates/client/includes/exposition/members.html +++ b/templates/client/includes/exposition/members.html @@ -53,7 +53,7 @@ {% include 'client/includes/banners/catalog_inner_2.html' %} {% endif %} - {% if forloop.counter == 8 %} + {% if forloop.counter == 10 %} {% include 'client/includes/banners/catalog_inner.html' %} {%endif %} {% endfor %} diff --git a/templates/client/includes/exposition/search_result.html b/templates/client/includes/exposition/search_result.html index 93bc23af..5f791b9d 100644 --- a/templates/client/includes/exposition/search_result.html +++ b/templates/client/includes/exposition/search_result.html @@ -87,7 +87,7 @@ {% include 'client/includes/banners/catalog_inner_2.html' %} {% endif %} - {% if forloop.counter == 8 %} + {% if forloop.counter == 10 %} {% include 'client/includes/banners/catalog_inner.html' %} {%endif %} {% endfor %} diff --git a/templates/client/includes/exposition/visitors.html b/templates/client/includes/exposition/visitors.html index 0958316b..d6254aab 100644 --- a/templates/client/includes/exposition/visitors.html +++ b/templates/client/includes/exposition/visitors.html @@ -55,7 +55,7 @@ {% include 'client/includes/banners/catalog_inner_2.html' %} {% endif %} - {% if forloop.counter == 8 %} + {% if forloop.counter == 10 %} {% include 'client/includes/banners/catalog_inner.html' %} {%endif %} {% endfor %} diff --git a/templates/client/includes/place/place_list.html b/templates/client/includes/place/place_list.html index 936a8bf6..69ef1376 100644 --- a/templates/client/includes/place/place_list.html +++ b/templates/client/includes/place/place_list.html @@ -52,7 +52,7 @@ {% include 'client/includes/banners/catalog_inner_2.html' %} {% endif %} - {% if forloop.counter == 8 %} + {% if forloop.counter == 10 %} {% include 'client/includes/banners/catalog_inner.html' %} {%endif %} {% endfor %} diff --git a/templates/client/includes/place/place_object.html b/templates/client/includes/place/place_object.html index 9d6b5e10..4be3f158 100644 --- a/templates/client/includes/place/place_object.html +++ b/templates/client/includes/place/place_object.html @@ -330,6 +330,7 @@
      {% endif %} + {% include 'client/includes/banners/detail_inner_3.html' %} {% endblock %} {% block scripts %} From 20fe43eab6b62fd57cbb7b657e60e672f8e6adc7 Mon Sep 17 00:00:00 2001 From: Nazar Kotjuk Date: Thu, 17 Sep 2015 15:21:24 +0300 Subject: [PATCH 29/45] Translates --- .../locale/en/LC_MESSAGES/django.po | 374 + locale/en/LC_MESSAGES/django.po | 6951 ++++++++++++----- .../locale/en/LC_MESSAGES/django.po | 122 + photologue/locale/en/LC_MESSAGES/django.po | 439 +- registration/locale/en/LC_MESSAGES/django.po | 75 +- templates/client/404.html | 9 +- templates/client/accounts/fill_company.html | 26 +- templates/client/accounts/new_profile.html | 28 +- .../accounts/translators/translator_city.html | 26 +- .../translators/translator_country.html | 32 +- .../accounts/translators/translators_by.html | 2 +- templates/client/expobanners/banner_stat.html | 15 +- templates/client/expobanners/paid_stat.html | 15 +- .../exposition/exposition_programm.html | 4 +- .../client/includes/company/company_edit.html | 10 +- .../client/includes/exposition/expo_paid.html | 2 +- .../exposition/exposition_object.html | 2 +- 17 files changed, 5746 insertions(+), 2386 deletions(-) create mode 100644 django_messages/locale/en/LC_MESSAGES/django.po create mode 100644 password_reset/locale/en/LC_MESSAGES/django.po diff --git a/django_messages/locale/en/LC_MESSAGES/django.po b/django_messages/locale/en/LC_MESSAGES/django.po new file mode 100644 index 00000000..5831c0f2 --- /dev/null +++ b/django_messages/locale/en/LC_MESSAGES/django.po @@ -0,0 +1,374 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-08 13:44+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: django_messages/admin.py:21 +msgid "group" +msgstr "" + +#: django_messages/admin.py:22 +msgid "Creates the message optionally for all users or a group of users." +msgstr "" + +#: django_messages/admin.py:30 +msgid "All users" +msgstr "" + +#: django_messages/admin.py:48 django_messages/models.py:94 +msgid "Message" +msgstr "" + +#: django_messages/admin.py:55 +msgid "Date/time" +msgstr "" + +#: django_messages/apps.py:6 django_messages/models.py:95 +msgid "Messages" +msgstr "" + +#: django_messages/fields.py:56 +#, python-format +msgid "The following usernames are incorrect: %(users)s" +msgstr "" + +#: django_messages/forms.py:17 django_messages/forms.py:66 +#: django_messages/models.py:55 +#: django_messages/templates/django_messages/inbox.html:10 +#: django_messages/templates/django_messages/outbox.html:10 +#: django_messages/templates/django_messages/trash.html:10 +#: django_messages/templates/django_messages/view.html:8 +msgid "Subject" +msgstr "" + +#: django_messages/forms.py:18 django_messages/forms.py:46 +#: django_messages/forms.py:67 django_messages/models.py:56 +msgid "Body" +msgstr "" + +#: django_messages/forms.py:65 django_messages/models.py:58 +#: django_messages/templates/django_messages/outbox.html:10 +#: django_messages/templates/django_messages/view.html:14 +msgid "Recipient" +msgstr "" + +#: django_messages/management.py:9 +msgid "Message Received" +msgstr "" + +#: django_messages/management.py:9 +msgid "you have received a message" +msgstr "" + +#: django_messages/management.py:10 +msgid "Message Sent" +msgstr "" + +#: django_messages/management.py:10 +msgid "you have sent a message" +msgstr "" + +#: django_messages/management.py:11 +msgid "Message Replied" +msgstr "" + +#: django_messages/management.py:11 +msgid "you have replied to a message" +msgstr "" + +#: django_messages/management.py:12 +msgid "Reply Received" +msgstr "" + +#: django_messages/management.py:12 +msgid "you have received a reply to a message" +msgstr "" + +#: django_messages/management.py:13 +msgid "Message Deleted" +msgstr "" + +#: django_messages/management.py:13 +msgid "you have deleted a message" +msgstr "" + +#: django_messages/management.py:14 +msgid "Message Recovered" +msgstr "" + +#: django_messages/management.py:14 +msgid "you have undeleted a message" +msgstr "" + +#: django_messages/models.py:57 +#: django_messages/templates/django_messages/inbox.html:10 +#: django_messages/templates/django_messages/trash.html:10 +#: django_messages/templates/django_messages/view.html:10 +msgid "Sender" +msgstr "" + +#: django_messages/models.py:59 +msgid "Parent message" +msgstr "" + +#: django_messages/models.py:60 +msgid "sent at" +msgstr "" + +#: django_messages/models.py:61 +msgid "read at" +msgstr "" + +#: django_messages/models.py:62 +msgid "replied at" +msgstr "" + +#: django_messages/models.py:63 +msgid "Sender deleted at" +msgstr "" + +#: django_messages/models.py:64 +msgid "Recipient deleted at" +msgstr "" + +#: django_messages/templates/django_messages/base.html:9 +#: django_messages/templates/django_messages/inbox.html:6 +#: django_messages/templates/django_messages/new_message.html:13 +msgid "Inbox" +msgstr "" + +#: django_messages/templates/django_messages/base.html:10 +#: django_messages/templates/django_messages/outbox.html:6 +msgid "Sent Messages" +msgstr "" + +#: django_messages/templates/django_messages/base.html:11 +msgid "New Message" +msgstr "" + +#: django_messages/templates/django_messages/base.html:12 +msgid "Trash" +msgstr "" + +#: django_messages/templates/django_messages/compose.html:4 +msgid "Compose Message" +msgstr "" + +#: django_messages/templates/django_messages/compose.html:10 +msgid "Send" +msgstr "" + +#: django_messages/templates/django_messages/inbox.html:10 +msgid "Received" +msgstr "" + +#: django_messages/templates/django_messages/inbox.html:10 +#: django_messages/templates/django_messages/outbox.html:10 +#: django_messages/templates/django_messages/trash.html:10 +msgid "Action" +msgstr "" + +#: django_messages/templates/django_messages/inbox.html:22 +#: django_messages/templates/django_messages/outbox.html:19 +#: django_messages/templates/django_messages/trash.html:19 +#: django_messages/templates/django_messages/view.html:13 +msgid "DATETIME_FORMAT" +msgstr "" + +#: django_messages/templates/django_messages/inbox.html:23 +#: django_messages/templates/django_messages/outbox.html:20 +msgid "delete" +msgstr "" + +#: django_messages/templates/django_messages/inbox.html:29 +#: django_messages/templates/django_messages/outbox.html:26 +#: django_messages/templates/django_messages/trash.html:26 +msgid "No messages." +msgstr "" + +#: django_messages/templates/django_messages/new_message.html:4 +#, python-format +msgid "" +"Hello %(recipient)s,\n" +"\n" +"you received a private message from %(sender)s with\n" +"the following contents:" +msgstr "" + +#: django_messages/templates/django_messages/new_message.html:12 +#, python-format +msgid "Sent from %(site_url)s" +msgstr "" + +#: django_messages/templates/django_messages/new_message.html:14 +#: django_messages/templates/django_messages/view.html:20 +msgid "Reply" +msgstr "" + +#: django_messages/templates/django_messages/outbox.html:10 +msgid "Sent" +msgstr "" + +#: django_messages/templates/django_messages/trash.html:6 +msgid "Deleted Messages" +msgstr "" + +#: django_messages/templates/django_messages/trash.html:10 +#: django_messages/templates/django_messages/view.html:12 +msgid "Date" +msgstr "" + +#: django_messages/templates/django_messages/trash.html:20 +msgid "undelete" +msgstr "" + +#: django_messages/templates/django_messages/trash.html:29 +msgid "" +"Deleted Messages are removed from the trash at unregular intervals, don't " +"rely on this feature for long-time storage." +msgstr "" + +#: django_messages/templates/django_messages/view.html:6 +msgid "View Message" +msgstr "" + +#: django_messages/templates/django_messages/view.html:22 +msgid "Delete" +msgstr "" + +#: django_messages/templates/notification/messages_deleted/full.txt:1 +#, python-format +msgid "You have deleted the message '%(message)s'." +msgstr "" + +#: django_messages/templates/notification/messages_deleted/notice.html:1 +#, python-format +msgid "" +"You have deleted the message %(message)s." +msgstr "" + +#: django_messages/templates/notification/messages_received/full.txt:1 +#, python-format +msgid "" +"%(message_sender)s has sent you a message:\n" +"\n" +"%(message)s\n" +"\n" +"%(message_body)s\n" +"\n" +"http://%(current_site)s%(message_url)s" +msgstr "" + +#: django_messages/templates/notification/messages_received/notice.html:2 +#, python-format +msgid "" +"You have received the message %(message)s " +"from %(message_sender)s." +msgstr "" + +#: django_messages/templates/notification/messages_received/short.txt:1 +#: django_messages/templates/notification/messages_reply_received/short.txt:1 +#, python-format +msgid "%(notice)s by %(message_sender)s" +msgstr "" + +#: django_messages/templates/notification/messages_recovered/full.txt:1 +#, python-format +msgid "You have recovered the message '%(message)s'." +msgstr "" + +#: django_messages/templates/notification/messages_recovered/notice.html:1 +#, python-format +msgid "" +"You have recovered the message %(message)s." +msgstr "" + +#: django_messages/templates/notification/messages_replied/full.txt:1 +#, python-format +msgid "" +"You have replied to '%(message_parent_msg)s' from %(message_recipient)s." +msgstr "" + +#: django_messages/templates/notification/messages_replied/notice.html:2 +#, python-format +msgid "" +"You have replied to %(message_parent_msg)s " +"from %(message_recipient)s." +msgstr "" + +#: django_messages/templates/notification/messages_reply_received/full.txt:1 +#, python-format +msgid "" +"%(message_sender)s replied to '%(message_parent_msg)s':\n" +"\n" +"%(message)s\n" +"\n" +"%(message_body)s\n" +"\n" +"http://%(current_site)s%(message_url)s" +msgstr "" + +#: django_messages/templates/notification/messages_reply_received/notice.html:2 +#, python-format +msgid "%(message_sender)s has sent you a reply to %(message_parent_msg)s." +msgstr "" + +#: django_messages/templates/notification/messages_sent/full.txt:1 +#, python-format +msgid "You have sent the message '%(message)s' to %(message_recipient)s." +msgstr "" + +#: django_messages/templates/notification/messages_sent/notice.html:2 +#, python-format +msgid "" +"You have sent the message %(message)s to " +"%(message_recipient)s." +msgstr "" + +#: django_messages/utils.py:26 +#, python-format +msgid "" +"%(sender)s wrote:\n" +"%(body)s" +msgstr "" + +#: django_messages/utils.py:54 +#, python-format +msgid "Re%(prefix)s: %(subject)s" +msgstr "" + +#: django_messages/utils.py:60 +#, python-format +msgid "New Message: %(subject)s" +msgstr "" + +#: django_messages/views.py:78 django_messages/views.py:114 +msgid "Message successfully sent." +msgstr "" + +#: django_messages/views.py:121 +#, python-format +msgid "Re: %(subject)s" +msgstr "" + +#: django_messages/views.py:157 +msgid "Message successfully deleted." +msgstr "" + +#: django_messages/views.py:184 +msgid "Message successfully recovered." +msgstr "" diff --git a/locale/en/LC_MESSAGES/django.po b/locale/en/LC_MESSAGES/django.po index 5141fd62..df57cb2a 100644 --- a/locale/en/LC_MESSAGES/django.po +++ b/locale/en/LC_MESSAGES/django.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-05-27 11:32+0300\n" +"POT-Creation-Date: 2015-09-08 13:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,785 +17,1198 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: accounts/admin.py:165 +#: accounts/admin.py:175 msgid "Пароль именен" msgstr "Password changed" -#: accounts/admin.py:168 accounts/views.py:153 +#: accounts/admin.py:178 accounts/views.py:453 msgid "Не правильный пароль" msgstr "Incorrect Password" -#: accounts/edit_forms.py:8 +#: accounts/edit_forms.py:10 company/edit_forms.py:15 msgid "Выберите файл (GIF, JPG, PNG. Размер 100 × 100 пикселей)" msgstr "Select file (Types: GIF, JPG, PNG. Size: 100 x 100 px.)" -#: accounts/edit_forms.py:15 +#: accounts/edit_forms.py:17 msgid "Введите ваше имя" msgstr "Enter your first name" -#: accounts/edit_forms.py:16 +#: accounts/edit_forms.py:18 msgid "Введите вашу фамилию" msgstr "Enter your last name" -#: accounts/edit_forms.py:28 functions/search_forms.py:27 -#: templates/client/service/catalog.html:66 -#: templates/client/service/participation.html:87 -#: templates/client/service/remotely.html:83 -#: templates/client/service/tickets.html:72 -#: templates/client/service/tour.html:227 -#: templates/client/service/translator.html:129 +#: accounts/edit_forms.py:31 accounts/forms.py:376 company/edit_forms.py:40 +#: company/forms.py:224 functions/search_forms.py:246 +#: functions/search_forms.py:338 functions/search_forms.py:365 +#: organiser/event_forms.py:20 service/order_forms.py:15 +#: service/order_forms.py:193 templates/client/accounts/new_profile.html:88 +#: templates/client/organiser/add_event.html:116 msgid "Страна" msgstr "Country" -#: accounts/edit_forms.py:43 +#: accounts/edit_forms.py:61 msgid "Укажите вашу должность" msgstr "Enter your job title" -#: accounts/edit_forms.py:45 -msgid "Место работы" -msgstr "Employer" - -#: accounts/edit_forms.py:53 templates/client/accounts/profile.html:158 -msgid "в" -msgstr "in" +#: accounts/edit_forms.py:63 +#, fuzzy +#| msgid "Укажите вашу должность" +msgid "Укажите вашу компанию" +msgstr "Enter your job title" -#: accounts/edit_forms.py:60 accounts/models.py:197 +#: accounts/edit_forms.py:86 accounts/models.py:263 company/edit_forms.py:31 msgid "Описание компании" msgstr "Company description" -#: accounts/edit_forms.py:68 +#: accounts/edit_forms.py:94 accounts/edit_forms.py:95 +#: company/edit_forms.py:67 msgid "Контактный телефон" msgstr "Phone number" -#: accounts/edit_forms.py:74 +#: accounts/edit_forms.py:112 company/edit_forms.py:83 core/forms.py:44 +#: service/order_forms.py:85 +#, fuzzy +#| msgid "Контактный телефон" +msgid "Введите правильный телефон" +msgstr "Phone number" + +#: accounts/edit_forms.py:117 company/edit_forms.py:86 msgid "Ваш e-mail" msgstr "Your e-mail" -#: accounts/edit_forms.py:81 +#: accounts/edit_forms.py:124 company/edit_forms.py:93 msgid "Адрес вашего сайта" msgstr "URL" -#: accounts/edit_forms.py:88 accounts/models.py:204 company/models.py:41 -#: organiser/models.py:46 +#: accounts/edit_forms.py:131 accounts/models.py:271 company/edit_forms.py:100 +#: company/models.py:49 organiser/models.py:52 msgid "Facebook" msgstr "" -#: accounts/edit_forms.py:89 accounts/models.py:205 company/models.py:42 -#: organiser/models.py:47 +#: accounts/edit_forms.py:132 accounts/models.py:272 company/edit_forms.py:101 +#: company/models.py:50 organiser/models.py:53 msgid "Twitter" msgstr "" -#: accounts/edit_forms.py:90 accounts/models.py:207 company/models.py:44 -#: organiser/models.py:49 +#: accounts/edit_forms.py:133 accounts/models.py:274 company/edit_forms.py:102 +#: company/models.py:52 organiser/models.py:55 msgid "В контакте" msgstr "VKontakte" -#: accounts/edit_forms.py:91 accounts/models.py:206 company/models.py:43 -#: organiser/models.py:48 +#: accounts/edit_forms.py:134 accounts/models.py:273 company/edit_forms.py:103 +#: company/models.py:51 organiser/models.py:54 msgid "LinkedIn" msgstr "" -#: accounts/edit_forms.py:99 +#: accounts/edit_forms.py:142 msgid "Немного о себе" msgstr "About Me" -#: accounts/forms.py:120 +#: accounts/forms.py:199 msgid "Old password" msgstr "" -#: accounts/forms.py:122 +#: accounts/forms.py:201 msgid "Введите старый пароль" msgstr "Enter your old password" -#: accounts/forms.py:123 +#: accounts/forms.py:202 msgid "New password" msgstr "" -#: accounts/forms.py:125 +#: accounts/forms.py:204 msgid "Придумайте новый пароль" msgstr "Enter a new password" -#: accounts/forms.py:126 +#: accounts/forms.py:205 msgid "Confirm password" msgstr "" -#: accounts/forms.py:128 +#: accounts/forms.py:208 msgid "Повторите новый пароль" msgstr "Confirm your new password" -#: accounts/forms.py:140 accounts/forms.py:141 +#: accounts/forms.py:220 accounts/forms.py:221 msgid "Пароли не совпадают!" msgstr "Passwords don't match!" -#: accounts/forms.py:149 accounts/forms.py:150 +#: accounts/forms.py:229 accounts/forms.py:230 msgid "Пароль должен содержать цифры и буквы" msgstr "The password must contain at least one letter and one number." -#: accounts/forms.py:156 +#: accounts/forms.py:237 msgid "" "Получать приглашения, сообщения и другую корреспонденцию от пользователей " "Expomap" msgstr "" "Receive invitations, messages and other correspondence from users of Expomap" -#: accounts/forms.py:157 +#: accounts/forms.py:238 msgid "Получать обзор событий" msgstr "Subscribe to digest" -#: accounts/forms.py:158 +#: accounts/forms.py:239 msgid "Получать новости" msgstr "Subscribe to newsletter" -#: accounts/views.py:150 -msgid "Пароль изменен" -msgstr "Password changed" +#: accounts/forms.py:247 +msgid "url(обязательно)" +msgstr "" + +#: accounts/forms.py:249 +#, fuzzy +#| msgid "Страны" +msgid "код страны" +msgstr "Countries" + +#: accounts/forms.py:253 +#, fuzzy +#| msgid "город" +msgid "код города" +msgstr "City" + +#: accounts/forms.py:254 +msgid "ваш номер" +msgstr "" + +#: accounts/forms.py:283 company/forms.py:288 +msgid "url должен состоять только из латинских букв" +msgstr "" + +#: accounts/forms.py:287 +msgid "Пользователь с таким url уже существует" +msgstr "" + +#: accounts/forms.py:294 accounts/forms.py:325 +msgid "Email" +msgstr "" + +#: accounts/forms.py:336 +msgid "Пользователь с таким емейлом не зарегестрирован" +msgstr "" + +#: accounts/forms.py:344 +msgid "Введите e-mail, имя или фамилию для запроса" +msgstr "" + +#: accounts/forms.py:370 functions/search_forms.py:238 +#: functions/search_forms.py:359 organiser/event_forms.py:10 +#: service/order_forms.py:136 service/order_forms.py:171 +#: templates/client/organiser/add_event.html:37 +#: templates/client/popups/theme.html:8 +msgid "Тематика" +msgstr "Theme" + +#: accounts/forms.py:372 functions/search_forms.py:240 +#: functions/search_forms.py:361 organiser/event_forms.py:11 +#: templates/client/organiser/add_event.html:55 +msgid "Теги" +msgstr "" + +#: accounts/forms.py:373 functions/search_forms.py:243 +#: functions/search_forms.py:336 functions/search_forms.py:363 +msgid "Регион" +msgstr "" + +#: accounts/forms.py:380 company/forms.py:225 functions/search_forms.py:250 +#: functions/search_forms.py:342 functions/search_forms.py:369 +#: organiser/event_forms.py:21 service/order_forms.py:16 +#: service/order_forms.py:194 templates/client/accounts/fill_company.html:68 +#: templates/client/accounts/new_profile.html:95 +#: templates/client/accounts/profile.html:81 +#: templates/client/includes/accounts/current_user.html:83 +#: templates/client/includes/company/company_edit.html:76 +#: templates/client/organiser/add_event.html:119 +msgid "Город" +msgstr "City" + +#: accounts/forms.py:386 accounts/forms.py:389 functions/search_forms.py:256 +#: functions/search_forms.py:259 functions/search_forms.py:413 +#: functions/search_forms.py:416 service/order_forms.py:138 +#: service/order_forms.py:140 service/order_forms.py:161 +#: service/order_forms.py:163 templates/client/organiser/add_event.html:96 +#: templates/client/organiser/add_event.html:101 +msgid "дд.мм.гггг" +msgstr "dd.mm.yyyy" + +#: accounts/models.py:265 +#, fuzzy +#| msgid "телефон" +msgid "Телефон" +msgstr "Phone" -#: accounts/views.py:290 exposition/models.py:175 -#: functions/custom_views.py:204 templates/client/index.html:125 +#: accounts/models.py:266 +#, fuzzy +#| msgid "Контактный телефон" +msgid "Показывать телефон" +msgstr "Phone number" + +#: accounts/views.py:401 exposition/models.py:281 +#: functions/custom_views.py:204 templates/client/exposition/catalog.html:8 +#: templates/client/exposition/catalog.html:28 +#: templates/client/exposition/catalog_theme.html:8 +#: templates/client/exposition/catalog_theme.html:52 +#: templates/client/exposition/exposition_by.html:14 +#: templates/client/exposition/exposition_detail.html:8 +#: templates/client/exposition/exposition_list.html:8 +#: templates/client/exposition/exposition_list.html:13 +#: templates/client/exposition/exposition_list.html:16 +#: templates/client/exposition/exposition_list.html:26 +#: templates/client/exposition/members.html:7 +#: templates/client/exposition/price.html:7 +#: templates/client/exposition/programm.html:8 +#: templates/client/exposition/statistic.html:9 +#: templates/client/exposition/visitors.html:7 #: templates/client/includes/event_list_description.html:5 +#: templates/client/includes/exposition/expo_paid.html:369 +#: templates/client/includes/exposition/expo_paid.html:370 +#: templates/client/includes/exposition/exposition_object.html:358 +#: templates/client/includes/exposition/exposition_object.html:359 +#: templates/client/includes/index/expos.html:3 +#: templates/client/main_page.html:95 templates/client/service/catalog.html:9 +#: templates/client/service/participation.html:10 +#: templates/client/service/remotely.html:11 +#: templates/client/service/tickets.html:10 +#: templates/client/service/tour.html:10 +#: templates/client/service/translator.html:10 msgid "Выставки" msgstr "Expos" -#: accounts/views.py:299 functions/custom_views.py:204 +#: accounts/views.py:415 functions/custom_views.py:204 +#: templates/client/conference/catalog.html:8 +#: templates/client/conference/catalog.html:27 +#: templates/client/conference/catalog_theme.html:8 +#: templates/client/conference/catalog_theme.html:52 +#: templates/client/conference/conference_by.html:14 +#: templates/client/conference/conference_detail.html:7 +#: templates/client/conference/conference_list.html:8 +#: templates/client/conference/conference_list.html:13 +#: templates/client/conference/conference_list.html:16 +#: templates/client/conference/conference_list.html:26 +#: templates/client/conference/members.html:7 +#: templates/client/conference/visitors.html:7 +#: templates/client/includes/conference/conference_object.html:337 +#: templates/client/includes/conference/conference_object.html:338 +#: templates/client/includes/side_confs.html:3 msgid "Конференции" msgstr "Conferences" -#: accounts/views.py:308 functions/custom_views.py:204 +#: accounts/views.py:428 functions/custom_views.py:204 msgid "Семинары" msgstr "Seminars" -#: core/forms.py:9 functions/forms.py:32 functions/search_forms.py:17 -#: functions/search_forms.py:80 functions/search_forms.py:107 -#: templates/client/company/search.html:9 -#: templates/client/company/search.html:15 -#: templates/client/exposition/search.html:8 -#: templates/client/exposition/search.html:14 -#: templates/client/place/search.html:9 templates/client/place/search.html:15 -msgid "Поиск" -msgstr "" - -#: core/forms.py:10 functions/forms.py:33 functions/search_forms.py:18 -#: functions/search_forms.py:81 functions/search_forms.py:108 -#: templates/client/index.html:86 -msgid "Где" -msgstr "Where" - -#: core/views.py:82 place_conference/models.py:91 -#: place_exposition/models.py:102 templates/client/place/search.html:8 -msgid "Места" -msgstr "Locations" +#: accounts/views.py:450 +msgid "Пароль изменен" +msgstr "Password changed" -#: core/views.py:184 templates/client/photoreport.html:9 -#: templates/client/photoreport.html:15 -msgid "Фото" -msgstr "Photos" +#: article/forms.py:260 article/forms.py:285 article/forms.py:297 +#, fuzzy +#| msgid "Тематика: " +msgid "Тематика:" +msgstr "Theme: " -#: django_messages/admin.py:21 -msgid "group" +#: article/forms.py:262 article/forms.py:277 article/forms.py:289 +#: theme/models.py:144 +msgid "Теги:" msgstr "" -#: django_messages/admin.py:22 -msgid "Creates the message optionally for all users or a group of users." +#: article/models.py:94 +msgid "Expires on" msgstr "" -#: django_messages/admin.py:30 -msgid "All users" +#: article/models.py:95 +msgid "With Published chosen, won't be shown after this time" msgstr "" -#: django_messages/admin.py:48 django_messages/models.py:94 -msgid "Message" +#: article/models.py:97 +msgid "Show in sitemap" msgstr "" -#: django_messages/admin.py:55 -msgid "Date/time" +#: article/models.py:104 +msgid "Generate description" msgstr "" -#: django_messages/apps.py:6 django_messages/models.py:95 -msgid "Messages" +#: article/models.py:105 +msgid "" +"If checked, the description will be automatically generated from content. " +"Uncheck if you want to manually set a custom description." msgstr "" -#: django_messages/fields.py:56 -#, python-format -msgid "The following usernames are incorrect: %(users)s" +#: article/views.py:141 article/views.py:188 conference/views.py:136 +#: exposition/forms.py:578 exposition/views.py:377 proj/settings.py:437 +#: settings/templatetags/tempalte_tags.py:21 +msgid "Январь" msgstr "" -#: django_messages/forms.py:17 django_messages/forms.py:66 -#: django_messages/models.py:55 -#: django_messages/templates/django_messages/inbox.html:10 -#: django_messages/templates/django_messages/outbox.html:10 -#: django_messages/templates/django_messages/trash.html:10 -#: django_messages/templates/django_messages/view.html:8 -msgid "Subject" +#: article/views.py:141 article/views.py:188 conference/views.py:136 +#: exposition/forms.py:578 exposition/views.py:377 proj/settings.py:437 +#: settings/templatetags/tempalte_tags.py:21 +msgid "Февраль" msgstr "" -#: django_messages/forms.py:18 django_messages/forms.py:46 -#: django_messages/forms.py:67 django_messages/models.py:56 -msgid "Body" +#: article/views.py:142 article/views.py:189 conference/views.py:137 +#: exposition/forms.py:578 exposition/views.py:378 proj/settings.py:438 +#: settings/templatetags/tempalte_tags.py:22 +msgid "Март" msgstr "" -#: django_messages/forms.py:65 django_messages/models.py:58 -#: django_messages/templates/django_messages/outbox.html:10 -#: django_messages/templates/django_messages/view.html:14 -msgid "Recipient" +#: article/views.py:142 article/views.py:189 conference/views.py:137 +#: exposition/forms.py:578 exposition/views.py:378 proj/settings.py:438 +#: settings/templatetags/tempalte_tags.py:22 +msgid "Апрель" msgstr "" -#: django_messages/management.py:9 -msgid "Message Received" -msgstr "" +#: article/views.py:143 article/views.py:190 conference/views.py:138 +#: exposition/forms.py:579 exposition/views.py:379 proj/settings.py:439 +#: settings/templatetags/tempalte_tags.py:23 +#, fuzzy +#| msgid "найти" +msgid "Май" +msgstr "Search" -#: django_messages/management.py:9 -msgid "you have received a message" +#: article/views.py:143 article/views.py:190 conference/views.py:138 +#: exposition/forms.py:579 exposition/views.py:379 proj/settings.py:439 +#: settings/templatetags/tempalte_tags.py:23 +msgid "Июнь" msgstr "" -#: django_messages/management.py:10 -msgid "Message Sent" +#: article/views.py:144 article/views.py:191 conference/views.py:139 +#: exposition/forms.py:579 exposition/views.py:380 proj/settings.py:440 +#: settings/templatetags/tempalte_tags.py:24 +msgid "Июль" msgstr "" -#: django_messages/management.py:10 -msgid "you have sent a message" +#: article/views.py:144 article/views.py:191 conference/views.py:139 +#: exposition/forms.py:579 exposition/views.py:380 proj/settings.py:440 +#: settings/templatetags/tempalte_tags.py:24 +msgid "Август" msgstr "" -#: django_messages/management.py:11 -msgid "Message Replied" +#: article/views.py:145 article/views.py:192 conference/views.py:140 +#: exposition/forms.py:580 exposition/views.py:381 proj/settings.py:441 +#: settings/templatetags/tempalte_tags.py:25 +msgid "Сентябрь" msgstr "" -#: django_messages/management.py:11 -msgid "you have replied to a message" +#: article/views.py:145 article/views.py:192 conference/views.py:140 +#: exposition/forms.py:580 exposition/views.py:381 proj/settings.py:441 +#: settings/templatetags/tempalte_tags.py:25 +msgid "Октябрь" msgstr "" -#: django_messages/management.py:12 -msgid "Reply Received" +#: article/views.py:146 article/views.py:193 conference/views.py:141 +#: exposition/forms.py:580 exposition/views.py:382 proj/settings.py:442 +#: settings/templatetags/tempalte_tags.py:26 +msgid "Ноябрь" msgstr "" -#: django_messages/management.py:12 -msgid "you have received a reply to a message" +#: article/views.py:146 article/views.py:193 conference/views.py:141 +#: exposition/forms.py:580 exposition/views.py:382 proj/settings.py:442 +#: settings/templatetags/tempalte_tags.py:26 +msgid "Декабрь" msgstr "" -#: django_messages/management.py:13 -msgid "Message Deleted" -msgstr "" +#: company/edit_forms.py:22 company/forms.py:264 +#, fuzzy +#| msgid "Описание компании" +msgid "Введите название компании" +msgstr "Company description" -#: django_messages/management.py:13 -msgid "you have deleted a message" -msgstr "" +#: company/edit_forms.py:151 +#, fuzzy +#| msgid "Описание компании" +msgid "Подробное описание компании" +msgstr "Company description" -#: django_messages/management.py:14 -msgid "Message Recovered" -msgstr "" +#: company/edit_forms.py:159 +#, fuzzy +#| msgid "Торговые компании" +msgid "Адрес компании" +msgstr "Trading Companies" -#: django_messages/management.py:14 -msgid "you have undeleted a message" -msgstr "" +#: company/forms.py:218 company/forms.py:253 +#, fuzzy +#| msgid "описание" +msgid "название" +msgstr "Description" -#: django_messages/models.py:57 -#: django_messages/templates/django_messages/inbox.html:10 -#: django_messages/templates/django_messages/trash.html:10 -#: django_messages/templates/django_messages/view.html:10 -msgid "Sender" -msgstr "" +#: company/forms.py:219 company/forms.py:256 +#: templates/client/accounts/fill_company.html:119 +#: templates/client/includes/company/company_edit.html:133 +#, fuzzy +#| msgid "Описание компании" +msgid "краткое описание компании" +msgstr "Company description" -#: django_messages/models.py:59 -msgid "Parent message" -msgstr "" +#: company/forms.py:220 company/forms.py:258 +#: templates/client/accounts/fill_company.html:155 +#: templates/client/includes/company/company_edit.html:182 +#, fuzzy +#| msgid "Торговые компании" +msgid "адрес компании" +msgstr "Trading Companies" -#: django_messages/models.py:60 -msgid "sent at" -msgstr "" +#: company/forms.py:221 company/forms.py:254 +#: templates/client/accounts/fill_company.html:422 +#, fuzzy +#| msgid "Описание компании" +msgid "подробное описание компании" +msgstr "Company description" -#: django_messages/models.py:61 -msgid "read at" -msgstr "" +#: company/forms.py:226 +#, fuzzy +#| msgid "Тематика" +msgid "Тематики" +msgstr "Theme" -#: django_messages/models.py:62 -msgid "replied at" -msgstr "" +#: company/forms.py:233 templates/client/accounts/fill_company.html:365 +#: templates/client/includes/company/company_edit.html:434 +#, fuzzy +#| msgid "Год основания:" +msgid "Год основания" +msgstr "Year Founded:" -#: django_messages/models.py:63 -msgid "Sender deleted at" -msgstr "" +#: company/forms.py:234 +#: templates/client/includes/company/company_edit.html:466 +#, fuzzy +#| msgid "Количество сотрудников:" +msgid "Количество сотрудников" +msgstr "Number of Staff:" -#: django_messages/models.py:64 -msgid "Recipient deleted at" -msgstr "" +#: company/forms.py:235 +#, fuzzy +#| msgid "В контакте" +msgid "в контакте" +msgstr "VKontakte" -#: django_messages/utils.py:26 -#, python-format -msgid "" -"%(sender)s wrote:\n" -"%(body)s" -msgstr "" +#: company/forms.py:265 +#, fuzzy +#| msgid "Введите старый пароль" +msgid "Введите url(только латиница)" +msgstr "Enter your old password" -#: django_messages/utils.py:54 -#, python-format -msgid "Re%(prefix)s: %(subject)s" +#: company/forms.py:293 +msgid "Такой урл уже занят" msgstr "" -#: django_messages/utils.py:60 -#, python-format -msgid "New Message: %(subject)s" -msgstr "" +#: company/models.py:25 +#, fuzzy +#| msgid "Участники" +msgid "Участники:" +msgstr "Participants" -#: django_messages/views.py:78 django_messages/views.py:114 -msgid "Message successfully sent." -msgstr "" +#: conference/models.py:38 +#, fuzzy +#| msgid "Конференции" +msgid "Конференции:" +msgstr "Conferences" -#: django_messages/views.py:121 -#, python-format -msgid "Re: %(subject)s" -msgstr "" +#: conference/views.py:46 exposition/views.py:46 +#: templates/client/includes/side_confs.html:7 +#, fuzzy +#| msgid "Страна" +msgid "По странам" +msgstr "Country" -#: django_messages/views.py:157 -msgid "Message successfully deleted." -msgstr "" +#: conference/views.py:47 +#, fuzzy +#| msgid "Выставки по странам" +msgid "Коференции мира по странам" +msgstr "Expos by Country" -#: django_messages/views.py:184 -msgid "Message successfully recovered." +#: conference/views.py:59 exposition/views.py:75 +msgid "По тегам" msgstr "" -#: django_messages/templates/django_messages/base.html:9 -#: django_messages/templates/django_messages/inbox.html:6 -#: django_messages/templates/django_messages/new_message.html:13 -msgid "Inbox" -msgstr "" +#: conference/views.py:60 +#, fuzzy +#| msgid "Конференц зал" +msgid "Коференции мира по тегам" +msgstr "Conference Hall" -#: django_messages/templates/django_messages/base.html:10 -#: django_messages/templates/django_messages/outbox.html:6 -msgid "Sent Messages" -msgstr "" +#: conference/views.py:70 exposition/views.py:61 +#: templates/client/includes/side_confs.html:6 +#, fuzzy +#| msgid "Тематика" +msgid "По тематикам" +msgstr "Theme" + +#: conference/views.py:71 +#, fuzzy +#| msgid "Выставки по тематикам" +msgid "Коференции мира по тематикам" +msgstr "Expos by Theme" + +#: conference/views.py:84 exposition/views.py:87 +#: templates/client/includes/side_confs.html:8 +#, fuzzy +#| msgid "город" +msgid "По городам" +msgstr "City" + +#: conference/views.py:85 +#, fuzzy +#| msgid "Выставки по городам" +msgid "Коференции мира по городам" +msgstr "Expos by City" -#: django_messages/templates/django_messages/base.html:11 -msgid "New Message" +#: conference/views.py:356 +msgid "Ваш запрос был успешно отправлен" msgstr "" -#: django_messages/templates/django_messages/base.html:12 -msgid "Trash" +#: core/forms.py:13 functions/forms.py:32 functions/search_forms.py:409 +#: templates/client/company/search.html:9 +#: templates/client/company/search.html:15 +#: templates/client/exposition/search.html:8 +#: templates/client/exposition/search.html:14 +#: templates/client/place/search.html:9 templates/client/place/search.html:15 +msgid "Поиск" msgstr "" -#: django_messages/templates/django_messages/compose.html:4 -msgid "Compose Message" +#: core/forms.py:14 functions/forms.py:33 functions/search_forms.py:26 +#: functions/search_forms.py:410 +#: templates/client/includes/catalog_search_main.html:25 +msgid "Где" +msgstr "Where" + +#: core/views.py:87 place_conference/models.py:91 +#: place_exposition/models.py:158 templates/client/place/catalog.html:8 +#: templates/client/place/catalog.html:16 templates/client/place/photo.html:7 +#: templates/client/place/place_detail.html:7 +#: templates/client/place/place_list.html:7 +#: templates/client/place/place_list.html:14 +#: templates/client/place/search.html:8 +msgid "Места" +msgstr "Locations" + +#: core/views.py:190 templates/client/photoreport.html:9 +#: templates/client/photoreport.html:15 templates/client/place/photo.html:11 +msgid "Фото" +msgstr "Photos" + +#: expobanner/models.py:20 +msgid "Sites" msgstr "" -#: django_messages/templates/django_messages/compose.html:10 -msgid "Send" +#: expobanner/models.py:23 expobanner/models.py:49 expobanner/models.py:105 +msgid "Created At" msgstr "" -#: django_messages/templates/django_messages/inbox.html:10 -msgid "Received" +#: expobanner/models.py:24 expobanner/models.py:50 expobanner/models.py:106 +msgid "Updated At" msgstr "" -#: django_messages/templates/django_messages/inbox.html:10 -#: django_messages/templates/django_messages/outbox.html:10 -#: django_messages/templates/django_messages/trash.html:10 -msgid "Action" +#: expobanner/models.py:34 +msgid "URL" msgstr "" -#: django_messages/templates/django_messages/inbox.html:22 -#: django_messages/templates/django_messages/outbox.html:19 -#: django_messages/templates/django_messages/trash.html:19 -#: django_messages/templates/django_messages/view.html:13 -msgid "DATETIME_FORMAT" +#: expobanner/models.py:35 expobanner/models.py:94 expobanner/models.py:175 +#: expobanner/models.py:198 +msgid "URLs" msgstr "" -#: django_messages/templates/django_messages/inbox.html:23 -#: django_messages/templates/django_messages/outbox.html:20 -msgid "delete" +#: expobanner/models.py:63 +msgid "Banner Group" msgstr "" -#: django_messages/templates/django_messages/inbox.html:29 -#: django_messages/templates/django_messages/outbox.html:26 -#: django_messages/templates/django_messages/trash.html:26 -msgid "No messages." +#: expobanner/models.py:64 +msgid "Banner Groups" msgstr "" -#: django_messages/templates/django_messages/new_message.html:4 -#, python-format -msgid "" -"Hello %(recipient)s,\n" -"\n" -"you received a private message from %(sender)s with\n" -"the following contents:" +#: expobanner/models.py:74 +msgid "Alt" msgstr "" -#: django_messages/templates/django_messages/new_message.html:12 -#, python-format -msgid "Sent from %(site_url)s" +#: expobanner/models.py:89 +msgid "Often" msgstr "" -#: django_messages/templates/django_messages/new_message.html:14 -#: django_messages/templates/django_messages/view.html:20 -msgid "Reply" +#: expobanner/models.py:90 +msgid "A ten will display 10 times more often that a one." msgstr "" -#: django_messages/templates/django_messages/outbox.html:10 -msgid "Sent" +#: expobanner/models.py:96 +msgid "HTML?" msgstr "" -#: django_messages/templates/django_messages/trash.html:6 -msgid "Deleted Messages" +#: expobanner/models.py:97 +msgid "Flash?" msgstr "" -#: django_messages/templates/django_messages/trash.html:10 -#: django_messages/templates/django_messages/view.html:12 -msgid "Date" +#: expobanner/models.py:98 +msgid "Popup?" msgstr "" -#: django_messages/templates/django_messages/trash.html:20 -msgid "undelete" +#: expobanner/models.py:99 +msgid "Is Paid event link?" msgstr "" -#: django_messages/templates/django_messages/trash.html:29 -msgid "" -"Deleted Messages are removed from the trash at unregular intervals, don't " -"rely on this feature for long-time storage." +#: expobanner/models.py:100 +msgid "Is simple link?" msgstr "" -#: django_messages/templates/django_messages/view.html:6 -msgid "View Message" +#: expobanner/models.py:168 expobanner/models.py:196 +msgid "Banner" msgstr "" -#: django_messages/templates/django_messages/view.html:22 -msgid "Delete" +#: expobanner/models.py:169 +msgid "Banners" msgstr "" -#: django_messages/templates/notification/messages_deleted/full.txt:1 -#, python-format -msgid "You have deleted the message '%(message)s'." +#: expobanner/models.py:174 expobanner/models.py:197 +msgid "Group" msgstr "" -#: django_messages/templates/notification/messages_deleted/notice.html:1 -#, python-format -msgid "" -"You have deleted the message %(message)s." +#: expobanner/models.py:177 +msgid "User" msgstr "" -#: django_messages/templates/notification/messages_received/full.txt:1 -#, python-format -msgid "" -"%(message_sender)s has sent you a message:\n" -"\n" -"%(message)s\n" -"\n" -"%(message_body)s\n" -"\n" -"http://%(current_site)s%(message_url)s" +#: expobanner/models.py:178 +msgid "Clicked At" msgstr "" -#: django_messages/templates/notification/messages_received/notice.html:2 -#, python-format -msgid "" -"You have received the message %(message)s " -"from %(message_sender)s." +#: expobanner/models.py:179 +msgid "IP" msgstr "" -#: django_messages/templates/notification/messages_received/short.txt:1 -#: django_messages/templates/notification/messages_reply_received/short.txt:1 -#, python-format -msgid "%(notice)s by %(message_sender)s" +#: expobanner/models.py:180 expobanner/models.py:182 +msgid "User Agent" msgstr "" -#: django_messages/templates/notification/messages_recovered/full.txt:1 -#, python-format -msgid "You have recovered the message '%(message)s'." +#: expobanner/models.py:181 +msgid "Page" msgstr "" -#: django_messages/templates/notification/messages_recovered/notice.html:1 -#, python-format -msgid "" -"You have recovered the message %(message)s." +#: expobanner/models.py:189 templates/debug_toolbar/panels/cache.html:44 +msgid "Type" msgstr "" -#: django_messages/templates/notification/messages_replied/full.txt:1 -#, python-format -msgid "" -"You have replied to '%(message_parent_msg)s' from %(message_recipient)s." +#: expobanner/models.py:200 +msgid "Data" msgstr "" -#: django_messages/templates/notification/messages_replied/notice.html:2 -#, python-format -msgid "" -"You have replied to %(message_parent_msg)s " -"from %(message_recipient)s." +#: expobanner/models.py:201 +msgid "Views" msgstr "" -#: django_messages/templates/notification/messages_reply_received/full.txt:1 -#, python-format -msgid "" -"%(message_sender)s replied to '%(message_parent_msg)s':\n" -"\n" -"%(message)s\n" -"\n" -"%(message_body)s\n" -"\n" -"http://%(current_site)s%(message_url)s" +#: expobanner/models.py:202 +msgid "Clicks" msgstr "" -#: django_messages/templates/notification/messages_reply_received/notice.html:2 -#, python-format -msgid "%(message_sender)s has sent you a reply to %(message_parent_msg)s." +#: expobanner/models.py:203 +msgid "Unique Views" msgstr "" -#: django_messages/templates/notification/messages_sent/full.txt:1 -#, python-format -msgid "You have sent the message '%(message)s' to %(message_recipient)s." +#: expobanner/models.py:204 +msgid "Unique Clicks" msgstr "" -#: django_messages/templates/notification/messages_sent/notice.html:2 -#, python-format -msgid "" -"You have sent the message %(message)s to " -"%(message_recipient)s." +#: expobanner/models.py:235 +msgid "Date" msgstr "" -#: exposition/models.py:18 +#: exposition/models.py:26 msgid "Не выбрано" msgstr "Not selected" -#: exposition/models.py:19 exposition/models.py:26 +#: exposition/models.py:27 proj/settings.py:434 msgid "Специалисты" msgstr "Specialists" -#: exposition/models.py:20 exposition/models.py:26 +#: exposition/models.py:28 proj/settings.py:434 msgid "Специалисты и потребители" msgstr "Specialists and consumers" -#: exposition/models.py:21 exposition/models.py:27 +#: exposition/models.py:29 proj/settings.py:435 msgid "Широкая публика" msgstr "The public" -#: exposition/models.py:155 +#: exposition/models.py:51 +#, fuzzy +#| msgid "Выставки" +msgid "Выставки:" +msgstr "Expos" + +#: exposition/models.py:260 msgid "Ежегодно" msgstr "Annually" -#: exposition/models.py:155 +#: exposition/models.py:260 msgid "2 раза в год" msgstr "Twice per year" -#: exposition/models.py:155 +#: exposition/models.py:260 msgid "3 раза в год" msgstr "Three times per year" -#: exposition/models.py:156 +#: exposition/models.py:261 msgid "4 раза в год" msgstr "Four times per year" -#: exposition/models.py:156 +#: exposition/models.py:261 msgid "5 раз в год" msgstr "Five times per year" -#: exposition/models.py:156 +#: exposition/models.py:261 msgid "Раз в 2 года" msgstr "Once every two years" -#: exposition/models.py:157 +#: exposition/models.py:262 msgid "Раз в 3 года" msgstr "Once every three years" -#: exposition/models.py:157 +#: exposition/models.py:262 msgid "Раз в 4 года" msgstr "Once every four years" -#: exposition/views.py:71 templates/client/conference.html:213 -#: templates/client/exposition.html:218 templates/client/seminar.html:213 -#: templates/client/webinar.html:184 -#: templates/client/includes/event_object.html:204 -msgid "Посетители" -msgstr "Visitors" - -#: exposition/views.py:89 functions/custom_views.py:205 -#: templates/client/conference.html:194 templates/client/exposition.html:199 -#: templates/client/seminar.html:194 templates/client/webinar.html:165 -#: templates/client/company/search.html:8 -#: templates/client/includes/event_object.html:182 -msgid "Участники" -msgstr "Participants" +#: exposition/views.py:47 +#, fuzzy +#| msgid "Выставки по странам" +msgid "Выставки мира по странам" +msgstr "Expos by Country" -#: exposition/views.py:104 -#: templates/client/exposition/exposition_statistic.html:79 -msgid "Статистика" -msgstr "Statistics" +#: exposition/views.py:62 +#, fuzzy +#| msgid "Выставки по тематикам" +msgid "Выставки мира по тематикам" +msgstr "Expos by Theme" -#: exposition/views.py:119 -msgid "Программа" -msgstr "Program" +#: exposition/views.py:76 +#, fuzzy +#| msgid "Выставки по городам" +msgid "Выставки мира по тегам" +msgstr "Expos by City" -#: exposition/views.py:134 -#: templates/client/exposition/exposition_price.html:79 -msgid "Стоимость посещения и участия" -msgstr "Admission and participation price" +#: exposition/views.py:88 +#, fuzzy +#| msgid "Выставки по городам" +msgid "Выставки мира по городам" +msgstr "Expos by City" -#: file/models.py:130 +#: file/models.py:131 msgid "view count" msgstr "" +#: functions/admin_forms.py:26 +#, fuzzy +#| msgid "описание" +msgid "Название" +msgstr "Description" + +#: functions/admin_forms.py:27 +#, fuzzy +#| msgid "Год основания:" +msgid "Часть названия" +msgstr "Year Founded:" + #: functions/custom_views.py:205 msgid "Вебинары" msgstr "Webinars" +#: functions/custom_views.py:205 +#: templates/client/company/companies_list.html:7 +#: templates/client/company/companies_list.html:15 +#: templates/client/company/company_detail.html:7 +#: templates/client/company/search.html:8 templates/client/conference.html:194 +#: templates/client/conference/members.html:11 +#: templates/client/exposition.html:200 +#: templates/client/exposition/members.html:11 +#: templates/client/includes/event_object.html:196 +#: templates/client/includes/exposition/expo_paid.html:230 +#: templates/client/includes/exposition/expo_paid.html:252 +#: templates/client/includes/exposition/exposition_object.html:221 +#: templates/client/includes/exposition/exposition_object.html:243 +#: templates/client/seminar.html:194 templates/client/webinar.html:165 +msgid "Участники" +msgstr "Participants" + #: functions/custom_views.py:205 msgid "Фоторепортажи" msgstr "Photo Reports" -#: functions/forms.py:14 templates/client/includes/footer.html:24 -#: templates/client/includes/menu.html:6 +#: functions/forms.py:14 templates/client/includes/footer.html:28 +#: templates/client/includes/menu.html:6 templates/client/service/tour.html:41 msgid "выставки" msgstr "Expos" -#: functions/forms.py:15 templates/client/index.html:135 -#: templates/client/includes/footer.html:25 -#: templates/client/includes/menu.html:7 +#: functions/forms.py:15 templates/client/includes/footer.html:29 +#: templates/client/includes/index/confs.html:3 +#: templates/client/includes/menu.html:7 templates/client/main_page.html:105 msgid "конференции" msgstr "Conferences" -#: functions/forms.py:16 templates/client/index.html:145 -#: templates/client/includes/footer.html:26 -#: templates/client/includes/menu.html:8 +#: functions/forms.py:16 msgid "семинары" msgstr "Seminars" -#: functions/forms.py:17 templates/client/includes/footer.html:27 -#: templates/client/includes/menu.html:9 +#: functions/forms.py:17 msgid "вебинары" msgstr "Webinars" -#: functions/search_forms.py:21 templates/client/index.html:95 -#: templates/client/popups/theme.html:7 templates/client/service/tour.html:168 -#: templates/client/service/translator.html:69 -msgid "Тематика" -msgstr "Theme" +#: functions/search_forms.py:25 +#: templates/client/includes/catalog_search_main.html:14 +#, fuzzy +msgid "Я ищу" +msgstr "I'm looking for:" -#: functions/search_forms.py:23 -msgid "Теги" +#: functions/search_forms.py:25 +msgid "Тематика, слово или название" +msgstr "" + +#: functions/search_forms.py:123 functions/search_forms.py:131 +#: functions/search_forms.py:141 functions/search_forms.py:150 +#: functions/search_forms.py:349 +#: templates/client/includes/catalog_search.html:35 +#: templates/client/includes/catalog_search.html:36 +#: templates/client/includes/catalog_search.html:43 +#: templates/client/includes/catalog_search.html:44 +#: templates/client/includes/catalog_search.html:50 +#: templates/client/includes/catalog_search.html:51 +#: templates/client/includes/catalog_search.html:68 +#: templates/client/includes/catalog_search_main.html:41 +#: templates/client/includes/catalog_search_main.html:43 +#: templates/client/includes/catalog_search_main.html:50 +#: templates/client/includes/catalog_search_main.html:51 +#: templates/client/includes/catalog_search_main.html:57 +#: templates/client/includes/catalog_search_main.html:59 +#, fuzzy +msgid "Не важно" +msgstr "Not selected" + +#: functions/search_forms.py:127 functions/search_forms.py:145 +msgid " и еще " msgstr "" -#: functions/search_forms.py:28 -msgid "город" -msgstr "City" +#: functions/search_forms.py:127 functions/search_forms.py:145 +msgid "позиция" +msgstr "" -#: place_conference/models.py:87 -#: templates/client/includes/place_object.html:59 -msgid "Конгресс-центр" -msgstr "Congress Center" +#: functions/search_forms.py:127 functions/search_forms.py:145 +msgid "позиции" +msgstr "" -#: place_conference/models.py:87 -msgid "Конференц зал" -msgstr "Conference Hall" +#: functions/search_forms.py:127 functions/search_forms.py:145 +#: templates/client/includes/search_paginator.html:6 +msgid "позиций" +msgstr "" -#: place_exposition/models.py:138 -msgid "Конгессо-выставочный центр" -msgstr "Congress/Expo Center" +#: functions/search_forms.py:235 +msgid "ПОИСК СОБЫТИЙ" +msgstr "" -#: place_exposition/models.py:138 -msgid "Выставочный центр" -msgstr "Expo Center" +#: functions/search_forms.py:333 +msgid "ПОИСК МЕСТ" +msgstr "" -#: place_exposition/models.py:139 -msgid "Выставочный комплекс" -msgstr "Expo Complex" +#: functions/search_forms.py:346 +msgid "Тип" +msgstr "" -#: proj/settings.py:55 -msgid "Russian" +#: functions/search_forms.py:357 +msgid "ПОИСК УЧАСТНИКОВ" msgstr "" -#: proj/settings.py:56 -msgid "English" +#: meta/models.py:11 meta/models.py:56 +msgid "январе" +msgstr "" + +#: meta/models.py:11 meta/models.py:56 +msgid "феврале" +msgstr "" + +#: meta/models.py:11 meta/models.py:56 +msgid "марте" +msgstr "" + +#: meta/models.py:11 meta/models.py:56 +msgid "апреле" +msgstr "" + +#: meta/models.py:12 meta/models.py:57 +#, fuzzy +#| msgid "Где" +msgid "мае" +msgstr "Where" + +#: meta/models.py:12 meta/models.py:57 +msgid "июне" msgstr "" -#: registration/admin.py:23 -msgid "Activate users" +#: meta/models.py:12 meta/models.py:57 +msgid "июле" msgstr "" -#: registration/admin.py:43 -msgid "Re-send activation emails" +#: meta/models.py:12 meta/models.py:57 +msgid "августе" msgstr "" -#: registration/forms.py:44 -msgid "First name" +#: meta/models.py:13 meta/models.py:58 +msgid "сентябре" msgstr "" -#: registration/forms.py:45 registration/forms.py:50 -msgid "This value may contain only letters, numbers and @/./+/-/_ characters." +#: meta/models.py:13 meta/models.py:58 +msgid "октябре" msgstr "" -#: registration/forms.py:46 templates/client/popups/register.html:12 +#: meta/models.py:13 meta/models.py:58 +msgid "ноябре" +msgstr "" + +#: meta/models.py:13 meta/models.py:58 +msgid "декабре" +msgstr "" + +#: organiser/event_forms.py:12 templates/client/popups/register.html:12 msgid "Имя" msgstr "First name" -#: registration/forms.py:49 -msgid "Last name" -msgstr "" +#: organiser/event_forms.py:13 +#, fuzzy +#| msgid "Посещение выставки" +msgid "Введите назввание выставки" +msgstr "Visit Expo" -#: registration/forms.py:51 templates/client/popups/register.html:20 -msgid "Фамилия" -msgstr "Last name" +#: organiser/event_forms.py:14 +#, fuzzy +#| msgid "в расписание" +msgid "Краткое описание" +msgstr "to schedule" + +#: organiser/event_forms.py:15 +#, fuzzy +#| msgid "Краткое описание, вид деятельности компании" +msgid "Краткое описание выставки (необязательно)" +msgstr "Brief description of activities of" + +#: organiser/event_forms.py:16 +#, fuzzy +#| msgid "описание" +msgid "Полное описание" +msgstr "Description" + +#: organiser/event_forms.py:17 templates/client/organiser/add_event.html:85 +#, fuzzy +#| msgid "Посещение выставки" +msgid "Полное описание выставки" +msgstr "Visit Expo" -#: registration/forms.py:53 -msgid "E-mail" +#: organiser/event_forms.py:18 templates/client/organiser/add_event.html:178 +msgid "c" msgstr "" -#: registration/forms.py:53 templates/client/popups/register.html:28 -msgid "Адрес электронной почты" -msgstr "E-mail address" +#: organiser/event_forms.py:19 templates/client/conference.html:60 +#: templates/client/conference.html:286 +#: templates/client/includes/index/main_date_block.html:31 +#: templates/client/includes/show_date_block.html:31 +#: templates/client/organiser/add_event.html:99 +#: templates/client/popups/period.html:15 templates/client/seminar.html:60 +#: templates/client/seminar.html.py:265 templates/client/service/tour.html:73 +#: templates/client/service/translator.html:101 +msgid "по" +msgstr "to" -#: registration/forms.py:54 templates/client/popups/register.html:34 -msgid "Придумайте пароль" -msgstr "Create a password" +#: organiser/event_forms.py:22 templates/client/organiser/add_event.html:108 +#, fuzzy +#| msgid "информация" +msgid "Локация" +msgstr "Information" -#: registration/forms.py:55 registration/forms.py:132 -msgid "Password" -msgstr "Password" +#: organiser/event_forms.py:23 templates/client/conference.html:175 +#: templates/client/exposition.html:179 +#: templates/client/includes/conference/conference_object.html:184 +#: templates/client/includes/event_object.html:173 +#: templates/client/includes/exposition/expo_paid.html:204 +#: templates/client/includes/exposition/exposition_object.html:189 +#: templates/client/organiser/add_event.html:127 +#: templates/client/seminar.html:175 +msgid "Аудитория" +msgstr "Audience" -#: registration/forms.py:56 templates/client/popups/register.html:40 -msgid "Повторите пароль" -msgstr "Confirm password" +#: organiser/event_forms.py:24 templates/client/conference.html:180 +#: templates/client/exposition.html:185 +#: templates/client/includes/conference/conference_object.html:190 +#: templates/client/includes/event_object.html:180 +#: templates/client/includes/exposition/expo_paid.html:210 +#: templates/client/includes/exposition/exposition_object.html:195 +#: templates/client/organiser/add_event.html:137 +#: templates/client/seminar.html:180 +msgid "Периодичность" +msgstr "Regularity" + +#: organiser/event_forms.py:25 templates/client/organiser/add_event.html:148 +msgid "Членства и знаки качества" +msgstr "" + +#: organiser/event_forms.py:26 +#, fuzzy +#| msgid "Веб-сайт" +msgid "Веб сайт" +msgstr "Website" + +#: organiser/event_forms.py:27 templates/client/conference.html:183 +#: templates/client/exposition.html:188 +#: templates/client/includes/event_object.html:185 +#: templates/client/includes/exposition/expo_paid.html:214 +#: templates/client/includes/exposition/exposition_object.html:199 +#: templates/client/organiser/add_event.html:162 +#: templates/client/seminar.html:183 +msgid "Экспонируемые продукты" +msgstr "Presented Products" -#: registration/forms.py:57 -msgid "Password (again)" +#: organiser/event_forms.py:29 templates/client/organiser/add_event.html:224 +msgid "Логотип" msgstr "" -#: registration/forms.py:83 -msgid "I have read and agree to the Terms of Service" +#: place_conference/models.py:87 +#: templates/client/includes/place/place_object.html:63 +msgid "Конгресс-центр" +msgstr "Congress Center" + +#: place_conference/models.py:87 +msgid "Конференц зал" +msgstr "Conference Hall" + +#: place_exposition/models.py:42 +#, fuzzy +#| msgid "Места" +msgid "Места:" +msgstr "Locations" + +#: place_exposition/models.py:208 +#, fuzzy +#| msgid "Конгессо-выставочный центр" +msgid "Конгрессно-выставочный центр" +msgstr "Congress/Expo Center" + +#: place_exposition/models.py:208 +msgid "Выставочный центр" +msgstr "Expo Center" + +#: place_exposition/models.py:209 +msgid "Выставочный комплекс" +msgstr "Expo Complex" + +#: place_exposition/views.py:85 place_exposition/views.py:108 +#, python-format +msgid "No %(verbose_name)s found matching the query" msgstr "" -#: registration/forms.py:84 -msgid "You must agree to the terms to register" +#: proj/settings.py:60 +msgid "Russian" msgstr "" -#: registration/forms.py:100 -msgid "" -"This email address is already in use. Please supply a different email " -"address." +#: proj/settings.py:61 +msgid "English" msgstr "" -#: registration/forms.py:127 -msgid "" -"Registration using free email addresses is prohibited. Please supply a " -"different email address." +#: service/order_forms.py:13 +#, fuzzy +#| msgid "Интересующие участники выставки" +msgid "Интересующее событие" +msgstr "Interest of participants" + +#: service/order_forms.py:14 +msgid "Контактное лицо" +msgstr "Contact name" + +#: service/order_forms.py:17 +msgid "Контактный номер телефона" +msgstr "Phone number" + +#: service/order_forms.py:19 +msgid "Электронная почта" +msgstr "E-mail address" + +#: service/order_forms.py:104 +msgid "официальный каталог" +msgstr "official catalog" + +#: service/order_forms.py:105 +msgid "фотоотчет" +msgstr "photoreport" + +#: service/order_forms.py:106 +msgid "видеоотчет" +msgstr "videoreport" + +#: service/order_forms.py:121 +msgid "оборудованная" +msgstr "Equipped Area" + +#: service/order_forms.py:122 +msgid "не оборудованная" +msgstr "Unequipped Area" + +#: service/order_forms.py:127 +msgid "Краткое описание, вид деятельности компании" +msgstr "Brief description of activities of" + +#: service/order_forms.py:131 +msgid "Русский" msgstr "" -#: registration/forms.py:131 templates/client/popups/login.html:11 -msgid "Ваш адрес электронной почты" -msgstr "Your e-mail address" +#: service/order_forms.py:135 service/order_forms.py:170 +msgid "Знание языков" +msgstr "languages" -#: registration/forms.py:132 -msgid "Ваш Пароль" -msgstr "Your password" +#: service/order_forms.py:146 service/order_forms.py:152 +msgid "Выберите" +msgstr "Select" + +#: service/order_forms.py:146 +msgid "Одноместное" +msgstr "" -#: registration/models.py:182 -msgid "user" +#: service/order_forms.py:147 +msgid "Двухместное" msgstr "" -#: registration/models.py:183 -msgid "activation key" +#: service/order_forms.py:147 +msgid "Трехместное" msgstr "" -#: registration/models.py:188 -msgid "registration profile" +#: service/order_forms.py:149 +msgid "Прямой" msgstr "" -#: registration/models.py:189 -msgid "registration profiles" +#: service/order_forms.py:149 +msgid "С пересадкой" +msgstr "With the transfer" + +#: service/order_forms.py:150 +msgid "Бизнес-класс" +msgstr "Business class" + +#: service/order_forms.py:150 +msgid "Эконом-класс" +msgstr "Econom" + +#: service/order_forms.py:152 +msgid "Любое" msgstr "" +#: service/order_forms.py:153 +#, fuzzy +#| msgid "Отели рядом с выставкой от" +msgid "Рядом с выставкой" +msgstr "Hotels near expo from" + +#: service/order_forms.py:154 +#, fuzzy +#| msgid "Бизнес центр" +msgid "В центре" +msgstr "Business Center" + +#: service/order_forms.py:156 +msgid "В сутки" +msgstr "Per day" + +#: service/order_forms.py:156 +#, fuzzy +#| msgid "вся переписка" +msgid "За весь период" +msgstr "History" + #: templates/admin/hvad/change_form.html:38 #: templates/admin/hvad/change_form.html:40 #: templates/admin/hvad/deletion_not_allowed.html:10 @@ -836,2073 +1249,4350 @@ msgstr "" msgid "Delete?" msgstr "" -#: templates/client/advertising.html:9 +#: templates/client/404.html:7 +msgid "Запрашиваемая страница не найдена" +msgstr "" + +#: templates/client/404.html:11 +msgid "Возможно у нее изменился адрес или же она была удалена" +msgstr "" + +#: templates/client/404.html:11 +msgid "" +"Воспользуйтесь поиском по названию, расширенной формой поиска или каталогом " +"событий" +msgstr "" + +#: templates/client/404.html:15 +#, fuzzy +#| msgid "Каталоги выставок" +msgid "Каталог выставок" +msgstr "Expo Catalogs" + +#: templates/client/404.html:24 +#, fuzzy +#| msgid "Все конференции" +msgid "Каталог конференций" +msgstr "All Conferences" + #: templates/client/accounts/calendar.html:8 -#: templates/client/accounts/messages.html:6 +#: templates/client/accounts/feed.html:6 +#: templates/client/accounts/fill_company.html:13 +#: templates/client/accounts/messages.html:8 #: templates/client/accounts/messages_history.html:6 -#: templates/client/accounts/profile.html:9 +#: templates/client/accounts/new_profile.html:17 +#: templates/client/accounts/profile.html:7 #: templates/client/accounts/settings.html:8 +#: templates/client/accounts/translators/translator_city.html:11 +#: templates/client/accounts/translators/translator_country.html:7 +#: templates/client/accounts/translators/translator_profile.html:10 +#: templates/client/accounts/translators/translators_by.html:7 #: templates/client/accounts/user_events.html:8 +#: templates/client/article/article.html:7 +#: templates/client/article/blog_list.html:8 +#: templates/client/article/catalog.html:9 +#: templates/client/article/news.html:7 +#: templates/client/article/news_list.html:7 templates/client/city/city.html:7 +#: templates/client/company/companies_list.html:6 +#: templates/client/company/company_detail.html:6 #: templates/client/company/search.html:7 +#: templates/client/conference/catalog.html:7 +#: templates/client/conference/catalog_theme.html:7 +#: templates/client/conference/conference_by.html:13 +#: templates/client/conference/conference_detail.html:6 +#: templates/client/conference/conference_list.html:6 +#: templates/client/conference/members.html:6 +#: templates/client/conference/visitors.html:6 +#: templates/client/country/country.html:7 +#: templates/client/exposition/catalog.html:7 +#: templates/client/exposition/catalog_theme.html:7 +#: templates/client/exposition/exposition_by.html:13 +#: templates/client/exposition/exposition_detail.html:7 +#: templates/client/exposition/exposition_list.html:6 +#: templates/client/exposition/members.html:6 +#: templates/client/exposition/price.html:6 +#: templates/client/exposition/programm.html:7 #: templates/client/exposition/search.html:7 +#: templates/client/exposition/statistic.html:8 +#: templates/client/exposition/visitors.html:6 #: templates/client/includes/bread_scrumbs.html:5 +#: templates/client/organiser/add_event.html:6 +#: templates/client/page/page_view.html:7 +#: templates/client/place/catalog.html:7 templates/client/place/photo.html:6 +#: templates/client/place/place_detail.html:6 +#: templates/client/place/place_list.html:6 #: templates/client/place/search.html:7 -#: templates/client/service/catalog.html:7 +#: templates/client/service/build_stand.html:8 +#: templates/client/service/build_stand.html:15 +#: templates/client/service/catalog.html:8 +#: templates/client/service/catalog.html:15 +#: templates/client/service/participation.html:9 +#: templates/client/service/participation.html:16 +#: templates/client/service/remotely.html:10 +#: templates/client/service/remotely.html:17 +#: templates/client/service/tickets.html:9 +#: templates/client/service/tickets.html:16 +#: templates/client/service/tour.html:9 templates/client/service/tour.html:16 +#: templates/client/service/translator.html:9 +#: templates/client/service/translator.html:16 +#: templates/client/simple_pages/about.html:13 +#: templates/client/simple_pages/advertising.html:9 msgid "Главная страница" msgstr "Home Page" -#: templates/client/advertising.html:10 templates/client/advertising.html:15 -msgid "Реклама на сайте" -msgstr "Advertise with us" - -#: templates/client/advertising.html:21 -msgid "Рост аудитории Expomap 2009–2014 гг." -msgstr "Expomap audience growth for 2009-2014" - -#: templates/client/advertising.html:40 -msgid "посещений в" -msgstr "visits per" - -#: templates/client/advertising.html:40 templates/client/advertising.html:85 -msgid "месяц" -msgstr "month" - -#: templates/client/advertising.html:45 -msgid "целевых" -msgstr "targeted" +#: templates/client/accounts/calendar.html:9 +#: templates/client/accounts/fill_company.html:14 +#: templates/client/accounts/messages.html:9 +#: templates/client/accounts/messages_history.html:7 +#: templates/client/accounts/new_profile.html:18 +#: templates/client/accounts/profile.html:8 +#: templates/client/accounts/profile.html:13 +#: templates/client/accounts/settings.html:9 +msgid "Личный кабинет" +msgstr "Control Panel" -#: templates/client/advertising.html:45 -msgid "просмотров" -msgstr "views" +#: templates/client/accounts/calendar.html:10 +msgid "Календарь" +msgstr "Calendar" -#: templates/client/advertising.html:45 -msgid "вашей рекламы" -msgstr "your ad" +#: templates/client/accounts/calendar.html:16 +msgid "Личный календарь" +msgstr "Personal Calendar" -#: templates/client/advertising.html:85 -msgid "Посещений в" -msgstr "Visits per" +#: templates/client/accounts/calendar.html:35 +#, fuzzy +#| msgid "Все семинары" +msgid "Все / выделенные:" +msgstr "All Seminars" -#: templates/client/advertising.html:112 -msgid "Баннерная реклама" -msgstr "Banner ads" +#: templates/client/accounts/calendar.html:37 +#, fuzzy +#| msgid "из расписания" +msgid "удалить из расписания" +msgstr "From schedule" -#: templates/client/advertising.html:115 -msgid "" -"Вы можете таргетировать Вашу рекламу, привязывая ее показы к определенной " -"тематической отрасли (например, события в сфере строительства) или " -"географической зоне (например, выставки и конференции Москвы)." +#: templates/client/accounts/calendar.html:39 +msgid "ЭКСПОРТИРОВАТЬ В" msgstr "" -"You can target your ads, associating it with a specific industry (e.g. " -"construction industry events) or geographic zone (e.g. expos and conferences " -"in your city)." -#: templates/client/advertising.html:116 -msgid "" -"Возможные варианты размещения и размеры баннеров можно посмотреть на эскизе." -msgstr "The options for banner display and dimensions are illustrated here." - -#: templates/client/advertising.html:121 -msgid "от" -msgstr "from" +#: templates/client/accounts/calendar.html:40 +#, fuzzy +#| msgid "сохранить" +msgid "сохранить в xls" +msgstr "Save" -#: templates/client/advertising.html:121 templates/client/advertising.html:143 -#: templates/client/advertising.html:163 -msgid "руб." -msgstr "RUB" +#: templates/client/accounts/calendar.html:41 +#, fuzzy +#| msgid "сохранить" +msgid "сохранить в pdf" +msgstr "Save" -#: templates/client/advertising.html:122 templates/client/advertising.html:144 -#: templates/client/advertising.html:164 -msgid "Заказать услугу" -msgstr "Place order" +#: templates/client/accounts/calendar.html:42 +msgid "Распечатать" +msgstr "" -#: templates/client/advertising.html:125 -msgid "за месяц размещения" -msgstr "per month" +#: templates/client/accounts/calendar.html:50 +#, fuzzy +#| msgid "добавить в календарь" +msgid "Посмотреть прошедший календарь" +msgstr "Add to calendar" -#: templates/client/advertising.html:128 -msgid "Скидки при длительном размещении, а также агентствам." -msgstr "Discounts for long-term ads and for agencies." +#: templates/client/accounts/feed.html:7 +#: templates/client/accounts/feed.html:12 +#, fuzzy +#| msgid "Новости событий" +msgid "Моя лента событий" +msgstr "Event News" -#: templates/client/advertising.html:135 -msgid "Приоритетное размещение событий в каталоге" -msgstr "Priority catalog event advertisement" +#: templates/client/accounts/feed.html:45 +#, fuzzy +#| msgid "применить" +msgid "Применить" +msgstr "Apply" -#: templates/client/advertising.html:138 +#: templates/client/accounts/feed.html:69 msgid "" -"Ваше событие всегда в Топе тематического календаря и выделено цветом — вне " -"зависимости от дат его проведения." +" Вы можете настроить ленту событий, один раз выбрав интересные темы и " +"географию с помощью кнопки «Фильтрация ленты»." msgstr "" -"Your event will always be at the top of the event calendar and highlighted " -"for accent regardless of when it is to be held." -#: templates/client/advertising.html:147 -msgid "за период до 1 года (с момента размещения до начала события)" +#: templates/client/accounts/feed.html:79 +#: templates/client/exposition/search.html:28 +msgid "" +"Увы, событий, соответствующих выбранным фильтрам, нет в каталоге.
      " +"Попробуйте укрупнить параметры поиска" msgstr "" -"for a period of up to 1 year (from initial publishing to date of event)" -#: templates/client/advertising.html:156 -msgid "Персональная визитка Вашей компании" -msgstr "Your personalized corporate business card" +#: templates/client/accounts/feed.html:96 +#: templates/client/includes/catalog_search.html:107 +#: templates/client/includes/catalog_search_main.html:117 +msgid " и еще _ позиции" +msgstr "" -#: templates/client/advertising.html:158 -msgid "" -"В связи с недавним появлением каталога, спешите занять первые места в " -"рубриках!" +#: templates/client/accounts/feed.html:97 +#: templates/client/includes/catalog_search.html:106 +#: templates/client/includes/catalog_search_main.html:116 +msgid " и еще _ позиция" msgstr "" -"Given the novel nature of the catalog, you still have the opportunity to " -"reserve the top spots in various sections!" -#: templates/client/advertising.html:167 -msgid "за год за 1 тематический раздел" -msgstr "per year for one section" +#: templates/client/accounts/fill_company.html:15 +#, fuzzy +#| msgid "Пожелания" +msgid "Компания" +msgstr "wishes" -#: templates/client/advertising.html:182 -msgid "Наша аудитория" -msgstr "Our Audience" +#: templates/client/accounts/fill_company.html:28 +#: templates/client/includes/company/company_edit.html:12 +#, fuzzy +#| msgid "отправить запрос" +msgid "Добавить лого" +msgstr "Make an inquiry" -#: templates/client/advertising.html:184 -msgid "Маркетологи" -msgstr "Marketing Specialists" +#: templates/client/accounts/fill_company.html:53 +#: templates/client/accounts/fill_company.html:90 +#: templates/client/accounts/fill_company.html:116 +#: templates/client/accounts/fill_company.html:152 +#: templates/client/accounts/fill_company.html:270 +#: templates/client/accounts/fill_company.html:302 +#: templates/client/accounts/fill_company.html:336 +#: templates/client/accounts/fill_company.html:367 +#: templates/client/accounts/fill_company.html:393 +#: templates/client/accounts/fill_company.html:419 +#: templates/client/accounts/new_profile.html:76 +#: templates/client/accounts/new_profile.html:122 +#: templates/client/accounts/new_profile.html:162 +#: templates/client/accounts/new_profile.html:287 +#: templates/client/accounts/new_profile.html:325 +#: templates/client/accounts/new_profile.html:363 +#: templates/client/accounts/profile.html:26 +#: templates/client/accounts/profile.html:70 +#: templates/client/accounts/profile.html:101 +#: templates/client/accounts/profile.html:138 +#: templates/client/accounts/profile.html:168 +#: templates/client/accounts/profile.html:213 +#: templates/client/accounts/profile.html:258 +#: templates/client/accounts/profile.html:287 +#: templates/client/accounts/profile.html:316 +#: templates/client/includes/accounts/current_user.html:28 +#: templates/client/includes/accounts/current_user.html:72 +#: templates/client/includes/accounts/current_user.html:110 +#: templates/client/includes/accounts/current_user.html:153 +#: templates/client/includes/accounts/current_user.html:282 +#: templates/client/includes/accounts/current_user.html:347 +#: templates/client/includes/accounts/current_user.html:383 +#: templates/client/includes/company/company_edit.html:27 +#: templates/client/includes/company/company_edit.html:65 +#: templates/client/includes/company/company_edit.html:104 +#: templates/client/includes/company/company_edit.html:138 +#: templates/client/includes/company/company_edit.html:187 +#: templates/client/includes/company/company_edit.html:218 +#: templates/client/includes/company/company_edit.html:344 +#: templates/client/includes/company/company_edit.html:375 +#: templates/client/includes/company/company_edit.html:406 +msgid "редактировать" +msgstr "Edit" -#: templates/client/advertising.html:185 -msgid "PR-специалисты" -msgstr "PR Specialists" +#: templates/client/accounts/fill_company.html:55 +#: templates/client/accounts/new_profile.html:164 +#: templates/client/includes/accounts/current_user.html:64 +#: templates/client/includes/accounts/current_user.html:102 +#: templates/client/includes/accounts/current_user.html:142 +#: templates/client/includes/company/company_edit.html:57 +#: templates/client/includes/company/company_edit.html:98 +#, fuzzy +#| msgid "Заказать билет" +msgid "Указать" +msgstr "Order Ticket" -#: templates/client/advertising.html:186 -msgid "Профильные специалисты" -msgstr "Experts" +#: templates/client/accounts/fill_company.html:56 +#, fuzzy +#| msgid "город" +msgid "свой город" +msgstr "City" -#: templates/client/advertising.html:187 -msgid "Руководители департаментов" -msgstr "Department Heads" +#: templates/client/accounts/fill_company.html:75 +#: templates/client/accounts/fill_company.html:102 +#: templates/client/accounts/fill_company.html:133 +#: templates/client/accounts/fill_company.html:166 +#: templates/client/accounts/fill_company.html:255 +#: templates/client/accounts/fill_company.html:287 +#: templates/client/accounts/fill_company.html:319 +#: templates/client/accounts/fill_company.html:352 +#: templates/client/accounts/fill_company.html:383 +#: templates/client/accounts/fill_company.html:409 +#: templates/client/accounts/fill_company.html:436 +#: templates/client/accounts/new_profile.html:104 +#: templates/client/accounts/new_profile.html:141 +#: templates/client/accounts/new_profile.html:185 +#: templates/client/accounts/new_profile.html:272 +#: templates/client/accounts/new_profile.html:305 +#: templates/client/accounts/new_profile.html:342 +#: templates/client/accounts/new_profile.html:380 +#: templates/client/accounts/profile.html:42 +#: templates/client/accounts/profile.html:89 +#: templates/client/accounts/profile.html:120 +#: templates/client/accounts/profile.html:156 +#: templates/client/accounts/profile.html:180 +#: templates/client/accounts/profile.html:243 +#: templates/client/accounts/profile.html:271 +#: templates/client/accounts/profile.html:299 +#: templates/client/accounts/profile.html:328 +#: templates/client/includes/accounts/current_user.html:44 +#: templates/client/includes/accounts/current_user.html:90 +#: templates/client/includes/accounts/current_user.html:129 +#: templates/client/includes/accounts/current_user.html:173 +#: templates/client/includes/accounts/current_user.html:261 +#: templates/client/includes/accounts/current_user.html:299 +#: templates/client/includes/accounts/current_user.html:359 +#: templates/client/includes/accounts/current_user.html:395 +#: templates/client/includes/company/company_edit.html:43 +#: templates/client/includes/company/company_edit.html:83 +#: templates/client/includes/company/company_edit.html:199 +#: templates/client/includes/company/company_edit.html:326 +#: templates/client/includes/company/company_edit.html:357 +#: templates/client/includes/company/company_edit.html:388 +#: templates/client/includes/company/company_edit.html:419 +#: templates/client/includes/company/company_edit.html:449 +#: templates/client/includes/company/company_edit.html:482 +#: templates/client/includes/company/company_edit.html:516 +msgid "Сохранить" +msgstr "Save" -#: templates/client/advertising.html:187 -msgid "(продажи, снабжение, маркетинг, PR и др.)" -msgstr "(sales, supply, marketing, PR, etc.)" +#: templates/client/accounts/fill_company.html:77 +#: templates/client/accounts/fill_company.html:105 +#: templates/client/accounts/fill_company.html:136 +#: templates/client/accounts/fill_company.html:169 +#: templates/client/accounts/fill_company.html:258 +#: templates/client/accounts/fill_company.html:290 +#: templates/client/accounts/fill_company.html:322 +#: templates/client/accounts/fill_company.html:355 +#: templates/client/accounts/fill_company.html:386 +#: templates/client/accounts/fill_company.html:412 +#: templates/client/accounts/fill_company.html:439 +#: templates/client/accounts/new_profile.html:108 +#: templates/client/accounts/new_profile.html:145 +#: templates/client/accounts/new_profile.html:188 +#: templates/client/accounts/new_profile.html:275 +#: templates/client/accounts/new_profile.html:308 +#: templates/client/accounts/new_profile.html:345 +#: templates/client/accounts/new_profile.html:383 +#: templates/client/accounts/profile.html:45 +#: templates/client/accounts/profile.html:92 +#: templates/client/accounts/profile.html:123 +#: templates/client/accounts/profile.html:159 +#: templates/client/accounts/profile.html:183 +#: templates/client/accounts/profile.html:246 +#: templates/client/accounts/profile.html:274 +#: templates/client/accounts/profile.html:302 +#: templates/client/accounts/profile.html:331 +#: templates/client/includes/accounts/current_user.html:47 +#: templates/client/includes/accounts/current_user.html:93 +#: templates/client/includes/accounts/current_user.html:132 +#: templates/client/includes/accounts/current_user.html:176 +#: templates/client/includes/accounts/current_user.html:264 +#: templates/client/includes/accounts/current_user.html:302 +#: templates/client/includes/accounts/current_user.html:363 +#: templates/client/includes/accounts/current_user.html:398 +#: templates/client/includes/company/company_edit.html:46 +#: templates/client/includes/company/company_edit.html:85 +#: templates/client/includes/company/company_edit.html:203 +#: templates/client/includes/company/company_edit.html:329 +#: templates/client/includes/company/company_edit.html:360 +#: templates/client/includes/company/company_edit.html:391 +#: templates/client/includes/company/company_edit.html:422 +msgid "закрыть" +msgstr "Close" -#: templates/client/advertising.html:189 -msgid "Руководители компаний" -msgstr "Corporate Executives" +#: templates/client/accounts/fill_company.html:118 +#: templates/client/accounts/fill_company.html:154 +#: templates/client/accounts/fill_company.html:187 +#: templates/client/accounts/fill_company.html:272 +#: templates/client/accounts/fill_company.html:304 +#: templates/client/accounts/fill_company.html:338 +#: templates/client/accounts/fill_company.html:369 +#: templates/client/accounts/fill_company.html:395 +#: templates/client/accounts/fill_company.html:421 +#: templates/client/accounts/new_profile.html:201 +#: templates/client/accounts/new_profile.html:289 +#: templates/client/accounts/new_profile.html:327 +#: templates/client/accounts/new_profile.html:365 +#: templates/client/includes/accounts/current_user.html:189 +#: templates/client/includes/accounts/current_user.html:274 +#: templates/client/includes/accounts/current_user.html:337 +#: templates/client/includes/accounts/current_user.html:377 +#: templates/client/includes/company/company_edit.html:132 +#: templates/client/includes/company/company_edit.html:181 +#: templates/client/includes/company/company_edit.html:251 +#: templates/client/includes/company/company_edit.html:338 +#: templates/client/includes/company/company_edit.html:367 +#: templates/client/includes/company/company_edit.html:398 +#: templates/client/includes/company/company_edit.html:434 +#: templates/client/includes/company/company_edit.html:466 +#: templates/client/includes/company/company_edit.html:499 +#, fuzzy +#| msgid "отправить" +msgid "Добавить" +msgstr "Send" -#: templates/client/advertising.html:190 -msgid "Собственники бизнеса" -msgstr "Business Owners" +#: templates/client/accounts/fill_company.html:182 +#: templates/client/accounts/new_profile.html:196 +#: templates/client/accounts/profile.html:191 +msgid "редактировать профиль" +msgstr "Edit Profile" -#: templates/client/advertising.html:196 -msgid "Наши рекламодатели" -msgstr "Our Advertisers" +#: templates/client/accounts/fill_company.html:183 +#: templates/client/accounts/new_profile.html:197 +#: templates/client/accounts/profile.html:192 +msgid "завершить редактирование" +msgstr "Finish Editing" -#: templates/client/advertising.html:199 -msgid "Организаторы мероприятий" -msgstr "Event Organizers" +#: templates/client/accounts/fill_company.html:184 +#, fuzzy +#| msgid "добавить в календарь" +msgid "Добавить профили в соц.сетях" +msgstr "Add to calendar" -#: templates/client/advertising.html:200 -msgid "Туристические компании" -msgstr "Tourism Agencies" +#: templates/client/accounts/fill_company.html:225 +#: templates/client/accounts/new_profile.html:242 +#: templates/client/includes/company/company_edit.html:233 +msgid "за каждый" +msgstr "" -#: templates/client/advertising.html:201 -msgid "Гостиницы и системы бронирования" -msgstr "Hotels & Reservation Services" +#: templates/client/accounts/fill_company.html:273 +#: templates/client/accounts/new_profile.html:290 +#: templates/client/includes/accounts/current_user.html:275 +#: templates/client/includes/company/company_edit.html:339 +#, fuzzy +#| msgid "Контактный номер телефона" +msgid "номер телефона" +msgstr "Phone number" -#: templates/client/advertising.html:202 -msgid "Сервис-компании в сфере конгрессно-выставочного бизнеса" -msgstr "Congress/Expo Service Companies" +#: templates/client/accounts/fill_company.html:363 +#: templates/client/conference.html:157 templates/client/exposition.html:159 +#: templates/client/includes/company/company_object.html:124 +#: templates/client/includes/conference/conference_object.html:146 +#: templates/client/includes/event_object.html:146 +#: templates/client/includes/exposition/expo_paid.html:175 +#: templates/client/includes/exposition/exposition_object.html:148 +#: templates/client/organiser/add_event.html:125 +#: templates/client/seminar.html:157 templates/client/webinar.html:142 +msgid "Дополнительная информация" +msgstr "Additional Information" -#: templates/client/advertising.html:203 -msgid "Компании-производители" -msgstr "Manufacturing Companies" +#: templates/client/accounts/fill_company.html:370 +#, fuzzy +#| msgid "Год основания:" +msgid "год основания" +msgstr "Year Founded:" -#: templates/client/advertising.html:204 -msgid "Торговые компании" -msgstr "Trading Companies" +#: templates/client/accounts/fill_company.html:391 +#: templates/client/accounts/fill_company.html:396 +#, fuzzy +#| msgid "Все сотрудники" +msgid "к-во сотрудников" +msgstr "All Staff" -#: templates/client/blank.html:25 -msgid "Expomap — выставки, конференции, семинары" -msgstr "Expomap: Expos, Conferences, Seminars" +#: templates/client/accounts/fill_company.html:466 +#: templates/client/includes/accounts/current_user.html:471 +#, fuzzy +#| msgid "поиск событий" +msgid "Поиск города" +msgstr "Event Search" -#: templates/client/conference.html:60 templates/client/conference.html:286 -#: templates/client/seminar.html:60 templates/client/seminar.html.py:265 -#: templates/client/popups/period.html:12 -#: templates/client/popups/place.html:103 -#: templates/client/service/tour.html:50 -#: templates/client/service/translator.html:102 -msgid "с" -msgstr "from" +#: templates/client/accounts/fill_company.html:470 +#: templates/client/article/blog_list.html:51 +#: templates/client/article/news_list.html:50 +#: templates/client/includes/company/company_edit.html:577 +#, fuzzy +#| msgid "Выберите интересующую вас тематику" +msgid "Выберите ключевые теги" +msgstr "Select a theme" -#: templates/client/conference.html:60 templates/client/conference.html:286 -#: templates/client/seminar.html:60 templates/client/seminar.html.py:265 -#: templates/client/popups/period.html:16 -#: templates/client/popups/place.html:107 -#: templates/client/service/tour.html:54 -#: templates/client/service/translator.html:106 -msgid "по" -msgstr "to" +#: templates/client/accounts/fill_company.html:476 +#: templates/client/accounts/new_profile.html:156 +#: templates/client/accounts/new_profile.html:418 +#: templates/client/accounts/profile.html:134 +#: templates/client/includes/accounts/current_user.html:149 +#: templates/client/includes/accounts/current_user.html:481 +msgid "в" +msgstr "in" -#: templates/client/conference.html:68 templates/client/exposition.html:70 -#: templates/client/seminar.html:68 -#: templates/client/exposition/exposition_price.html:64 -#: templates/client/exposition/exposition_programm.html:58 -#: templates/client/exposition/exposition_statistic.html:63 -#: templates/client/includes/address_block.html:8 -#: templates/client/includes/event_object.html:59 -msgid "Раскрыть карту" -msgstr "Open map" +#: templates/client/accounts/messages.html:10 +#: templates/client/accounts/messages.html:16 +#: templates/client/accounts/messages_history.html:8 +#: templates/client/accounts/messages_history.html:14 +msgid "Сообщения" +msgstr "Messages" -#: templates/client/conference.html:72 templates/client/exposition.html:74 -#: templates/client/seminar.html:72 -#: templates/client/exposition/exposition_price.html:68 -#: templates/client/exposition/exposition_programm.html:62 -#: templates/client/exposition/exposition_statistic.html:67 -#: templates/client/includes/address_block.html:11 -#: templates/client/includes/event_object.html:63 -msgid "Скрыть карту" -msgstr "Hide map" +#: templates/client/accounts/messages.html:42 +msgid "ответить" +msgstr "Reply" -#: templates/client/conference.html:80 templates/client/exposition.html:82 -#: templates/client/seminar.html:80 templates/client/webinar.html:66 -#: templates/client/includes/event_object.html:72 -msgid "Я планирую посетить" -msgstr "I plan on going" +#: templates/client/accounts/messages.html:44 +msgid "вся переписка" +msgstr "History" -#: templates/client/conference.html:81 templates/client/exposition.html:83 -#: templates/client/seminar.html:81 templates/client/webinar.html:67 -#: templates/client/includes/event_list.html:86 -#: templates/client/includes/event_list.html:89 -#: templates/client/includes/event_object.html:73 -#: templates/client/includes/place_object.html:233 -#: templates/client/includes/exposition/exposition_list.html:86 -#: templates/client/includes/exposition/exposition_list.html:89 -#: templates/client/includes/exposition/search_result.html:88 -#: templates/client/includes/exposition/search_result.html:91 -msgid "в расписание" -msgstr "to schedule" +#: templates/client/accounts/messages.html:55 +#, fuzzy +#| msgid "отправить сообщение" +msgid "У вас нет новых сообщений" +msgstr "Send Message" -#: templates/client/conference.html:82 templates/client/exposition.html:84 -#: templates/client/index.html:43 templates/client/seminar.html:82 -#: templates/client/webinar.html:68 -#: templates/client/includes/event_list.html:92 -#: templates/client/includes/event_object.html:74 -#: templates/client/includes/company/company_list.html:44 -#: templates/client/includes/company/search_result.html:44 -#: templates/client/includes/exposition/exposition_list.html:92 -#: templates/client/includes/exposition/members.html:35 -#: templates/client/includes/exposition/search_result.html:94 -msgid "заметка" -msgstr "note" +#: templates/client/accounts/messages.html:69 +#: templates/client/accounts/messages_history.html:43 +msgid "Сообщение" +msgstr "Message" -#: templates/client/conference.html:84 templates/client/exposition.html:86 -#: templates/client/seminar.html:84 -#: templates/client/includes/event_object.html:77 -msgid "Найти отель" -msgstr "Find a hotel" +#: templates/client/accounts/messages.html:77 +#: templates/client/accounts/messages_history.html:51 +#: templates/client/accounts/user.html:39 +msgid "отправить" +msgstr "Send" -#: templates/client/conference.html:114 -msgid "Посетить конференцию" -msgstr "Visit Conference" +#: templates/client/accounts/messages_history.html:29 +msgid "Вы" +msgstr "You" -#: templates/client/conference.html:117 templates/client/exposition.html:119 -#: templates/client/seminar.html:117 templates/client/webinar.html:102 -#: templates/client/includes/event_steps.html:7 -#: templates/client/service/tour.html:277 -msgid "Зарегистрируйтесь на событие" -msgstr "Event Registration" +#: templates/client/accounts/messages_history.html:52 +msgid "Все сообщения" +msgstr "All Messages" -#: templates/client/conference.html:118 -msgid "Билеты на конференцию" -msgstr "Conference Tickets" +#: templates/client/accounts/new_profile.html:49 +msgid "" +"\n" +"\t\t\t\t

      Заполните свой
      профиль, чтобы
      повысить рейтинг

      \n" +"\t\t\t\t

      Чем выше
      рейтинг —
      тем больше
      преимуществ!

      \n" +" " +msgstr "" -#: templates/client/conference.html:122 templates/client/exposition.html:124 -#: templates/client/seminar.html:122 templates/client/webinar.html:107 -#: templates/client/includes/event_steps.html:12 -#: templates/client/service/tour.html:282 -msgid "Забронируйте отель по лучшей цене" -msgstr "Reserve a hotel room at optimal price" +#: templates/client/accounts/new_profile.html:165 +#: templates/client/includes/accounts/current_user.html:143 +msgid "свою должность и место работы" +msgstr "" -#: templates/client/conference.html:127 templates/client/exposition.html:129 -#: templates/client/seminar.html:127 templates/client/webinar.html:112 -#: templates/client/includes/event_steps.html:17 -#: templates/client/service/tour.html:287 -msgid "Купите авиабилеты по лучшему тарифу" -msgstr "Purchase airline tickets at optimal price" +#: templates/client/accounts/new_profile.html:328 +#: templates/client/includes/accounts/current_user.html:338 +#: templates/client/includes/company/company_edit.html:399 +#, fuzzy +#| msgid "Веб-сайт" +msgid "сайт" +msgstr "Website" -#: templates/client/conference.html:136 templates/client/exposition.html:138 -#: templates/client/seminar.html:136 -#: templates/client/includes/event_object.html:114 -msgid "Фотографии с прошлой выставки" -msgstr "Photos from previous expo" +#: templates/client/accounts/new_profile.html:354 +#: templates/client/accounts/profile.html:312 +#: templates/client/includes/accounts/current_user.html:374 +msgid "О себе:" +msgstr "About Me:" -#: templates/client/conference.html:157 templates/client/exposition.html:159 -#: templates/client/seminar.html:157 templates/client/webinar.html:142 -#: templates/client/includes/event_object.html:135 -#: templates/client/includes/company/company_object.html:85 -msgid "Дополнительная информация" -msgstr "Additional Information" +#: templates/client/accounts/new_profile.html:366 +#: templates/client/includes/accounts/current_user.html:378 +#, fuzzy +#| msgid "Информация о переводе" +msgid "информацию о себе" +msgstr "Information about translations" -#: templates/client/conference.html:159 templates/client/exposition.html:161 -#: templates/client/seminar.html:159 -#: templates/client/includes/event_object.html:138 -msgid "Деловая программа" -msgstr "Business Program" +#: templates/client/accounts/new_profile.html:405 +#: templates/client/includes/accounts/current_user.html:468 +#, fuzzy +#| msgid "Туристические компании" +msgid "Выберите тематику компании" +msgstr "Tourism Agencies" -#: templates/client/conference.html:160 templates/client/exposition.html:162 -#: templates/client/seminar.html:160 -#: templates/client/includes/event_object.html:140 -msgid "Условия участия" -msgstr "Terms & Conditions" +#: templates/client/accounts/new_profile.html:408 +#, fuzzy +#| msgid "город" +msgid "Искать город" +msgstr "City" -#: templates/client/conference.html:163 templates/client/exposition.html:165 -#: templates/client/seminar.html:163 templates/client/webinar.html:145 -#: templates/client/includes/event_object.html:143 -msgid "Организатор" -msgstr "Organizer" +#: templates/client/accounts/new_profile.html:412 +#, fuzzy +#| msgid "Посетить конференцию" +msgid "Искать компанию" +msgstr "Visit Conference" -#: templates/client/conference.html:170 templates/client/exposition.html:174 -#: templates/client/seminar.html:170 templates/client/webinar.html:152 -#: templates/client/includes/event_object.html:152 -msgid "Веб-сайт" -msgstr "Website" +#: templates/client/accounts/profile.html:34 +#: templates/client/includes/accounts/current_user.html:36 +#: templates/client/includes/company/company_edit.html:35 +#: templates/client/organiser/add_event.html:227 +msgid "выберите файл" +msgstr "Select File" -#: templates/client/conference.html:175 templates/client/exposition.html:179 -#: templates/client/seminar.html:175 -#: templates/client/includes/event_object.html:159 -msgid "Аудитория" -msgstr "Audience" +#: templates/client/accounts/profile.html:35 +#: templates/client/includes/accounts/current_user.html:37 +#: templates/client/includes/company/company_edit.html:36 +msgid "Файл не выбран" +msgstr "No file chosen" -#: templates/client/conference.html:180 templates/client/exposition.html:185 -#: templates/client/seminar.html:180 -#: templates/client/includes/event_object.html:166 -msgid "Периодичность" -msgstr "Regularity" +#: templates/client/accounts/settings.html:10 +#: templates/client/accounts/settings.html:16 +msgid "Настройки" +msgstr "Settings" -#: templates/client/conference.html:183 templates/client/exposition.html:188 -#: templates/client/seminar.html:183 -#: templates/client/includes/event_object.html:171 -msgid "Экспонируемые продукты" -msgstr "Presented Products" +#: templates/client/accounts/settings.html:24 +msgid "смена пароля" +msgstr "Change Password" -#: templates/client/conference.html:195 templates/client/exposition.html:200 -#: templates/client/seminar.html:195 templates/client/webinar.html:166 -#: templates/client/includes/event_object.html:183 -msgid "Все участники" -msgstr "All Participants" +#: templates/client/accounts/settings.html:46 +msgid "Пароль изменен!" +msgstr "Password changed!" -#: templates/client/conference.html:220 templates/client/exposition.html:225 -#: templates/client/seminar.html:220 templates/client/webinar.html:191 -#: templates/client/includes/event_object.html:211 -msgid "Все посетители" -msgstr "All Visitors" +#: templates/client/accounts/settings.html:52 +#: templates/client/accounts/settings.html:74 +#: templates/client/accounts/settings.html:677 +msgid "сохранить" +msgstr "Save" -#: templates/client/conference.html:228 templates/client/exposition.html:234 -#: templates/client/exposition/exposition_statistic.html:101 -#: templates/client/includes/event_object.html:220 -#: templates/client/includes/place_object.html:107 -msgid "Общая выставочная площадь" -msgstr "Total Expo Area" +#: templates/client/accounts/settings.html:60 +msgid "настройка e-mail уведомлений" +msgstr "E-mail Notification Settings" -#: templates/client/conference.html:231 templates/client/exposition.html:237 -#: templates/client/includes/event_object.html:223 -#: templates/client/includes/place_object.html:115 -#: templates/client/includes/place_object.html:121 -msgid "м²" -msgstr "sq.m." +#: templates/client/accounts/settings.html:82 +msgid "социализация и sharing" +msgstr "Social & Sharing" -#: templates/client/conference.html:237 templates/client/exposition.html:244 -#: templates/client/exposition/exposition_statistic.html:94 -#: templates/client/includes/event_object.html:230 -msgid "учасников" -msgstr "participants" +#: templates/client/accounts/settings.html:137 +msgid "настройка подписки" +msgstr "Setup Subscription" -#: templates/client/conference.html:238 templates/client/exposition.html:245 -#: templates/client/exposition/exposition_statistic.html:90 -#: templates/client/includes/event_object.html:231 -msgid "посетителей" -msgstr "visitors" +#: templates/client/accounts/settings.html:142 +msgid "по e-mail" +msgstr "E-mail" -#: templates/client/conference.html:240 templates/client/exposition.html:247 -#: templates/client/includes/event_object.html:233 -#: templates/client/includes/place_object.html:143 -msgid "Основано в" -msgstr "Founded in" +#: templates/client/accounts/settings.html:143 +msgid "через RSS" +msgstr "RSS" -#: templates/client/conference.html:240 templates/client/exposition.html:247 -#: templates/client/includes/event_object.html:233 -#: templates/client/includes/place_object.html:143 -msgid "году" -msgstr "" +#: templates/client/accounts/settings.html:144 +msgid "на twitter" +msgstr "Twitter" -#: templates/client/conference.html:251 templates/client/exposition.html:258 -#: templates/client/seminar.html:230 -#: templates/client/includes/event_object.html:244 -#: templates/client/service/tickets.html:201 -#: templates/client/service/tour.html:362 -msgid "Отели рядом с выставкой от" -msgstr "Hotels near expo from" +#: templates/client/accounts/settings.html:145 +msgid "в iCal" +msgstr "iCal" -#: templates/client/conference.html:253 templates/client/exposition.html:260 -#: templates/client/seminar.html:232 -#: templates/client/includes/event_object.html:246 -#: templates/client/service/tickets.html:202 -#: templates/client/service/tour.html:363 -msgid "Все отели поблизости" -msgstr "All nearby hotels" - -#: templates/client/conference.html:260 templates/client/exposition.html:267 -#: templates/client/seminar.html:239 -#: templates/client/includes/event_object.html:255 -msgid "Ближайшие выставки по тематике" -msgstr "Nearby expos with given theme" +#: templates/client/accounts/translators/translator_city.html:12 +#: translator/views.py:91 +#, fuzzy +#| msgid "Город" +msgid "Города" +msgstr "City" -#: templates/client/exposition.html:116 -#: templates/client/includes/event_steps.html:4 -msgid "Посетить выставку" -msgstr "Visit Expo" +#: templates/client/accounts/translators/translator_city.html:13 +#: templates/client/accounts/translators/translator_country.html:9 +#: templates/client/accounts/translators/translator_country.html:27 +#: templates/client/accounts/translators/translators_list.html:10 +#: templates/client/includes/services.html:6 +msgid "Переводчики" +msgstr "Translators" -#: templates/client/exposition.html:120 -#: templates/client/includes/event_steps.html:8 -#: templates/client/service/tour.html:278 -msgid "Билеты на выставку" -msgstr "Expo Tickets" +#: templates/client/accounts/translators/translator_city.html:44 +#: templates/client/accounts/translators/translator_country.html:79 +msgid "Коротко о наших преимуществах:" +msgstr "" -#: templates/client/index.html:42 -msgid "добавить в календарь" -msgstr "Add to calendar" +#: templates/client/accounts/translators/translator_city.html:46 +#: templates/client/accounts/translators/translator_country.html:81 +#, fuzzy +#| msgid "Неактивная" +msgid "Эффективная цена" +msgstr "Inactive" -#: templates/client/index.html:80 +#: templates/client/accounts/translators/translator_city.html:47 +#: templates/client/accounts/translators/translator_country.html:82 #, fuzzy -msgid "Я ищу" -msgstr "I'm looking for:" +#| msgid "Профильные специалисты" +msgid "Опыт и профессионализм специалистов" +msgstr "Experts" -#: templates/client/index.html:91 -#: templates/client/includes/catalog_search.html:22 -msgid "найти" -msgstr "Search" +#: templates/client/accounts/translators/translator_city.html:48 +#: templates/client/accounts/translators/translator_country.html:83 +msgid "" +"Знание разных менталитетов и психологических аспектов проведения " +"переговоров с зарубежными бизнесменами" +msgstr "" -#: templates/client/index.html:95 templates/client/index.html.py:96 -#: templates/client/index.html:97 -#, fuzzy -msgid "Не важно" -msgstr "Not selected" +#: templates/client/accounts/translators/translator_city.html:49 +#: templates/client/accounts/translators/translator_country.html:84 +msgid "Ориентированность в мировых выставочных комплексах" +msgstr "" -#: templates/client/index.html:96 templates/client/popups/place.html:6 -msgid "Место" -msgstr "Location" +#: templates/client/accounts/translators/translator_city.html:50 +#: templates/client/accounts/translators/translator_country.html:85 +msgid "" +"Гарантии, отчетность по договору, прозрачные безналичные расчеты в России" +msgstr "" -#: templates/client/index.html:97 templates/client/includes/page_filter.html:3 -#: templates/client/popups/period.html:6 templates/client/popups/place.html:97 -msgid "Период" -msgstr "Period" +#: templates/client/accounts/translators/translator_city.html:62 +#: templates/client/accounts/translators/translator_country.html:97 +msgid "от 80 € / день" +msgstr "from 80 € / day" -#: templates/client/index.html:131 -msgid "Все выставки" -msgstr "All Expos" +#: templates/client/accounts/translators/translator_city.html:64 +#: templates/client/accounts/translators/translator_country.html:99 +#, fuzzy +#| msgid "Заказать услугу" +msgid "заказать услугу" +msgstr "Place order" -#: templates/client/index.html:141 -msgid "Все конференции" -msgstr "All Conferences" +#: templates/client/accounts/translators/translator_city.html:76 +#: templates/client/accounts/translators/translator_country.html:111 +msgid "Наши специалисты" +msgstr "Our specialists" -#: templates/client/index.html:151 -msgid "Все семинары" -msgstr "All Seminars" +#: templates/client/accounts/translators/translator_city.html:103 +#: templates/client/accounts/translators/translator_country.html:133 +msgid "Все переводчики" +msgstr "All Translators" -#: templates/client/index.html:175 templates/client/includes/news.html:6 -msgid "Новости событий" -msgstr "Event News" +#: templates/client/accounts/translators/translator_country.html:8 +#: templates/client/exposition/exposition_statistic.html:112 +#: templates/client/includes/exposition/statistic.html:123 +#: translator/views.py:113 +msgid "Страны" +msgstr "Countries" -#: templates/client/index.html:193 templates/client/includes/news.html:41 -msgid "Все новости" -msgstr "All News" +#: templates/client/accounts/translators/translator_country.html:41 +#: templates/client/city/city.html:57 templates/client/conference.html:72 +#: templates/client/country/country.html:72 +#: templates/client/exposition.html:74 +#: templates/client/exposition/exposition_programm.html:63 +#: templates/client/exposition/exposition_statistic.html:67 +#: templates/client/includes/address_block.html:11 +#: templates/client/includes/company/company_edit.html:179 +#: templates/client/includes/company/company_object.html:48 +#: templates/client/includes/conference/conference_object.html:56 +#: templates/client/includes/event_object.html:64 +#: templates/client/includes/exposition/expo_paid.html:66 +#: templates/client/includes/exposition/exposition_object.html:57 +#: templates/client/includes/exposition/price.html:61 +#: templates/client/includes/exposition/programm.html:61 +#: templates/client/includes/exposition/statistic.html:64 +#: templates/client/seminar.html:72 +msgid "Скрыть карту" +msgstr "Hide map" -#: templates/client/index.html:200 -msgid "Фоторепортажи:" -msgstr "Photo Reports:" +#: templates/client/accounts/translators/translator_country.html:44 +#: templates/client/city/city.html:60 templates/client/conference.html:68 +#: templates/client/country/country.html:75 +#: templates/client/exposition.html:70 +#: templates/client/exposition/exposition_programm.html:59 +#: templates/client/exposition/exposition_statistic.html:63 +#: templates/client/includes/address_block.html:8 +#: templates/client/includes/company/company_edit.html:179 +#: templates/client/includes/company/company_object.html:48 +#: templates/client/includes/conference/conference_object.html:53 +#: templates/client/includes/event_object.html:60 +#: templates/client/includes/exposition/expo_paid.html:62 +#: templates/client/includes/exposition/exposition_object.html:53 +#: templates/client/includes/exposition/price.html:57 +#: templates/client/includes/exposition/programm.html:57 +#: templates/client/includes/exposition/statistic.html:60 +#: templates/client/seminar.html:68 +msgid "Раскрыть карту" +msgstr "Open map" -#: templates/client/index.html:242 -msgid "Наши партнеры:" -msgstr "Our Partners:" +#: templates/client/accounts/translators/translator_profile.html:46 +#, fuzzy +#| msgid "Знание языков" +msgid "Родной язык" +msgstr "languages" -#: templates/client/index.html:268 -msgid "Обзоры и аналитика" -msgstr "Reviews & Analytics" +#: templates/client/accounts/translators/translator_profile.html:53 +#, fuzzy +#| msgid "Основано в" +msgid "Образование" +msgstr "Founded in" -#: templates/client/index.html:269 -msgid "Все обзоры" -msgstr "All Reviews" +#: templates/client/accounts/user.html:27 +#, fuzzy +#| msgid "отправить сообщение" +msgid "Отправить сообщение" +msgstr "Send Message" -#: templates/client/place_catalog.html:57 -#: templates/client/includes/place_list.html:46 -#: templates/client/includes/place/search_result.html:46 -msgid "фото" -msgstr "photos" +#: templates/client/accounts/user.html:32 +#, fuzzy +#| msgid "Все сообщения" +msgid "Текст сообщения" +msgstr "All Messages" -#: templates/client/seminar.html:114 -msgid "Посетить семинар" -msgstr "Visit Seminar" +#: templates/client/article/article.html:8 +#: templates/client/article/blog_list.html:9 +#: templates/client/article/blog_list.html:14 +#: templates/client/article/catalog.html:13 +#: templates/client/includes/news.html:26 +#, fuzzy +#| msgid "Статистика" +msgid "Статьи" +msgstr "Statistics" -#: templates/client/seminar.html:118 -msgid "Билеты на семинар" -msgstr "Seminar Tickets" +#: templates/client/article/article.html:24 +#: templates/client/article/news.html:25 +#: templates/client/includes/conference/conference_list.html:71 +#: templates/client/includes/conference/conference_object.html:88 +#: templates/client/includes/exposition/expo_paid.html:90 +#: templates/client/includes/exposition/expo_top.html:76 +#: templates/client/includes/exposition/exposition_list.html:78 +#: templates/client/includes/exposition/exposition_object.html:90 +#, fuzzy +#| msgid "применить" +msgid "изменить" +msgstr "Apply" -#: templates/client/webinar.html:99 -msgid "Посетить вебинар" -msgstr "Visit Webinar" +#: templates/client/article/article.html:34 +msgid "Автор" +msgstr "" -#: templates/client/webinar.html:103 -msgid "Билеты на вебинар" -msgstr "Webinar Tickets" +#: templates/client/article/article.html:59 +msgid "Похожие статьи" +msgstr "" -#: templates/client/webinar.html:121 -msgid "Фотографии с прошлого вебинара" -msgstr "Photos from previous webinar" +#: templates/client/article/article.html:59 +#: templates/client/includes/news.html:43 +#, fuzzy +#| msgid "Все выставки" +msgid "Все статьи" +msgstr "All Expos" -#: templates/client/webinar.html:200 -msgid "Ближайшие вебинары по тематике" -msgstr "Nearybe webinars with given theme" +#: templates/client/article/blog_list.html:48 +#: templates/client/article/news_list.html:47 +#, fuzzy +#| msgid "Введите ваше имя" +msgid "Укажите тематику" +msgstr "Enter your first name" -#: templates/client/accounts/calendar.html:9 -#: templates/client/accounts/messages.html:7 -#: templates/client/accounts/messages_history.html:7 -#: templates/client/accounts/profile.html:10 -#: templates/client/accounts/profile.html:16 -#: templates/client/accounts/settings.html:9 -msgid "Личный кабинет" -msgstr "Control Panel" +#: templates/client/article/catalog.html:11 +#: templates/client/article/catalog.html:33 +#: templates/client/article/news.html:8 +#: templates/client/article/news_list.html:8 +#: templates/client/article/news_list.html:13 +#, fuzzy +#| msgid "Все новости" +msgid "Новости" +msgstr "All News" -#: templates/client/accounts/calendar.html:10 -msgid "Календарь" -msgstr "Calendar" +#: templates/client/article/news.html:35 +msgid "Источник" +msgstr "" -#: templates/client/accounts/calendar.html:16 -msgid "Личный календарь" -msgstr "Personal Calendar" +#: templates/client/article/news.html:45 +#, fuzzy +#| msgid "Все новости" +msgid "Похожие новости" +msgstr "All News" -#: templates/client/accounts/messages.html:8 -#: templates/client/accounts/messages.html:14 -#: templates/client/accounts/messages_history.html:8 -#: templates/client/accounts/messages_history.html:14 -msgid "Сообщения" -msgstr "Messages" +#: templates/client/article/news.html:45 +#: templates/client/includes/index/news.html:21 +#: templates/client/includes/news.html:23 templates/client/main_page.html:166 +msgid "Все новости" +msgstr "All News" -#: templates/client/accounts/messages.html:40 -msgid "ответить" -msgstr "Reply" +#: templates/client/blank.html:59 +#: templates/client/includes/index/main_events.html:37 +#: templates/client/main_page.html:49 +msgid "добавить в календарь" +msgstr "Add to calendar" -#: templates/client/accounts/messages.html:42 -msgid "вся переписка" -msgstr "History" +#: templates/client/blank.html:60 +#: templates/client/includes/index/main_events.html:37 +#, fuzzy +#| msgid "добавить в календарь" +msgid "Убрать из календаря" +msgstr "Add to calendar" -#: templates/client/accounts/messages.html:57 -#: templates/client/accounts/messages_history.html:45 -#: templates/client/accounts/user.html:122 -msgid "Сообщение" +#: templates/client/buttons/booking_button.html:3 +#: templates/client/includes/event_list.html:89 +#: templates/client/includes/place/place_object.html:268 +msgid "Лучшие цены на отели на" +msgstr "Best hotel prices for" + +#: templates/client/city/city.html:34 templates/client/country/country.html:50 +#, fuzzy +#| msgid "Сообщение" +msgid "Население" msgstr "Message" -#: templates/client/accounts/messages.html:65 -#: templates/client/accounts/messages_history.html:53 -#: templates/client/accounts/user.html:129 -msgid "отправить" -msgstr "Send" +#: templates/client/city/city.html:34 templates/client/country/country.html:50 +msgid "человек" +msgstr "" -#: templates/client/accounts/messages_history.html:31 -msgid "Вы" -msgstr "You" +#: templates/client/city/city.html:42 templates/client/country/country.html:53 +msgid "Телефонный код" +msgstr "" -#: templates/client/accounts/messages_history.html:54 -msgid "Все сообщения" -msgstr "All Messages" +#: templates/client/city/city.html:45 +msgid "Транспорт" +msgstr "" -#: templates/client/accounts/profile.html:31 -#: templates/client/accounts/profile.html:81 -#: templates/client/accounts/profile.html:119 -#: templates/client/accounts/profile.html:163 -#: templates/client/accounts/profile.html:201 -#: templates/client/accounts/profile.html:252 -#: templates/client/accounts/profile.html:305 -#: templates/client/accounts/profile.html:335 -#: templates/client/accounts/profile.html:371 -#: templates/client/accounts/profile.html:409 -msgid "редактировать" -msgstr "Edit" +#: templates/client/city/city.html:69 +#, fuzzy +#| msgid "Я планирую посетить" +msgid "Должны посетить" +msgstr "I plan on going" -#: templates/client/accounts/profile.html:40 -msgid "выберите файл" -msgstr "Select File" +#: templates/client/city/city.html:77 +msgid "Шоппинг" +msgstr "" -#: templates/client/accounts/profile.html:41 -msgid "Файл не выбран" -msgstr "No file chosen" +#: templates/client/city/city.html:118 +#: templates/client/country/country.html:156 +#, fuzzy +#| msgid "События" +msgid "События в" +msgstr "Events" -#: templates/client/accounts/profile.html:50 -#: templates/client/accounts/profile.html:106 -#: templates/client/accounts/profile.html:142 -#: templates/client/accounts/profile.html:186 -#: templates/client/accounts/profile.html:217 -#: templates/client/accounts/profile.html:289 -#: templates/client/accounts/profile.html:321 -#: templates/client/accounts/profile.html:351 -#: templates/client/accounts/profile.html:387 -#: templates/client/accounts/profile.html:425 -msgid "Сохранить" -msgstr "Save" +#: templates/client/city/city.html:118 +#: templates/client/country/country.html:156 +#: templates/client/includes/company/company_object.html:216 +msgid "Все события" +msgstr "All Events" -#: templates/client/accounts/profile.html:53 -#: templates/client/accounts/profile.html:109 -#: templates/client/accounts/profile.html:146 -#: templates/client/accounts/profile.html:190 -#: templates/client/accounts/profile.html:221 -#: templates/client/accounts/profile.html:293 -#: templates/client/accounts/profile.html:325 -#: templates/client/accounts/profile.html:355 -#: templates/client/accounts/profile.html:391 -#: templates/client/accounts/profile.html:429 -msgid "закрыть" -msgstr "Close" +#: templates/client/city/city.html:128 +#: templates/client/country/country.html:166 +#, fuzzy +#| msgid "Места" +msgid "Места в" +msgstr "Locations" -#: templates/client/accounts/profile.html:95 -#: templates/client/service/catalog.html:70 -#: templates/client/service/participation.html:91 -#: templates/client/service/remotely.html:87 -#: templates/client/service/tickets.html:76 -#: templates/client/service/tour.html:231 -#: templates/client/service/translator.html:133 -msgid "Город" -msgstr "City" +#: templates/client/city/city.html:128 +#: templates/client/country/country.html:166 +#, fuzzy +#| msgid "места" +msgid "Все места" +msgstr "Locations" -#: templates/client/accounts/profile.html:230 -msgid "редактировать профиль" -msgstr "Edit Profile" +#: templates/client/city/city.html:138 +#: templates/client/country/country.html:176 +#, fuzzy +#| msgid "Организатор" +msgid "Организаторы в" +msgstr "Organizer" -#: templates/client/accounts/profile.html:231 -msgid "завершить редактирование" -msgstr "Finish Editing" +#: templates/client/city/city.html:138 +#: templates/client/country/country.html:176 +#, fuzzy +#| msgid "Организатор" +msgid "Все организаторы" +msgstr "Organizer" -#: templates/client/accounts/profile.html:403 -msgid "О себе:" -msgstr "About Me:" +#: templates/client/conference.html:60 templates/client/conference.html:286 +#: templates/client/includes/index/main_date_block.html:23 +#: templates/client/includes/show_date_block.html:23 +#: templates/client/organiser/add_event.html:94 +#: templates/client/popups/period.html:11 templates/client/seminar.html:60 +#: templates/client/seminar.html.py:265 templates/client/service/tour.html:69 +#: templates/client/service/translator.html:93 +msgid "с" +msgstr "from" -#: templates/client/accounts/settings.html:10 -#: templates/client/accounts/settings.html:16 -msgid "Настройки" -msgstr "Settings" +#: templates/client/conference.html:80 templates/client/exposition.html:82 +#: templates/client/includes/visit_button.html:6 +#: templates/client/includes/visit_button.html:9 +#: templates/client/includes/visit_button.html:13 +#: templates/client/seminar.html:80 templates/client/webinar.html:66 +msgid "Я планирую посетить" +msgstr "I plan on going" -#: templates/client/accounts/settings.html:24 -msgid "смена пароля" -msgstr "Change Password" +#: templates/client/conference.html:81 templates/client/exposition.html:83 +#: templates/client/includes/place/place_object.html:264 +#: templates/client/seminar.html:81 templates/client/webinar.html:67 +msgid "в расписание" +msgstr "to schedule" -#: templates/client/accounts/settings.html:46 -msgid "Пароль изменен!" -msgstr "Password changed!" +#: templates/client/conference.html:82 templates/client/exposition.html:84 +#: templates/client/includes/company/search_result.html:44 +#: templates/client/includes/conference/conference_list.html:61 +#: templates/client/includes/conference/conference_object.html:79 +#: templates/client/includes/event_list.html:85 +#: templates/client/includes/event_object.html:80 +#: templates/client/includes/exposition/expo_paid.html:81 +#: templates/client/includes/exposition/expo_top.html:66 +#: templates/client/includes/exposition/exposition_list.html:68 +#: templates/client/includes/exposition/exposition_object.html:81 +#: templates/client/includes/exposition/members.html:35 +#: templates/client/includes/exposition/search_result.html:58 +#: templates/client/includes/index/main_events.html:39 +#: templates/client/main_page.html:50 templates/client/seminar.html:82 +#: templates/client/webinar.html:68 +msgid "заметка" +msgstr "note" -#: templates/client/accounts/settings.html:52 -#: templates/client/accounts/settings.html:74 -#: templates/client/accounts/settings.html:677 -msgid "сохранить" -msgstr "Save" +#: templates/client/conference.html:84 templates/client/exposition.html:86 +#: templates/client/includes/conference/conference_object.html:91 +#: templates/client/includes/event_object.html:83 +#: templates/client/includes/exposition/expo_paid.html:93 +#: templates/client/includes/exposition/exposition_object.html:93 +#: templates/client/seminar.html:84 +msgid "Найти отель" +msgstr "Find a hotel" -#: templates/client/accounts/settings.html:60 -msgid "настройка e-mail уведомлений" -msgstr "E-mail Notification Settings" +#: templates/client/conference.html:114 +#: templates/client/includes/event_steps.html:4 +msgid "Посетить конференцию" +msgstr "Visit Conference" -#: templates/client/accounts/settings.html:82 -msgid "социализация и sharing" -msgstr "Social & Sharing" +#: templates/client/conference.html:117 templates/client/exposition.html:119 +#: templates/client/includes/event_steps.html:7 +#: templates/client/includes/exposition/expo_paid.html:126 +#: templates/client/seminar.html:117 templates/client/webinar.html:102 +msgid "Зарегистрируйтесь на событие" +msgstr "Event Registration" -#: templates/client/accounts/settings.html:137 -msgid "настройка подписки" -msgstr "Setup Subscription" +#: templates/client/conference.html:118 +msgid "Билеты на конференцию" +msgstr "Conference Tickets" -#: templates/client/accounts/settings.html:142 -#: templates/client/includes/announces.html:6 -msgid "по e-mail" -msgstr "E-mail" +#: templates/client/conference.html:122 templates/client/exposition.html:124 +#: templates/client/includes/event_steps.html:16 +#: templates/client/seminar.html:122 templates/client/webinar.html:107 +msgid "Забронируйте отель по лучшей цене" +msgstr "Reserve a hotel room at optimal price" -#: templates/client/accounts/settings.html:143 -#: templates/client/includes/announces.html:7 -msgid "через RSS" -msgstr "RSS" +#: templates/client/conference.html:127 templates/client/exposition.html:129 +#: templates/client/includes/event_steps.html:21 +#: templates/client/seminar.html:127 templates/client/webinar.html:112 +msgid "Купите авиабилеты по лучшему тарифу" +msgstr "Purchase airline tickets at optimal price" -#: templates/client/accounts/settings.html:144 -#: templates/client/includes/announces.html:8 -msgid "на twitter" -msgstr "Twitter" +#: templates/client/conference.html:136 templates/client/exposition.html:138 +#: templates/client/includes/event_object.html:120 +#: templates/client/includes/exposition/expo_paid.html:149 +#: templates/client/includes/exposition/exposition_object.html:122 +#: templates/client/seminar.html:136 +msgid "Фотографии с прошлой выставки" +msgstr "Photos from previous expo" -#: templates/client/accounts/settings.html:145 -#: templates/client/includes/announces.html:9 -msgid "в iCal" -msgstr "iCal" +#: templates/client/conference.html:159 templates/client/exposition.html:161 +#: templates/client/exposition/programm.html:12 +#: templates/client/includes/conference/conference_object.html:149 +#: templates/client/includes/event_object.html:150 +#: templates/client/includes/exposition/expo_paid.html:178 +#: templates/client/includes/exposition/exposition_object.html:151 +#: templates/client/seminar.html:159 +msgid "Деловая программа" +msgstr "Business Program" + +#: templates/client/conference.html:160 templates/client/exposition.html:162 +#: templates/client/exposition/price.html:11 +#: templates/client/includes/event_object.html:153 +#: templates/client/includes/exposition/expo_paid.html:181 +#: templates/client/includes/exposition/exposition_object.html:154 +#: templates/client/seminar.html:160 +msgid "Условия участия" +msgstr "Terms & Conditions" + +#: templates/client/conference.html:163 templates/client/exposition.html:165 +#: templates/client/exposition/exposition_programm.html:98 +#: templates/client/includes/conference/conference_object.html:155 +#: templates/client/includes/conference/conference_object.html:167 +#: templates/client/includes/event_object.html:157 +#: templates/client/includes/exposition/expo_paid.html:34 +#: templates/client/includes/exposition/expo_paid.html:188 +#: templates/client/includes/exposition/exposition_object.html:161 +#: templates/client/includes/exposition/exposition_object.html:172 +#: templates/client/seminar.html:163 templates/client/webinar.html:145 +msgid "Организатор" +msgstr "Organizer" + +#: templates/client/conference.html:170 templates/client/exposition.html:174 +#: templates/client/includes/conference/conference_object.html:178 +#: templates/client/includes/event_object.html:166 +#: templates/client/includes/exposition/expo_paid.html:198 +#: templates/client/includes/exposition/exposition_object.html:183 +#: templates/client/seminar.html:170 templates/client/webinar.html:152 +msgid "Веб-сайт" +msgstr "Website" + +#: templates/client/conference.html:195 templates/client/exposition.html:201 +#: templates/client/includes/event_object.html:197 +#: templates/client/includes/exposition/expo_paid.html:232 +#: templates/client/includes/exposition/exposition_object.html:223 +#: templates/client/seminar.html:195 templates/client/webinar.html:166 +msgid "Все участники" +msgstr "All Participants" + +#: templates/client/conference.html:213 +#: templates/client/conference/visitors.html:11 +#: templates/client/exposition.html:219 +#: templates/client/exposition/visitors.html:11 +#: templates/client/includes/conference/conference_object.html:244 +#: templates/client/includes/event_object.html:218 +#: templates/client/includes/exposition/expo_paid.html:262 +#: templates/client/includes/exposition/exposition_object.html:253 +#: templates/client/seminar.html:213 templates/client/webinar.html:184 +msgid "Посетители" +msgstr "Visitors" + +#: templates/client/conference.html:220 templates/client/exposition.html:226 +#: templates/client/includes/conference/conference_object.html:258 +#: templates/client/includes/event_object.html:225 +#: templates/client/includes/exposition/expo_paid.html:276 +#: templates/client/includes/exposition/exposition_object.html:267 +#: templates/client/seminar.html:220 templates/client/webinar.html:191 +msgid "Все посетители" +msgstr "All Visitors" + +#: templates/client/conference.html:228 templates/client/exposition.html:235 +#: templates/client/exposition/exposition_statistic.html:101 +#: templates/client/includes/event_object.html:234 +#: templates/client/includes/exposition/expo_paid.html:296 +#: templates/client/includes/exposition/exposition_object.html:286 +#: templates/client/includes/exposition/statistic.html:112 +#: templates/client/includes/place/place_object.html:115 +msgid "Общая выставочная площадь" +msgstr "Total Expo Area" + +#: templates/client/conference.html:231 templates/client/exposition.html:238 +#: templates/client/includes/event_object.html:237 +#: templates/client/includes/exposition/expo_paid.html:298 +#: templates/client/includes/exposition/exposition_object.html:288 +#: templates/client/includes/place/place_object.html:122 +#: templates/client/includes/place/place_object.html:128 +msgid "м²" +msgstr "sq.m." + +#: templates/client/conference.html:237 templates/client/exposition.html:245 +#: templates/client/exposition/exposition_statistic.html:94 +#: templates/client/includes/event_object.html:245 +msgid "учасников" +msgstr "participants" + +#: templates/client/conference.html:238 templates/client/exposition.html:246 +#: templates/client/exposition/exposition_statistic.html:90 +#: templates/client/includes/conference/conference_object.html:274 +#: templates/client/includes/event_object.html:248 +#: templates/client/includes/exposition/expo_paid.html:307 +#: templates/client/includes/exposition/exposition_object.html:297 +#: templates/client/includes/exposition/statistic.html:92 +msgid "посетителей" +msgstr "visitors" + +#: templates/client/conference.html:240 templates/client/exposition.html:248 +#: templates/client/includes/conference/conference_object.html:277 +#: templates/client/includes/event_object.html:251 +#: templates/client/includes/exposition/expo_paid.html:310 +#: templates/client/includes/exposition/exposition_object.html:300 +#: templates/client/includes/place/place_object.html:178 +msgid "Основано в" +msgstr "Founded in" + +#: templates/client/conference.html:240 templates/client/exposition.html:248 +#: templates/client/includes/conference/conference_object.html:277 +#: templates/client/includes/event_object.html:251 +#: templates/client/includes/exposition/expo_paid.html:310 +#: templates/client/includes/exposition/exposition_object.html:300 +#: templates/client/includes/place/place_object.html:178 +msgid "году" +msgstr "" + +#: templates/client/conference.html:251 templates/client/exposition.html:259 +#: templates/client/includes/booking_block.html:11 +#: templates/client/seminar.html:230 +msgid "Отели рядом с выставкой от" +msgstr "Hotels near expo from" + +#: templates/client/conference.html:253 templates/client/exposition.html:261 +#: templates/client/includes/booking_block.html:13 +#: templates/client/seminar.html:232 +msgid "Все отели поблизости" +msgstr "All nearby hotels" + +#: templates/client/conference.html:260 templates/client/exposition.html:268 +#: templates/client/includes/conference/conference_object.html:287 +#: templates/client/includes/event_object.html:264 +#: templates/client/includes/exposition/expo_paid.html:321 +#: templates/client/includes/exposition/exposition_object.html:310 +#: templates/client/seminar.html:239 +msgid "Ближайшие выставки по тематике" +msgstr "Nearby expos with given theme" + +#: templates/client/country/country.html:32 +msgid "Столица" +msgstr "" + +#: templates/client/country/country.html:35 +#, fuzzy +#| msgid "Официальный каталог" +msgid "Официальный язык" +msgstr "Official catalog" + +#: templates/client/country/country.html:42 +#, fuzzy +#| msgid "часов в день" +msgid "Часовая зона" +msgstr "hour per day" + +#: templates/client/country/country.html:43 +msgid "Часовые пояса" +msgstr "" + +#: templates/client/country/country.html:56 +msgid "Валюта" +msgstr "" + +#: templates/client/country/country.html:84 +#, fuzzy +#| msgid "Выставки по городам" +msgid "Крупные города" +msgstr "Expos by City" + +#: templates/client/country/country.html:102 +#, fuzzy +#| msgid "описание" +msgid "Описание" +msgstr "Description" + +#: templates/client/country/country.html:110 +#: templates/client/includes/place/place_object.html:95 +msgid "Фотогалерея" +msgstr "Photo Gallery" + +#: templates/client/country/country.html:128 +#, fuzzy +#| msgid "Контактная информация" +msgid "Визовая информация" +msgstr "Contact Information" + +#: templates/client/country/country.html:138 +#, fuzzy +#| msgid "документы" +msgid "Документы" +msgstr "Documents" + +#: templates/client/expobanners/banner_stat.html:34 +#: templates/client/expobanners/paid_stat.html:34 +#: templates/client/exposition/exposition_statistic.html:79 +#: templates/client/exposition/statistic.html:13 +#: templates/client/includes/event_object.html:154 +#: templates/client/includes/exposition/expo_paid.html:183 +#: templates/client/includes/exposition/expo_paid.html:289 +#: templates/client/includes/exposition/exposition_object.html:156 +#: templates/client/includes/exposition/statistic.html:76 +msgid "Статистика" +msgstr "Statistics" + +#: templates/client/expobanners/banner_stat.html:63 +#: templates/client/expobanners/paid_stat.html:63 +msgid "Подтвердить" +msgstr "" + +#: templates/client/expobanners/banner_stat.html:73 +#: templates/client/expobanners/paid_stat.html:73 +msgid "Дата" +msgstr "" + +#: templates/client/expobanners/banner_stat.html:74 +msgid "Показы" +msgstr "" + +#: templates/client/expobanners/banner_stat.html:75 +msgid "Клики" +msgstr "" + +#: templates/client/expobanners/banner_stat.html:76 +#, fuzzy +#| msgid "все потенциальные контакты" +msgid "Уникальные показы" +msgstr "all potential contacts" + +#: templates/client/expobanners/banner_stat.html:77 +#, fuzzy +#| msgid "Официальный каталог" +msgid "Уникальные клики" +msgstr "Official catalog" + +#: templates/client/expobanners/paid_stat.html:74 +#: templates/client/includes/exposition/services.html:17 +#, fuzzy +#| msgid "Официальный каталог" +msgid "Официальный сайт" +msgstr "Official catalog" + +#: templates/client/expobanners/paid_stat.html:75 +msgid "Билеты" +msgstr "Tickets" + +#: templates/client/expobanners/paid_stat.html:76 +#, fuzzy +#| msgid "Участник" +msgid "Участие" +msgstr "Participant" + +#: templates/client/expobanners/paid_stat.html:77 +#, fuzzy +#| msgid "стоимость каталога" +msgid "Переходы с каталога" +msgstr "price catalog" + +#: templates/client/exposition.html:116 +msgid "Посетить выставку" +msgstr "Visit Expo" + +#: templates/client/exposition.html:120 +#: templates/client/includes/exposition/expo_paid.html:130 +#: templates/client/includes/exposition/services.html:18 +#: templates/client/service/participation.html:274 +#: templates/client/service/participation.html:282 +#: templates/client/service/remotely.html:267 +#: templates/client/service/remotely.html:274 +#: templates/client/service/tickets.html:14 +#: templates/client/service/tickets.html:17 +#: templates/client/service/tickets.html:25 +#: templates/client/service/tour.html:363 +#: templates/client/service/tour.html:369 +#: templates/client/service/translator.html:366 +#: templates/client/service/translator.html:372 +msgid "Билеты на выставку" +msgstr "Expo Tickets" + +#: templates/client/exposition/exposition_programm.html:35 +#: templates/client/exposition/exposition_statistic.html:35 +#: templates/client/includes/conference/conference_object.html:27 +#: templates/client/includes/event_object.html:32 +#: templates/client/includes/exposition/expo_paid.html:28 +#: templates/client/includes/exposition/exposition_object.html:27 +#: templates/client/includes/exposition/price.html:29 +#: templates/client/includes/exposition/statistic.html:32 +msgid "Скидка" +msgstr "Discount" + +#: templates/client/exposition/exposition_statistic.html:103 +#: templates/client/includes/exposition/statistic.html:114 +msgid "м" +msgstr "m" + +#: templates/client/includes/accounts/calendar_table.html:5 +msgid "визуализация" +msgstr "Visualization" + +#: templates/client/includes/accounts/calendar_table.html:27 +msgid "Сегодня" +msgstr "Today" + +#: templates/client/includes/accounts/calendar_table.html:51 +#, fuzzy +#| msgid "Новости событий" +msgid "Нет отмеченых событий" +msgstr "Event News" + +#: templates/client/includes/accounts/current_user.html:13 +#, fuzzy +#| msgid "отправить запрос" +msgid "Добавить фото" +msgstr "Make an inquiry" + +#: templates/client/includes/accounts/current_user.html:52 +#: templates/client/includes/company/company_edit.html:51 +#: templates/client/includes/company/company_object.html:19 +msgid "Рейтинг" +msgstr "" + +#: templates/client/includes/accounts/current_user.html:65 +#, fuzzy +#| msgid "Выставки по городам" +msgid "Страну и город" +msgstr "Expos by City" + +#: templates/client/includes/accounts/current_user.html:103 +#, fuzzy +#| msgid "например, свою фамилию" +msgid "имя и фамилию" +msgstr "e,g, your last name" + +#: templates/client/includes/accounts/current_user.html:185 +#: templates/client/includes/company/company_edit.html:247 +#: templates/client/includes/company/company_object.html:76 +#, fuzzy +#| msgid "Профильные специалисты" +msgid "Профили в соц.сетях:" +msgstr "Experts" + +#: templates/client/includes/accounts/current_user.html:228 +#: templates/client/includes/company/company_edit.html:293 +msgid "+5 за каждый" +msgstr "" + +#: templates/client/includes/accounts/current_user.html:293 +#, fuzzy +#| msgid "Заказать услугу" +msgid "Показывать всем" +msgstr "Place order" + +#: templates/client/includes/accounts/current_user.html:407 +#, fuzzy +#| msgid "О компании:" +msgid "Мои компании:" +msgstr "About the Company:" + +#: templates/client/includes/accounts/current_user.html:414 +#, fuzzy +#| msgid "Краткое описание, вид деятельности компании" +msgid "Пока не добавлено ни одной компании" +msgstr "Brief description of activities of" + +#: templates/client/includes/accounts/current_user.html:434 +#, fuzzy +#| msgid "добавить в календарь" +msgid "Добавить компанию" +msgstr "Add to calendar" -#: templates/client/accounts/user.html:51 -#: templates/client/includes/company/company_list.html:49 -#: templates/client/includes/company/company_object.html:47 +#: templates/client/includes/accounts/current_user.html:475 +#, fuzzy +#| msgid "Описание компании" +msgid "Поиск компании" +msgstr "Company description" + +#: templates/client/includes/accounts/simple_user.html:71 #: templates/client/includes/company/search_result.html:49 #: templates/client/includes/exposition/members.html:39 -#: templates/client/includes/exposition/visitors.html:40 +#: templates/client/includes/exposition/visitors.html:42 msgid "отправить сообщение" msgstr "Send Message" -#: templates/client/accounts/user.html:92 +#: templates/client/includes/accounts/simple_user.html:99 msgid "О себе" msgstr "About Me" -#: templates/client/accounts/user.html:99 -#: templates/client/includes/company/company_object.html:111 +#: templates/client/includes/accounts/simple_user.html:107 +#: templates/client/includes/company/company_object.html:155 msgid "Участие в событиях" msgstr "Event Participation" -#: templates/client/accounts/user.html:117 -msgid "Ответить" -msgstr "Reply" +#: templates/client/includes/accounts/translators.html:35 +#: templates/client/includes/company/company_list.html:40 +#: templates/client/includes/company/search_result.html:40 +#: templates/client/includes/exposition/members.html:33 +#: templates/client/includes/exposition/visitors.html:36 +msgid "информация" +msgstr "Information" -#: templates/client/exposition/exposition_price.html:36 -#: templates/client/exposition/exposition_statistic.html:35 -msgid "Скидка" -msgstr "Discount" +#: templates/client/includes/article/catalog_filter_period.html:11 +#: templates/client/includes/exposition/catalog_filter_period.html:11 +#: templates/client/includes/page_filter.html:3 +#: templates/client/popups/period.html:5 +msgid "Период" +msgstr "Period" -#: templates/client/exposition/exposition_price.html:86 -msgid "Для посещения" -msgstr "Visitors" +#: templates/client/includes/calendar_button.html:4 +#: templates/client/includes/conference/conference_list.html:128 +#: templates/client/includes/conference/conference_object.html:374 +#: templates/client/includes/exposition/expo_paid.html:409 +#: templates/client/includes/exposition/exposition_list.html:139 +#: templates/client/includes/exposition/exposition_object.html:395 +#: templates/client/includes/exposition/search_result.html:110 +#, fuzzy +#| msgid "из расписания" +msgid "Из расписания" +msgstr "From schedule" -#: templates/client/exposition/exposition_price.html:88 -msgid "Стоимость билетов" -msgstr "Ticket Prices" +#: templates/client/includes/calendar_button.html:4 +#: templates/client/includes/conference/conference_list.html:127 +#: templates/client/includes/conference/conference_object.html:373 +#: templates/client/includes/exposition/expo_paid.html:408 +#: templates/client/includes/exposition/exposition_list.html:138 +#: templates/client/includes/exposition/exposition_object.html:394 +#: templates/client/includes/exposition/search_result.html:109 +#, fuzzy +#| msgid "в расписание" +msgid "В расписание" +msgstr "to schedule" -#: templates/client/exposition/exposition_price.html:96 -msgid "на 1 день" -msgstr "1 Day" +#: templates/client/includes/catalog_search.html:10 +msgid "Я ищу:" +msgstr "I'm looking for:" -#: templates/client/exposition/exposition_price.html:102 -#: templates/client/exposition/exposition_price.html:125 -msgid "на все дни" -msgstr "All Days" +#: templates/client/includes/catalog_search.html:20 +msgid "Где:" +msgstr "Where:" -#: templates/client/exposition/exposition_price.html:108 -msgid "Предварительная регистрация" -msgstr "Preliminary Registration" +#: templates/client/includes/catalog_search.html:29 +#: templates/client/includes/catalog_search_main.html:35 +msgid "найти" +msgstr "Search" -#: templates/client/exposition/exposition_price.html:131 -msgid "Регистрация на" -msgstr "Registration for" +#: templates/client/includes/catalog_search.html:34 +#: templates/client/includes/catalog_search_main.html:40 +msgid "Тематика: " +msgstr "Theme: " -#: templates/client/exposition/exposition_price.html:131 -msgid "стойке" -msgstr "stand" +#: templates/client/includes/catalog_search.html:42 +#: templates/client/includes/catalog_search_main.html:49 +msgid "Тип: " +msgstr "" -#: templates/client/exposition/exposition_price.html:137 -msgid "Заказать билет" -msgstr "Order Ticket" +#: templates/client/includes/catalog_search.html:49 +#: templates/client/includes/catalog_search_main.html:56 +msgid "Место: " +msgstr "Location: " + +#: templates/client/includes/catalog_search.html:58 +#: templates/client/includes/catalog_search_main.html:66 +msgid "Период: " +msgstr "Time: " + +#: templates/client/includes/catalog_search.html:109 +#: templates/client/includes/catalog_search.html:110 +#: templates/client/includes/catalog_search_main.html:119 +#: templates/client/includes/catalog_search_main.html:120 +msgid " и еще _" +msgstr "" + +#: templates/client/includes/company/company_edit.html:58 +msgid "город" +msgstr "City" + +#: templates/client/includes/company/company_edit.html:99 +#, fuzzy +#| msgid "Описание компании" +msgid "название компании" +msgstr "Company description" + +#: templates/client/includes/company/company_edit.html:368 +#, fuzzy +#| msgid "по e-mail" +msgid "email" +msgstr "E-mail" + +#: templates/client/includes/company/company_edit.html:452 +#: templates/client/includes/company/company_edit.html:485 +#: templates/client/includes/company/company_edit.html:520 +#, fuzzy +#| msgid "закрыть" +msgid "Закрыть" +msgstr "Close" + +#: templates/client/includes/company/company_edit.html:461 +#: templates/client/includes/company/company_edit.html:494 +#: templates/client/includes/company/company_edit.html:529 +msgid "Не заполнено" +msgstr "" + +#: templates/client/includes/company/company_edit.html:499 +#, fuzzy +#| msgid "О компании:" +msgid "О компании" +msgstr "About the Company:" + +#: templates/client/includes/company/company_edit.html:570 +#, fuzzy +#| msgid "выберите файл" +msgid "Выберите Страну" +msgstr "Select File" + +#: templates/client/includes/company/company_edit.html:573 +#, fuzzy +#| msgid "Выберите" +msgid "Выберите город" +msgstr "Select" + +#: templates/client/includes/company/company_list.html:42 +#: templates/client/includes/company/search_result.html:42 +#: templates/client/includes/exposition/members.html:34 +#: templates/client/includes/exposition/visitors.html:37 +#: templates/client/includes/place/place_list.html:40 +#: templates/client/includes/place/search_result.html:43 +msgid "события" +msgstr "Events" + +#: templates/client/includes/company/company_object.html:128 +msgid "Год основания:" +msgstr "Year Founded:" + +#: templates/client/includes/company/company_object.html:133 +msgid "Количество сотрудников:" +msgstr "Number of Staff:" + +#: templates/client/includes/company/company_object.html:137 +msgid "О компании:" +msgstr "About the Company:" + +#: templates/client/includes/company/company_object.html:159 +msgid "выставках" +msgstr "expos" + +#: templates/client/includes/company/company_object.html:162 +msgid "конференциях" +msgstr "conferences" + +#: templates/client/includes/company/company_object.html:165 +msgid "семинарах" +msgstr "seminars" + +#: templates/client/includes/company/company_object.html:189 +msgid "Участник" +msgstr "Participant" + +#: templates/client/includes/company/company_object.html:224 +msgid "Сотрудники" +msgstr "Staff" + +#: templates/client/includes/company/company_object.html:258 +msgid "Все сотрудники" +msgstr "All Staff" + +#: templates/client/includes/conference/conference_list.html:108 +msgid "" +"Конференции по указанным параметрам не найдены. Попробуйте задать менее " +"точный запрос по теме или расширить период времени" +msgstr "" + +#: templates/client/includes/conference/conference_object.html:121 +#, fuzzy +#| msgid "Фотографии с прошлой выставки" +msgid "Фотографии с прошлой конференции" +msgstr "Photos from previous expo" + +#: templates/client/includes/conference/conference_object.html:140 +#: templates/client/includes/event_object.html:140 +#: templates/client/includes/exposition/expo_paid.html:169 +#: templates/client/includes/exposition/exposition_object.html:141 +#, fuzzy +#| msgid "выставки" +msgid "О выставке" +msgstr "Expos" + +#: templates/client/includes/conference/conference_object.html:140 +#, fuzzy +#| msgid "конференции" +msgid "О конференции" +msgstr "Conferences" + +#: templates/client/includes/conference/conference_object.html:194 +#: templates/client/includes/exposition/expo_paid.html:218 +#: templates/client/includes/exposition/exposition_object.html:203 +#: templates/client/organiser/add_event.html:167 +#, fuzzy +#| msgid "Место работы" +msgid "Время работы" +msgstr "Employer" + +#: templates/client/includes/conference/conference_object.html:212 +#: templates/client/includes/conference/conference_object.html:233 +msgid "Спикеры" +msgstr "" + +#: templates/client/includes/conference/conference_object.html:213 +#, fuzzy +#| msgid "Все семинары" +msgid "Все спикеры" +msgstr "All Seminars" + +#: templates/client/includes/conference/conference_object.html:234 +#, fuzzy +#| msgid "вся информация о выставке" +msgid "Разместите информацию о ключевых спикерах" +msgstr "All expo information" + +#: templates/client/includes/conference/conference_object.html:235 +#: templates/client/popups/advertise_member.html:8 +#, fuzzy +#| msgid "редактировать профиль" +msgid "Рекламировать спикера" +msgstr "Edit Profile" + +#: templates/client/includes/conference/conference_object.html:260 +#: templates/client/includes/exposition/expo_paid.html:278 +#: templates/client/includes/exposition/exposition_object.html:269 +#, fuzzy +#| msgid "Зарегистрируйтесь на событие" +msgid "Пока никто не отметился на событии." +msgstr "Event Registration" + +#: templates/client/includes/conference/conference_object.html:271 +#: templates/client/includes/exposition/expo_paid.html:304 +#: templates/client/includes/exposition/exposition_object.html:294 +#: templates/client/includes/exposition/statistic.html:103 +#, fuzzy +#| msgid "учасников" +msgid "участников" +msgstr "participants" + +#: templates/client/includes/conference/conference_object.html:336 +#: templates/client/includes/exposition/expo_paid.html:368 +#: templates/client/includes/exposition/exposition_object.html:357 +#, fuzzy +#| msgid "выберите файл" +msgid "Смотрите также:" +msgstr "Select File" + +#: templates/client/includes/conference/conference_object.html:337 +#: templates/client/includes/conference/conference_object.html:338 +#: templates/client/includes/conference/conference_object.html:339 +#: templates/client/includes/conference/conference_object.html:340 +#: templates/client/includes/exposition/expo_paid.html:369 +#: templates/client/includes/exposition/expo_paid.html:370 +#: templates/client/includes/exposition/expo_paid.html:371 +#: templates/client/includes/exposition/expo_paid.html:372 +#: templates/client/includes/exposition/exposition_object.html:358 +#: templates/client/includes/exposition/exposition_object.html:359 +#: templates/client/includes/exposition/exposition_object.html:360 +#: templates/client/includes/exposition/exposition_object.html:361 +msgid "in" +msgstr "" + +#: templates/client/includes/conference/conference_object.html:339 +#: templates/client/includes/conference/conference_object.html:340 +#, fuzzy +#| msgid "Выставки по тематикам" +msgid "Конференции по тематике " +msgstr "Expos by Theme" + +#: templates/client/includes/conference/conference_services.html:6 +#: templates/client/includes/exposition/exposition_services.html:9 +#: templates/client/service/build_stand.html:183 +#: templates/client/service/build_stand.html:188 +#: templates/client/service/catalog.html:183 +#: templates/client/service/catalog.html:188 +#: templates/client/service/participation.html:276 +#: templates/client/service/participation.html:281 +#: templates/client/service/remotely.html:269 +#: templates/client/service/remotely.html:273 +#: templates/client/service/tickets.html:282 +#: templates/client/service/tickets.html:287 +#: templates/client/service/tour.html:365 +#: templates/client/service/tour.html:370 +msgid "Устный переводчик" +msgstr "Translator" + +#: templates/client/includes/conference/conference_services.html:10 +#, fuzzy +#| msgid "Бизнес-тур «под ключ" +msgid "Бизнес-тур \"под ключ\"" +msgstr "Remote" + +#: templates/client/includes/event_list.html:72 +#: templates/client/includes/exposition/services.html:4 +#: templates/client/includes/place/place_object.html:255 +msgid "услуги" +msgstr "Services" + +#: templates/client/includes/event_list_description.html:6 +msgid "" +"\n" +"\t\t

      Выставки - один из наиболее популярных инструментов " +"среди маркетологов. Это объясняется тем, что специализированные " +"выставки предоставляют отличную возможность быстро и в " +"одном месте найти новых партнеров и клиентов, узнать о новых трендах своей " +"отрасли, послушать насыщенную деловую программу. Поэтому мы создали " +"Expomap.Ru именно в помощь специалистам отделов маркетинга " +"и собственникам бизнеса, предоставляя легкий и удобный поиск " +"выставок, практические кейсы о том, как правильно выбрать " +"выставку, как организовать ее посещение за рубежом или " +"участие со стендом. Вы легко можете связаться с нашими " +"онлайн-консультантами через Skype или позвонив по тел. +7 499 999 12 " +"07, и получить бесплатную информацию об интересующей Вас " +"выставке или рекомендации по тем или иным вопросам.

      \n" +"\n" +"\t\t

      Сейчас в нашем каталоге представлены международные выставки 2013 " +"года, а также уже прошедшие мероприятия, начиная с 2008 года – со всех стран " +"и уголков мира. С помощью рубрикатора (левый блок \"Каталог " +"выставок\") или панели поиска (строка для ввода или расширенный " +"поиск) Вы всегда сможете найти календарь выставок по интересующим Вас тематикам: строительные выставки, медицинские выставки, выставки недвижимости " +"и другие. Кроме тематик, рубрикатор дает возможность сортировать события: по " +"алфавиту, по странам, по городам, по датам. Объединить все эти критерии Вы " +"можете, используя расширенный поиск. Итоговое расписание выставок по Вашим критериям будет построено " +"удобным образом, начиная с ближайших событий.

      \n" +"\t " +msgstr "" +"\n" +"\t\t

      Expos are one of the most popular marketing methods " +"among marketing specialists. This is due to the fact that specialized " +"expos provide an excellent opportunity to qickly find new " +"partners and clients in a single place, learn about new trends in your " +"industry, and receive a wealth of relevant knowledge. In sight of this, " +"we've created Expomap.ru to help marketing specialists and " +"business owners by providing quick and easy expo search " +"functionality along with guidance on how to properly select an expo, and how to setup a visit to a foreign expo or participate " +"with a booth. You can always reach our online support agents via " +"Skype or by calling +7 (499) 999 12 07. We will be happy to " +"provide you with free information on any expo you may be " +"interested in and offer advice on any relevant matters.

      \n" +"\n" +"\t\t

      Our catalog currently contains a listing of " +"international expos for 2013 as well as past events from all countries around the world starting " +"with 2008. Using our categorized listings (left panel, under \"Expo " +"Catalog\") or our search engine (including the basic search field " +"and advanced search form), you will always be able to find access an " +"expo calendar containing expos wiht the " +"themes you're interested in, including: construction industry expos, medical expos, real estate expos and others. " +"Aside from overall themes, the sorting mechanism allows you to sort events " +"by alphabet, country, city, or date. You can also make use of our advanced " +"search form to search based on any or all of these criteria at once. The " +"resulting expo schedule based on your " +"criteria will be structured in a user-friendly manner, ordered in descending " +"order starting with the nearest events.

      \n" +"\t " + +#: templates/client/includes/event_steps.html:4 +#, fuzzy +#| msgid "Участие в выставке" +msgid "Участвовать в выставке" +msgstr "Participation in exhibition" + +#: templates/client/includes/event_steps.html:7 +#, fuzzy +#| msgid "все потенциальные контакты" +msgid "Создайте уникальную концепцию" +msgstr "all potential contacts" + +#: templates/client/includes/event_steps.html:11 +#: templates/client/includes/exposition/price.html:227 +#: templates/client/includes/exposition/price.html:229 +#: templates/client/includes/exposition/services.html:19 +msgid "Заявка на участие" +msgstr "Participation Application" + +#: templates/client/includes/event_steps.html:11 +#: templates/client/includes/header.html:76 +#: templates/client/popups/register.html:6 +msgid "Регистрация" +msgstr "Register" + +#: templates/client/includes/exposition/catalog_filter_period.html:20 +#: templates/client/includes/page_filter.html:8 +msgid "Указать диапазон дат" +msgstr "Set date range" + +#: templates/client/includes/exposition/expo_paid.html:118 +#, fuzzy +#| msgid "Официальный каталог выставки" +msgid "Официальный сайт выставки" +msgstr "The official exhibition catalog" + +#: templates/client/includes/exposition/expo_paid.html:123 +#, fuzzy +#| msgid "Посетить выставку" +msgid "Посетить/участвовать в выставке" +msgstr "Visit Expo" + +#: templates/client/includes/exposition/expo_paid.html:135 +#, fuzzy +#| msgid "Забронируйте отель по лучшей цене" +msgid "Забронируйте площадь по лучшей цене" +msgstr "Reserve a hotel room at optimal price" + +#: templates/client/includes/exposition/expo_paid.html:140 +msgid "Задайте свой вопрос напрямую организатору" +msgstr "" + +#: templates/client/includes/exposition/expo_paid.html:141 +#, fuzzy +#| msgid "билет организатора" +msgid "Запрос организатору" +msgstr "organiser ticket" + +#: templates/client/includes/exposition/expo_paid.html:253 +#: templates/client/includes/exposition/exposition_object.html:244 +msgid "Привлекайте целевых посетителей на стенд" +msgstr "" + +#: templates/client/includes/exposition/expo_paid.html:371 +#: templates/client/includes/exposition/expo_paid.html:372 +#: templates/client/includes/exposition/exposition_object.html:360 +#: templates/client/includes/exposition/exposition_object.html:361 +#, fuzzy +#| msgid "Выставки по тематикам" +msgid "Выставки по тематике " +msgstr "Expos by Theme" + +#: templates/client/includes/exposition/exposition_list.html:116 +msgid "" +"Выставки по указанным параметрам не найдены. Попробуйте задать менее точный " +"запрос по теме или расширить период времени" +msgstr "" + +#: templates/client/includes/exposition/exposition_object.html:245 +#, fuzzy +#| msgid "редактировать профиль" +msgid "Рекламировать участника" +msgstr "Edit Profile" + +#: templates/client/includes/exposition/exposition_services.html:6 +#, fuzzy +#| msgid "Участие и посещение" +msgid "Участие со стендом" +msgstr "Participation & Attendance" + +#: templates/client/includes/exposition/exposition_services.html:13 +#: templates/client/includes/services.html:9 +#: templates/client/service/build_stand.html:185 +#: templates/client/service/build_stand.html:190 +#: templates/client/service/catalog.html:185 +#: templates/client/service/catalog.html:190 +#: templates/client/service/participation.html:278 +#: templates/client/service/participation.html:283 +#: templates/client/service/remotely.html:15 +#: templates/client/service/remotely.html:18 +#: templates/client/service/remotely.html:270 +#: templates/client/service/tickets.html:283 +#: templates/client/service/tickets.html:288 +#: templates/client/service/tour.html:366 +#: templates/client/service/tour.html:371 +#: templates/client/service/translator.html:369 +#: templates/client/service/translator.html:374 +msgid "Заочное посещение" +msgstr "Absentee Visit" + +#: templates/client/includes/exposition/price.html:72 +msgid "Стоимость посещения и участия" +msgstr "Admission and participation price" + +#: templates/client/includes/exposition/price.html:80 +msgid "Для посещения" +msgstr "Visitors" + +#: templates/client/includes/exposition/price.html:82 +msgid "Стоимость билетов" +msgstr "Ticket Prices" + +#: templates/client/includes/exposition/price.html:99 +msgid "на 1 день" +msgstr "1 Day" + +#: templates/client/includes/exposition/price.html:112 +#: templates/client/includes/exposition/price.html:140 +msgid "на все дни" +msgstr "All Days" + +#: templates/client/includes/exposition/price.html:118 +msgid "Предварительная регистрация" +msgstr "Preliminary Registration" + +#: templates/client/includes/exposition/price.html:147 +msgid "Регистрация на" +msgstr "Registration for" + +#: templates/client/includes/exposition/price.html:147 +msgid "стойке" +msgstr "stand" + +#: templates/client/includes/exposition/price.html:155 +#: templates/client/includes/exposition/price.html:159 +msgid "Заказать билет" +msgstr "Order Ticket" + +#: templates/client/includes/exposition/price.html:166 +msgid "Выставка открыта для" +msgstr "Expo open for" + +#: templates/client/includes/exposition/price.html:176 +msgid "Для участия" +msgstr "Participants" + +#: templates/client/includes/exposition/price.html:178 +msgid "Стоимость аренды 1м²" +msgstr "Rental Fee per 1 sq.m." + +#: templates/client/includes/exposition/price.html:192 +msgid "оборудованная площадь" +msgstr "Equipped Area" + +#: templates/client/includes/exposition/price.html:205 +msgid "необорудованная площадь" +msgstr "Unequipped Area" + +#: templates/client/includes/exposition/price.html:218 +msgid "открытая площадь" +msgstr "Open Area" + +#: templates/client/includes/exposition/price.html:224 +msgid "Цены на площадь доступны по запросу" +msgstr "" + +#: templates/client/includes/exposition/price.html:235 +msgid "Минимальный размер стенда" +msgstr "Minimal Booth Size" + +#: templates/client/includes/exposition/price.html:238 +msgid "Регистрационный взнос" +msgstr "Registration Deposit" + +#: templates/client/includes/exposition/price.html:241 +msgid "Крайний срок подачи заявки" +msgstr "Application Deadline" + +#: templates/client/includes/exposition/services.html:14 +#, fuzzy +#| msgid "Заказать билет" +msgid "Заказать отель" +msgstr "Order Ticket" + +#: templates/client/includes/exposition/statistic.html:128 +#, fuzzy +#| msgid "Все участники" +msgid "стран-участниц" +msgstr "All Participants" + +#: templates/client/includes/feedback.html:5 +msgid "обратный звонок" +msgstr "Callback" + +#: templates/client/includes/footer.html:26 +#: templates/client/includes/menu.html:4 +msgid "События" +msgstr "Events" + +#: templates/client/includes/footer.html:32 +#: templates/client/includes/menu.html:10 +msgid "места" +msgstr "Locations" + +#: templates/client/includes/footer.html:33 +#: templates/client/includes/menu.html:11 +msgid "участники" +msgstr "Participants" + +#: templates/client/includes/footer.html:37 +#: templates/client/includes/menu.html:15 +msgid "о нас" +msgstr "About Us" + +#: templates/client/includes/footer.html:38 +#: templates/client/includes/menu.html:16 +msgid "партнеры" +msgstr "Partners" + +#: templates/client/includes/footer.html:39 +#: templates/client/includes/menu.html:17 +msgid "реклама" +msgstr "Advertising" + +#: templates/client/includes/footer.html:48 +#: templates/client/includes/menu.html:24 +msgid "контакты" +msgstr "Contact Us" + +#: templates/client/includes/header.html:8 +msgid "Выставки, конференции, семинары" +msgstr "Expos, Conferences, Seminars" + +#: templates/client/includes/header.html:18 +#, fuzzy +#| msgid "отправить сообщение" +msgid "добавить событие" +msgstr "Send Message" + +#: templates/client/includes/header.html:61 +msgid "личный кабинет" +msgstr "Control Panel" + +#: templates/client/includes/header.html:63 +msgid "календарь" +msgstr "Calendar" + +#: templates/client/includes/header.html:64 +msgid "документы" +msgstr "Documents" + +#: templates/client/includes/header.html:68 +msgid "настройки" +msgstr "Settings" + +#: templates/client/includes/header.html:71 +msgid "Выход" +msgstr "Log out" + +#: templates/client/includes/header.html:77 +msgid "вход" +msgstr "Login" + +#: templates/client/includes/header.html:88 +#, fuzzy +#| msgid "Выставки в России" +msgid "Выставки в Москве" +msgstr "Expos in Russia" + +#: templates/client/includes/header.html:89 +#, fuzzy +#| msgid "Выставки в Берлине" +msgid "Выставки в Петербурге" +msgstr "Expos in Berlin" + +#: templates/client/includes/header.html:90 +msgid "Выставки в Германии" +msgstr "Expos in Germany" + +#: templates/client/includes/header.html:94 +msgid "Выставки по городам" +msgstr "Expos by City" + +#: templates/client/includes/header.html:95 +msgid "Выставки по странам" +msgstr "Expos by Country" + +#: templates/client/includes/header.html:96 +msgid "Выставки по тематикам" +msgstr "Expos by Theme" + +#: templates/client/includes/index/blogs.html:6 +#: templates/client/main_page.html:241 +msgid "Обзоры и аналитика" +msgstr "Reviews & Analytics" + +#: templates/client/includes/index/blogs.html:7 +#: templates/client/main_page.html:242 +msgid "Все обзоры" +msgstr "All Reviews" + +#: templates/client/includes/index/confs.html:9 +#: templates/client/includes/index/expos.html:9 +#, fuzzy +#| msgid "Все участники" +msgid "Все тематики" +msgstr "All Participants" + +#: templates/client/includes/index/main_date_block.html:31 +msgid "года" +msgstr "" + +#: templates/client/includes/index/news.html:4 +#: templates/client/includes/news.html:6 templates/client/main_page.html:148 +msgid "Новости событий" +msgstr "Event News" + +#: templates/client/includes/meta.html:30 +msgid "Expomap — выставки, конференции, семинары" +msgstr "Expomap: Expos, Conferences, Seminars" + +#: templates/client/includes/photoreport/photoreport_list.html:56 +msgid "Все фотографии" +msgstr "All Photos" + +#: templates/client/includes/photoreport/photoreport_list.html:57 +msgid "фотографий" +msgstr "photos" + +#: templates/client/includes/photoreport/photoreport_object.html:86 +#: templates/client/photoreport/gallery.html:89 +msgid "На фотографии отмечены" +msgstr "Marked on photo" + +#: templates/client/includes/photoreport/photoreport_object.html:92 +#: templates/client/photoreport/gallery.html:95 +msgid "Коментарии" +msgstr "Comments" + +#: templates/client/includes/photoreport/photoreport_object.html:104 +#: templates/client/photoreport/gallery.html:107 +msgid "Оставьте свой комментарий" +msgstr "Leave a comment" + +#: templates/client/includes/photoreport/photoreport_object.html:109 +#: templates/client/photoreport/gallery.html:112 +msgid "отметить человека" +msgstr "Mark individual" + +#: templates/client/includes/place/place_list.html:38 +#: templates/client/includes/place/search_result.html:41 +msgid "описание" +msgstr "Description" + +#: templates/client/includes/place/place_list.html:43 +#: templates/client/includes/place/search_result.html:46 +#: templates/client/place_catalog.html:57 +msgid "фото" +msgstr "photos" + +#: templates/client/includes/place/place_list.html:47 +#: templates/client/includes/place/search_result.html:51 +msgid "Найти отели поблизости" +msgstr "Find Nearby Hotels" + +#: templates/client/includes/place/place_object.html:20 +msgid "Далее..." +msgstr "" + +#: templates/client/includes/place/place_object.html:49 +msgid "Банк / банкоматы / обмен валюты" +msgstr "Banks / ATMs / Currency Exchange" + +#: templates/client/includes/place/place_object.html:55 +msgid "Детская комната" +msgstr "Children's Room" + +#: templates/client/includes/place/place_object.html:58 +msgid "Сервис для инвалидов" +msgstr "Services for Disabled" + +#: templates/client/includes/place/place_object.html:66 +#, fuzzy +#| msgid "Бизнес центр" +msgid "Бизнес-центр" +msgstr "Business Center" + +#: templates/client/includes/place/place_object.html:69 +msgid "Онлайн-регистрация" +msgstr "Online Registration" + +#: templates/client/includes/place/place_object.html:72 +msgid "Кафе и рестораны" +msgstr "Cafes & Restaurants" + +#: templates/client/includes/place/place_object.html:77 +msgid "Информационные терминалы" +msgstr "Information Terminals" + +#: templates/client/includes/place/place_object.html:80 +msgid "Парковка" +msgstr "Parking" + +#: templates/client/includes/place/place_object.html:83 +msgid "Пресс-центр" +msgstr "Press Centers" + +#: templates/client/includes/place/place_object.html:86 +msgid "Мобильное приложение" +msgstr "Mobile App" + +#: templates/client/includes/place/place_object.html:123 +msgid "закрытая выставочная площадь" +msgstr "Closed Expo Area" + +#: templates/client/includes/place/place_object.html:129 +msgid "открытая выставочная площадь" +msgstr "Open Expo Area" + +#: templates/client/includes/place/place_object.html:157 +#, fuzzy +#| msgid "Ежегодно" +msgid "Ежегодно проводится" +msgstr "Annually" + +#: templates/client/includes/place/place_object.html:167 +#, fuzzy +#| msgid "события" +msgid "событий" +msgstr "Events" + +#: templates/client/includes/place/place_object.html:185 +msgid "Схема павильонов" +msgstr "Layout" + +#: templates/client/includes/place/place_object.html:188 +msgid "Схема в pdf" +msgstr "" + +#: templates/client/includes/place/place_object.html:197 +msgid "Контактная информация" +msgstr "Contact Information" + +#: templates/client/includes/place/place_object.html:208 +msgid "телефон" +msgstr "Phone" + +#: templates/client/includes/place/place_object.html:211 +msgid "факс" +msgstr "Fax" + +#: templates/client/includes/place/place_object.html:220 +msgid "Список событий" +msgstr "Event List" + +#: templates/client/includes/place/place_object.html:296 +msgid "Ближайшие выставочные центры" +msgstr "Nearest Expo Centers" + +#: templates/client/includes/search_paginator.html:6 +msgid "Показано" +msgstr "" + +#: templates/client/includes/search_paginator.html:6 +msgid "всего" +msgstr "" + +#: templates/client/includes/search_paginator.html:9 +#: templates/client/includes/search_paginator.html:11 +msgid "Предыдущая" +msgstr "" + +#: templates/client/includes/search_paginator.html:38 +#: templates/client/includes/search_paginator.html:40 +msgid "Следующая" +msgstr "" + +#: templates/client/includes/services.html:3 +msgid "Наши услуги" +msgstr "Our Services" + +#: templates/client/includes/services.html:10 +#, fuzzy +#| msgid "Участие в выставке" +msgid "Участие в выставках" +msgstr "Participation in exhibition" + +#: templates/client/includes/side_confs.html:9 +#, fuzzy +#| msgid "Конференции" +msgid "Конференции в Москве" +msgstr "Conferences" + +#: templates/client/includes/side_confs.html:10 +#, fuzzy +#| msgid "Конференции" +msgid "Конференции в Петербурге" +msgstr "Conferences" + +#: templates/client/includes/side_confs.html:11 +#, fuzzy +#| msgid "Конференции" +msgid "Конференции в России" +msgstr "Conferences" + +#: templates/client/includes/visit_button.html:7 +#: templates/client/includes/visit_button.html:10 +#: templates/client/includes/visit_button.html:14 +#, fuzzy +#| msgid "Я планирую посетить" +msgid "Не планирую посещать" +msgstr "I plan on going" + +#: templates/client/index.html:79 +#, fuzzy +#| msgid "Фоторепортажи" +msgid " Видеорепортажи" +msgstr "Photo Reports" + +#: templates/client/index.html:126 templates/client/main_page.html:215 +msgid "Наши партнеры:" +msgstr "Our Partners:" + +#: templates/client/main_page.html:101 +msgid "Все выставки" +msgstr "All Expos" + +#: templates/client/main_page.html:111 +msgid "Все конференции" +msgstr "All Conferences" + +#: templates/client/main_page.html:173 +msgid "Фоторепортажи:" +msgstr "Photo Reports:" + +#: templates/client/organiser/add_event.html:7 +#: templates/client/organiser/add_event.html:12 +#, fuzzy +#| msgid "отправить сообщение" +msgid "Добавить событие" +msgstr "Send Message" + +#: templates/client/organiser/add_event.html:19 +#, fuzzy +#| msgid "Контактная информация" +msgid "Шаг 1. Основная информация" +msgstr "Contact Information" + +#: templates/client/organiser/add_event.html:27 +#, fuzzy +#| msgid "выставках" +msgid "выставка" +msgstr "expos" + +#: templates/client/organiser/add_event.html:28 +#, fuzzy +#| msgid "конференциях" +msgid "конференция" +msgstr "conferences" + +#: templates/client/organiser/add_event.html:29 +#, fuzzy +#| msgid "семинары" +msgid "семинар" +msgstr "Seminars" + +#: templates/client/organiser/add_event.html:30 +#, fuzzy +#| msgid "вебинары" +msgid "вебинар" +msgstr "Webinars" + +#: templates/client/organiser/add_event.html:38 +#, fuzzy +#| msgid "выберите файл" +msgid "Выберите тематику" +msgstr "Select File" + +#: templates/client/organiser/add_event.html:56 +#, fuzzy +#| msgid "Выберите интересующую вас тематику" +msgid "Выберете ключевые теги" +msgstr "Select a theme" + +#: templates/client/organiser/add_event.html:71 +#, fuzzy +#| msgid "Посещение выставки" +msgid "Описание выставки" +msgstr "Visit Expo" + +#: templates/client/organiser/add_event.html:90 +#, fuzzy +#| msgid "Для посещения" +msgid "Даты проведения" +msgstr "Visitors" + +#: templates/client/organiser/add_event.html:111 +#, fuzzy +#| msgid "Город отправления" +msgid "Место проведения" +msgstr "City ​​of origin" + +#: templates/client/organiser/add_event.html:131 +#, fuzzy +#| msgid "PR-специалисты" +msgid "специалисты" +msgstr "PR Specialists" + +#: templates/client/organiser/add_event.html:132 +#, fuzzy +#| msgid "Специалисты и потребители" +msgid "специалисты и потребители" +msgstr "Specialists and consumers" + +#: templates/client/organiser/add_event.html:133 +#, fuzzy +#| msgid "Широкая публика" +msgid "широкая публика" +msgstr "The public" + +#: templates/client/organiser/add_event.html:138 +#, fuzzy +#| msgid "В неделю" +msgid "Еженедельно" +msgstr "Per week" + +#: templates/client/organiser/add_event.html:139 +#, fuzzy +#| msgid "2 раза в год" +msgid "2 раза в месяц" +msgstr "Twice per year" + +#: templates/client/organiser/add_event.html:140 +#, fuzzy +#| msgid "месяц" +msgid "Ежемесячно" +msgstr "month" + +#: templates/client/organiser/add_event.html:150 +msgid "Российско-Британская торговая палата" +msgstr "" + +#: templates/client/organiser/add_event.html:151 +msgid "Ассоциация Европейского Бизнеса" +msgstr "" + +#: templates/client/organiser/add_event.html:152 +#, fuzzy +#| msgid "Ближайшие выставки по тематике" +msgid "Российский союз выставок и ярмарок" +msgstr "Nearby expos with given theme" + +#: templates/client/organiser/add_event.html:153 +msgid "Американская торговая\tпалата" +msgstr "" + +#: templates/client/organiser/add_event.html:154 +msgid "UFI" +msgstr "" + +#: templates/client/organiser/add_event.html:160 +msgid "Веб-сайт (необязательно)" +msgstr "" + +#: templates/client/organiser/add_event.html:180 +#: templates/client/organiser/add_event.html:200 +msgid "чч:мм" +msgstr "" + +#: templates/client/organiser/add_event.html:198 +#, fuzzy +#| msgid "по" +msgid "до" +msgstr "to" + +#: templates/client/organiser/add_event.html:217 +#, fuzzy +#| msgid "на все дни" +msgid "Один график на все дни" +msgstr "All Days" + +#: templates/client/organiser/add_event.html:229 +msgid "Не выбрано ни одного файла" +msgstr "" + +#: templates/client/organiser/add_event.html:238 +#, fuzzy +#| msgid "отправить сообщение" +msgid "сохранить как черновик" +msgstr "Send Message" + +#: templates/client/organiser/add_event.html:241 +msgid "далее" +msgstr "" + +#: templates/client/organiser/add_event.html:249 +#, fuzzy +#| msgid "Расположение отеля" +msgid "Шаг 2. Добавление фото" +msgstr "Location of the hotel" + +#: templates/client/organiser/add_event.html:282 +msgid "Шаг 3. Статистика и условия участия тест" +msgstr "" + +#: templates/client/password_reset/base.html:5 +#: templates/client/password_reset/base.html:11 +#: templates/client/password_reset/recovery_done.html:11 +#: templates/client/password_reset/reset.html:5 +#: templates/client/password_reset/reset.html:11 +#: templates/client/password_reset/reset_sent.html:8 +#, fuzzy +#| msgid "Password" +msgid "Password recovery" +msgstr "Password" + +#: templates/client/password_reset/base.html:41 +#, fuzzy +#| msgid "отправить" +msgid "Восстановить" +msgstr "Send" + +#: templates/client/password_reset/recovery_done.html:5 +msgid "New password set" +msgstr "" + +#: templates/client/password_reset/recovery_done.html:19 +msgid "" +"Your password has successfully been reset. You can use it right now on the " +"login page." +msgstr "" + +#: templates/client/password_reset/reset.html:19 +#, python-format +msgid "" +"Sorry, this password reset link is invalid. You can still request a new one." +msgstr "" + +#: templates/client/password_reset/reset.html:21 +#, python-format +msgid "Hi, %(username)s. Please choose your new password." +msgstr "" + +#: templates/client/password_reset/reset.html:43 +msgid "Set new password" +msgstr "" + +#: templates/client/password_reset/reset_sent.html:15 +#, python-format +msgid "" +"An email was sent to %(email)s %(ago)s ago. Use the link in " +"it to set a new password." +msgstr "" + +#: templates/client/photoreport/photoreport_catalog.html:25 +msgid "Ничего не найдено" +msgstr "Nothing found" + +#: templates/client/popups/acquire_email.html:5 +#, fuzzy +#| msgid "Ваш e-mail" +msgid "Введите email" +msgstr "Your e-mail" + +#: templates/client/popups/advertise.html:6 +#: templates/client/service/build_stand.html:67 +#: templates/client/service/catalog.html:67 +#: templates/client/service/participation.html:98 +#: templates/client/service/remotely.html:91 +#: templates/client/service/tickets.html:93 +#: templates/client/service/tour.html:199 +#: templates/client/service/translator.html:118 +msgid "Ваши контактные данные" +msgstr "Your details" + +#: templates/client/popups/advertise.html:32 +#: templates/client/simple_pages/advertising.html:122 +#: templates/client/simple_pages/advertising.html:144 +#: templates/client/simple_pages/advertising.html:164 +msgid "Заказать услугу" +msgstr "Place order" + +#: templates/client/popups/advertise_member.html:49 +#, fuzzy +#| msgid "редактировать" +msgid "Рекламировать" +msgstr "Edit" + +#: templates/client/popups/callback.html:6 +#, fuzzy +#| msgid "обратный звонок" +msgid "Обратный звонок" +msgstr "Callback" + +#: templates/client/popups/callback.html:24 +#: templates/client/popups/issue_organizer.html:39 +#, fuzzy +#| msgid "отправить запрос" +msgid "Отправить запрос" +msgstr "Make an inquiry" + +#: templates/client/popups/create_company.html:6 +#, fuzzy +#| msgid "Описание компании" +msgid "Создание компании" +msgstr "Company description" + +#: templates/client/popups/create_company.html:15 +#, fuzzy +#| msgid "например, ivanova@mail.ru" +msgid "например: Expomap" +msgstr "e.g. myname@mail.com" + +#: templates/client/popups/create_company.html:24 +msgid "результат: expomap/members/url" +msgstr "" + +#: templates/client/popups/create_company.html:35 +msgid "Создать" +msgstr "" + +#: templates/client/popups/issue_organizer.html:6 +#, fuzzy +#| msgid "билет организатора" +msgid "Вопрос организатору" +msgstr "organiser ticket" + +#: templates/client/popups/login.html:5 +msgid "Вход в личный кабинет" +msgstr "Control Panel" + +#: templates/client/popups/login.html:11 +msgid "Ваш адрес электронной почты" +msgstr "Your e-mail address" + +#: templates/client/popups/login.html:17 +msgid "Ваш пароль" +msgstr "Your password" + +#: templates/client/popups/login.html:19 +msgid "Напомнить пароль" +msgstr "Recover password" + +#: templates/client/popups/login.html:23 +msgid "войти" +msgstr "Log in" + +#: templates/client/popups/login.html:24 +msgid "Запомнить" +msgstr "Remember me" + +#: templates/client/popups/login.html:27 +#: templates/client/popups/register.html:46 +msgid "Зарегистрироваться" +msgstr "Register" + +#: templates/client/popups/login.html:34 +#: templates/client/popups/register.html:54 +msgid "или войдите с помощью" +msgstr "or log in via" + +#: templates/client/popups/period.html:20 +#: templates/client/popups/place.html:88 templates/client/popups/theme.html:77 +msgid "Искать" +msgstr "" + +#: templates/client/popups/period.html:20 +#: templates/client/popups/theme.html:79 +#, fuzzy +#| msgid "Посетить конференцию" +msgid "Уточнить географию" +msgstr "Visit Conference" + +#: templates/client/popups/period.html:20 +#: templates/client/popups/place.html:90 +#, fuzzy +#| msgid "Посетить семинар" +msgid "Уточнить тему" +msgstr "Visit Seminar" + +#: templates/client/popups/place.html:7 +msgid "Место" +msgstr "Location" + +#: templates/client/popups/place.html:69 +msgid "Быстрый выбор" +msgstr "Quick selection" + +#: templates/client/popups/place.html:71 +msgid "Москва" +msgstr "" + +#: templates/client/popups/place.html:72 +msgid "Санкт-Петербург" +msgstr "" + +#: templates/client/popups/place.html:73 +msgid "Россия" +msgstr "" + +#: templates/client/popups/place.html:74 +msgid "Киев" +msgstr "" + +#: templates/client/popups/place.html:75 +msgid "Украина" +msgstr "" + +#: templates/client/popups/place.html:76 +#, fuzzy +#| msgid "Пожелания" +msgid "Германия" +msgstr "wishes" + +#: templates/client/popups/place.html:77 +msgid "Китай" +msgstr "" + +#: templates/client/popups/place.html:89 templates/client/popups/theme.html:78 +#, fuzzy +#| msgid "Ответить" +msgid "Очистить" +msgstr "Reply" + +#: templates/client/popups/place.html:91 templates/client/popups/theme.html:80 +#, fuzzy +#| msgid "отправить запрос" +msgid "Уточнить дату" +msgstr "Make an inquiry" + +#: templates/client/popups/place_type.html:5 +#, fuzzy +#| msgid "места" +msgid "Тип места" +msgstr "Locations" + +#: templates/client/popups/pswd_recovery.html:7 +#, fuzzy +#| msgid "Напомнить пароль" +msgid "Востановить пароль" +msgstr "Recover password" + +#: templates/client/popups/pswd_recovery.html:18 +#, fuzzy +#| msgid "отправить" +msgid "Востановить" +msgstr "Send" + +#: templates/client/popups/reg_send.html:6 +#, fuzzy +#| msgid "Предварительная регистрация" +msgid "Благодарим за регистрацию" +msgstr "Preliminary Registration" + +#: templates/client/popups/reg_send.html:10 +msgid "На указанный Вами e-mail отправлено письмо для подтверждения." +msgstr "" + +#: templates/client/popups/reg_send.html:11 +msgid "" +"Пожалуйста, перейдите по ссылке, указанной в письме, и завершите регистрацию!" +msgstr "" + +#: templates/client/popups/reg_send.html:12 +msgid "" +"Ссылка будет активна 3 дня. Если в течение этого времени Вы не " +"воспользуетесь ею, Ваши данные будут автоматически удалены." +msgstr "" + +#: templates/client/popups/reg_send.html:14 +msgid "Если Вы не получили письмо - обновите страницу либо нажмите" +msgstr "" + +#: templates/client/popups/reg_send.html:14 +msgid "здесь" +msgstr "" + +#: templates/client/popups/reg_send.html:14 +msgid "письмо будет выслано вновь." +msgstr "" + +#: templates/client/popups/register.html:15 +msgid "например, свое имя" +msgstr "e.g. your first name" + +#: templates/client/popups/register.html:20 +msgid "Фамилия" +msgstr "Last name" + +#: templates/client/popups/register.html:23 +msgid "например, свою фамилию" +msgstr "e,g, your last name" + +#: templates/client/popups/register.html:28 +msgid "Адрес электронной почты" +msgstr "E-mail address" + +#: templates/client/popups/register.html:30 +msgid "например, ivanova@mail.ru" +msgstr "e.g. myname@mail.com" + +#: templates/client/popups/register.html:34 +msgid "Придумайте пароль" +msgstr "Create a password" + +#: templates/client/popups/register.html:36 +#: templates/client/popups/register.html:42 +msgid "пароль должен иметь не меньше 6 символов" +msgstr "The password must be at least 6 characters in length" + +#: templates/client/popups/register.html:40 +msgid "Повторите пароль" +msgstr "Confirm password" + +#: templates/client/popups/user_information.html:8 +#, fuzzy +#| msgid "Предварительная регистрация" +msgid "Завершите регистрацию" +msgstr "Preliminary Registration" + +#: templates/client/popups/user_information.html:53 +#, fuzzy +#| msgid "Контактный номер телефона" +msgid "Номер телефона" +msgstr "Phone number" + +#: templates/client/popups/user_information.html:103 +#, fuzzy +#| msgid "завершить редактирование" +msgid "завершить регистрацию" +msgstr "Finish Editing" + +#: templates/client/seminar.html:114 +msgid "Посетить семинар" +msgstr "Visit Seminar" + +#: templates/client/seminar.html:118 +msgid "Билеты на семинар" +msgstr "Seminar Tickets" + +#: templates/client/service/build_stand.html:13 +#: templates/client/service/build_stand.html:16 +#: templates/client/service/build_stand.html:25 +#, fuzzy +#| msgid "Количество сотрудников:" +msgid "Строительство стенда" +msgstr "Number of Staff:" + +#: templates/client/service/build_stand.html:25 +#: templates/client/service/translator.html:26 +#, fuzzy +#| msgid "о нас" +msgid "на" +msgstr "About Us" + +#: templates/client/service/build_stand.html:41 +#: templates/client/service/catalog.html:41 +msgid "Предлагаем Вам заказать печатный каталог выставки" +msgstr "" +"You now have the opportunity to order a printed version of the Holiday Real " +"Estate Market 2013 Expo Catalog" + +#: templates/client/service/build_stand.html:45 +#: templates/client/service/build_stand.html:51 +#: templates/client/service/catalog.html:45 +#: templates/client/service/catalog.html:51 +msgid "вся информация о выставке" +msgstr "All expo information" + +#: templates/client/service/build_stand.html:46 +#: templates/client/service/build_stand.html:52 +#: templates/client/service/catalog.html:46 +#: templates/client/service/catalog.html:52 +#: templates/client/service/tickets.html:43 +msgid "экономия времени" +msgstr "time saving" + +#: templates/client/service/build_stand.html:47 +#: templates/client/service/build_stand.html:53 +#: templates/client/service/catalog.html:47 +#: templates/client/service/catalog.html:53 +msgid "все потенциальные контакты" +msgstr "all potential contacts" + +#: templates/client/service/build_stand.html:125 +#: templates/client/service/build_stand.html:149 +#: templates/client/service/catalog.html:125 +#: templates/client/service/catalog.html:149 +msgid "стоимость каталога" +msgstr "price catalog" + +#: templates/client/service/build_stand.html:134 +#: templates/client/service/build_stand.html:151 +#: templates/client/service/catalog.html:134 +#: templates/client/service/catalog.html:151 +#: templates/client/service/participation.html:179 +#: templates/client/service/tickets.html:162 +#: templates/client/service/tickets.html:180 +#: templates/client/service/translator.html:222 +msgid "Сделать запрос" +msgstr "Receive Announcements" + +#: templates/client/service/build_stand.html:138 +#: templates/client/service/build_stand.html:155 +#: templates/client/service/catalog.html:138 +#: templates/client/service/catalog.html:155 +msgid "" +"Стоимость каталога оплачивается c учетом доставки, которую обозначают " +"организаторы выставки (в среднем от 0 до 50 евро)." +msgstr "" +"The catalog price includes the delivery fee, which is specified by the " +"expo's organizing party (usually from 0 to 50 Euros)." + +#: templates/client/service/build_stand.html:172 +#: templates/client/service/catalog.html:172 +msgid "" +"

      Внимание! Мы не можем гарантировать то, что все организаторы " +"предоставляют возможность заказа печатного каталога выставки. Получая Ваш " +"запрос, мы персонально связываемся с организатором конкретного события и " +"уточняем информацию об условиях приобретения. Только после этого мы " +"подтверждаем Вам возможность заказа.

      " +msgstr "" +"

      Attention! We cannot guarantee that all organizers will have a " +"printed catalog available for order.After receiving your request, we " +"personally contact the organizing party for any given event and clarify " +"thedetails of acquiring a catalog. Only after doing this do we let you know " +"whether the order can or cannot beplaced.

      " + +#: templates/client/service/build_stand.html:182 +#: templates/client/service/build_stand.html:187 +#: templates/client/service/catalog.html:182 +#: templates/client/service/catalog.html:187 +#: templates/client/service/participation.html:273 +#: templates/client/service/participation.html:280 +#: templates/client/service/remotely.html:266 +#: templates/client/service/remotely.html:272 +#: templates/client/service/tickets.html:280 +#: templates/client/service/tickets.html:286 +#: templates/client/service/translator.html:367 +#: templates/client/service/translator.html:373 +msgid "Бизнес-тур «под ключ" +msgstr "Remote" + +#: templates/client/service/build_stand.html:184 +#: templates/client/service/build_stand.html:189 +#: templates/client/service/catalog.html:184 +#: templates/client/service/catalog.html:189 +#: templates/client/service/participation.html:14 +#: templates/client/service/participation.html:17 +#: templates/client/service/participation.html:24 +#: templates/client/service/remotely.html:275 +#: templates/client/service/tickets.html:284 +#: templates/client/service/tickets.html:289 +#: templates/client/service/tour.html:367 +#: templates/client/service/tour.html:372 +#: templates/client/service/translator.html:370 +#: templates/client/service/translator.html:375 +msgid "Участие в выставке" +msgstr "Participation in exhibition" + +#: templates/client/service/catalog.html:13 +#: templates/client/service/catalog.html:16 +#: templates/client/service/translator.html:14 +#: templates/client/service/translator.html:17 +msgid "Каталог" +msgstr "" + +#: templates/client/service/catalog.html:25 +msgid "Официальный каталог выставки" +msgstr "The official exhibition catalog" + +#: templates/client/service/participation.html:38 +#, fuzzy +#| msgid "" +#| "Предлагаем Вам услуги профессиональной организации Вашего участия в " +#| "выставке" +msgid "Увеличим эффективность Вашего участия в выставке" +msgstr "" +"We're offering professional organizational services for managing your " +"participation in the Holiday Real Estate Market Expo 2013" -#: templates/client/exposition/exposition_price.html:140 -msgid "Выставка открыта для" -msgstr "Expo open for" +#: templates/client/service/participation.html:38 +#, python-format +msgid "как минимум на 50%%" +msgstr "" -#: templates/client/exposition/exposition_price.html:154 -msgid "Для участия" -msgstr "Participants" +#: templates/client/service/participation.html:42 +msgid "Мы поможем превратить посетителей стенда в клиентов" +msgstr "" -#: templates/client/exposition/exposition_price.html:156 -msgid "Стоимость аренды 1м²" -msgstr "Rental Fee per 1 sq.m." +#: templates/client/service/participation.html:43 +msgid "Мы удержим Вас от пустых трат" +msgstr "" -#: templates/client/exposition/exposition_price.html:163 -msgid "оборудованная площадь" -msgstr "Equipped Area" +#: templates/client/service/participation.html:44 +msgid "Мы посчитаем отдачу и покажем результаты в цифрах" +msgstr "" -#: templates/client/exposition/exposition_price.html:170 -msgid "необорудованная площадь" -msgstr "Unequipped Area" +#: templates/client/service/participation.html:48 +#, fuzzy +#| msgid "Предлагаем Вам заказать печатный каталог выставки" +msgid "Мы начнем привлекать Вам клиентов еще до выставки" +msgstr "" +"You now have the opportunity to order a printed version of the Holiday Real " +"Estate Market 2013 Expo Catalog" -#: templates/client/exposition/exposition_price.html:177 -msgid "открытая площадь" -msgstr "Open Area" +#: templates/client/service/participation.html:49 +msgid "Мы знаем тонкости и узкие места организации" +msgstr "" -#: templates/client/exposition/exposition_price.html:183 -msgid "Заявка на участие" -msgstr "Participation Application" +#: templates/client/service/participation.html:64 +msgid "Информация об экспоместе" +msgstr "Information about expomap" -#: templates/client/exposition/exposition_price.html:187 -msgid "Минимальный размер стенда" -msgstr "Minimal Booth Size" +#: templates/client/service/participation.html:68 +msgid "Требуемая площадь" +msgstr "Required area" -#: templates/client/exposition/exposition_price.html:190 -msgid "Регистрационный взнос" -msgstr "Registration Deposit" +#: templates/client/service/participation.html:77 +msgid "Вид площади" +msgstr "Type of area" -#: templates/client/exposition/exposition_price.html:193 -msgid "Крайний срок подачи заявки" -msgstr "Application Deadline" +#: templates/client/service/participation.html:170 +#: templates/client/service/remotely.html:166 +#: templates/client/service/remotely.html:186 +#: templates/client/service/translator.html:199 +msgid "отправить запрос" +msgstr "Make an inquiry" -#: templates/client/exposition/exposition_statistic.html:103 -msgid "м" -msgstr "m" +#: templates/client/service/participation.html:185 +msgid "" +"

      Укажите в запросе исходную информацию о Ваших целях и задачах, и мы " +"подберем" +msgstr "" -#: templates/client/exposition/exposition_statistic.html:112 -msgid "Страны" -msgstr "Countries" +#: templates/client/service/participation.html:186 +#, fuzzy +#| msgid "выставках" +msgid "выставку" +msgstr "expos" -#: templates/client/includes/announces.html:4 -msgid "получать анонсЫ" -msgstr "Receive Announcements" +#: templates/client/service/participation.html:186 +msgid "" +"которая будет им соответствовать. Далее мы свяжемся с организаторами, чтобы " +"уточнить наличие свободных площадей и цены, и вместе с Вами начнем создавать " +"концепцию Вашего участия.

      " +msgstr "" -#: templates/client/includes/catalog_search.html:6 -msgid "поиск событий" -msgstr "Event Search" +#: templates/client/service/participation.html:207 +#: templates/client/service/remotely.html:200 +#: templates/client/service/tickets.html:213 +#: templates/client/service/tour.html:296 +#: templates/client/service/translator.html:300 +msgid "Отзывы клиентов" +msgstr "Client Feedback" -#: templates/client/includes/catalog_search.html:11 -msgid "Я ищу:" -msgstr "I'm looking for:" +#: templates/client/service/remotely.html:26 +#, fuzzy +#| msgid "Посещение выставки" +msgid "Заочное посещение выставки" +msgstr "Visit Expo" -#: templates/client/includes/catalog_search.html:17 -msgid "Где:" -msgstr "Where:" +#: templates/client/service/remotely.html:42 +msgid "" +"Услуга позволяет получить исчерпывающую информацию о выставке и ее " +"участниках, не выходя за пределы собственного офиса. Она особенно актуальна, " +"если вы по тем или иным причинам не можете лично присутствовать на выставке" +msgstr "" +"This service provides wholesome information from the ConFoo.Ca 2014 " +"Conference and information about itsparticipants to clients within the " +"comfort of their own offices. This service is particularly useful forthose " +"who, for whatever reason, cannot visit ConFoo.Ca 2014 directly" -#: templates/client/includes/catalog_search.html:26 -msgid "Тематика: " -msgstr "Theme: " +#: templates/client/service/remotely.html:44 +msgid "Как работает «Заочное посещение выставки»?" +msgstr "How does the absentee visit work?" -#: templates/client/includes/catalog_search.html:27 -msgid "Место: " -msgstr "Location: " +#: templates/client/service/remotely.html:46 +#, fuzzy +#| msgid "Предлагаем Вам заранее заказать билеты на выставку" +msgid "По вашему запросу мы направим на выставку " +msgstr "With us, you have the opportunity to order expo tickets ahead of time" -#: templates/client/includes/catalog_search.html:28 -msgid "Период: " -msgstr "Time: " +#: templates/client/service/remotely.html:46 +#, fuzzy +#| msgid "" +#| "По вашему запросу мы направим на выставку ConFoo.Ca 2014 собственного " +#| "специалиста, который соберет для вас полный комплект документов (буклеты, " +#| "каталоги, cd, прайс-листы) по каждому участнику выставки, а также " +#| "приобретет ее официальный каталог. Дополнительно на каждом стенде " +#| "выставки ConFoo.Ca 2014 мы можем оставить ваши визитки или другую " +#| "информацию. Все материалы выставки пересылаются к вам в офис сразу после " +#| "ее окончания." +msgid "" +"собственного специалиста, который соберет для вас полный комплект документов " +"(буклеты, каталоги, cd, прайс-листы) по каждому участнику выставки, а также " +"приобретет ее официальный каталог. Дополнительно на каждом стенде выставки " +"мы можем оставить ваши визитки или другую информацию. Все материалы выставки " +"пересылаются к вам в офис сразу после ее окончания." +msgstr "" +"As per your request, we will send a specialist to ConFoo.Ca 2014, who will " +"gather for you a wholesome set ofdocuments (pamphlets, catalogs, CDs, price " +"lists, etc.) from each participant of the event along with theirofficial " +"catalog. Additionally, we can leave your business card or other information " +"at each booth at ConFoo.Ca 2014. All materials from the event will be mailed " +"to your office immediately after the end of theevent." -#: templates/client/includes/event_list.html:72 -#: templates/client/includes/place_object.html:224 -#: templates/client/includes/exposition/exposition_list.html:72 -#: templates/client/includes/exposition/search_result.html:74 -msgid "услуги" -msgstr "Services" +#: templates/client/service/remotely.html:48 +msgid "Преимущества услуги" +msgstr "The Advantages" -#: templates/client/includes/event_list.html:84 -#: templates/client/includes/exposition/exposition_list.html:84 -#: templates/client/includes/exposition/search_result.html:86 -msgid "из расписания" -msgstr "From schedule" +#: templates/client/service/remotely.html:51 +msgid "" +"Финансовая выгода - личное присутствие на одной выставке по затратам " +"эквивалентно заочному посещению 5 международных выставок" +msgstr "" +"Financial efficiency. Visiting one expo in person is monetarily equivalent " +"to five absentee visits" -#: templates/client/includes/event_list.html:96 -#: templates/client/includes/place_object.html:240 -#: templates/client/includes/exposition/exposition_list.html:96 -#: templates/client/includes/exposition/search_result.html:98 -msgid "Лучшие цены на отели на" -msgstr "Best hotel prices for" +#: templates/client/service/remotely.html:52 +msgid "Экономия времени и нервов" +msgstr "Save time and reduce potential stress" -#: templates/client/includes/event_list_description.html:6 +#: templates/client/service/remotely.html:53 msgid "" -"\n" -"\t\t

      Выставки - один из наиболее популярных инструментов " -"среди маркетологов. Это объясняется тем, что специализированные " -"выставки предоставляют отличную возможность быстро и в " -"одном месте найти новых партнеров и клиентов, узнать о новых трендах своей " -"отрасли, послушать насыщенную деловую программу. Поэтому мы создали " -"Expomap.Ru именно в помощь специалистам отделов маркетинга " -"и собственникам бизнеса, предоставляя легкий и удобный поиск " -"выставок, практические кейсы о том, как правильно выбрать " -"выставку, как организовать ее посещение за рубежом или " -"участие со стендом. Вы легко можете связаться с нашими " -"онлайн-консультантами через Skype или позвонив по тел. +7 499 999 12 " -"07, и получить бесплатную информацию об интересующей Вас " -"выставке или рекомендации по тем или иным вопросам.

      \n" -"\n" -"\t\t

      Сейчас в нашем каталоге представлены международные выставки 2013 " -"года, а также уже прошедшие мероприятия, начиная с 2008 года – со всех стран " -"и уголков мира. С помощью рубрикатора (левый блок \"Каталог " -"выставок\") или панели поиска (строка для ввода или расширенный " -"поиск) Вы всегда сможете найти календарь выставок по интересующим Вас тематикам: строительные выставки, медицинские выставки, выставки недвижимости " -"и другие. Кроме тематик, рубрикатор дает возможность сортировать события: по " -"алфавиту, по странам, по городам, по датам. Объединить все эти критерии Вы " -"можете, используя расширенный поиск. Итоговое расписание выставок по Вашим критериям будет построено " -"удобным образом, начиная с ближайших событий.

      \n" -"\t " +"Возможность получить актуальную информацию даже в том случае, если у Вас нет " +"шансов посетить ее лично (упущение сроков, отказ в визе, параллельное " +"прохождения интересных Вам выставок в разных городах мира и др.)" msgstr "" -"\n" -"\t\t

      Expos are one of the most popular marketing methods " -"among marketing specialists. This is due to the fact that specialized " -"expos provide an excellent opportunity to qickly find new " -"partners and clients in a single place, learn about new trends in your " -"industry, and receive a wealth of relevant knowledge. In sight of this, " -"we've created Expomap.ru to help marketing specialists and " -"business owners by providing quick and easy expo search " -"functionality along with guidance on how to properly select an expo, and how to setup a visit to a foreign expo or participate " -"with a booth. You can always reach our online support agents via " -"Skype or by calling +7 (499) 999 12 07. We will be happy to " -"provide you with free information on any expo you may be " -"interested in and offer advice on any relevant matters.

      \n" -"\n" -"\t\t

      Our catalog currently contains a listing of " -"international expos for 2013 as well as past events from all countries around the world starting " -"with 2008. Using our categorized listings (left panel, under \"Expo " -"Catalog\") or our search engine (including the basic search field " -"and advanced search form), you will always be able to find access an " -"expo calendar containing expos wiht the " -"themes you're interested in, including: construction industry expos, medical expos, real estate expos and others. " -"Aside from overall themes, the sorting mechanism allows you to sort events " -"by alphabet, country, city, or date. You can also make use of our advanced " -"search form to search based on any or all of these criteria at once. The " -"resulting expo schedule based on your " -"criteria will be structured in a user-friendly manner, ordered in descending " -"order starting with the nearest events.

      \n" -"\t " +"Gain the opportunity to access vital information even when you lack the " +"opportunity to visit an eventin person (too late to order tickets, declined " +"visa, multiple events held simultaneously in different citiesaround the " +"world, etc.)." -#: templates/client/includes/feedback.html:5 -msgid "обратный звонок" -msgstr "Callback" +#: templates/client/service/remotely.html:67 +#: templates/client/service/tickets.html:60 +msgid "Информация о заказе" +msgstr "Ordering Information " -#: templates/client/includes/footer.html:22 -#: templates/client/includes/menu.html:4 -msgid "События" -msgstr "Events" +#: templates/client/service/remotely.html:70 +msgid "Интересующие участники выставки" +msgstr "Interest of participants" -#: templates/client/includes/footer.html:30 -#: templates/client/includes/menu.html:12 -msgid "места" -msgstr "Locations" +#: templates/client/service/remotely.html:70 +msgid "(укажите продукцию или названия компаний)" +msgstr "" -#: templates/client/includes/footer.html:31 -#: templates/client/includes/menu.html:13 -msgid "участники" -msgstr "Participants" +#: templates/client/service/remotely.html:77 +msgid "Дополнительно вы можете заказать" +msgstr "In addition, you can order" -#: templates/client/includes/footer.html:35 -#: templates/client/includes/menu.html:17 -msgid "о нас" -msgstr "About Us" +#: templates/client/service/remotely.html:157 +#: templates/client/service/remotely.html:183 +msgid "Стоимость базового пакета услуги 400 €" +msgstr "The cost of a basic package of services 400 €" -#: templates/client/includes/footer.html:36 -#: templates/client/includes/menu.html:18 -msgid "партнеры" -msgstr "Partners" +#: templates/client/service/remotely.html:181 +#, fuzzy +#| msgid "Стоимость базового пакета услуги 400 €" +msgid "Стоимость базового пакета услуги 10 000 р." +msgstr "The cost of a basic package of services 400 €" -#: templates/client/includes/footer.html:37 -#: templates/client/includes/menu.html:19 -msgid "реклама" -msgstr "Advertising" +#: templates/client/service/tickets.html:39 +msgid "Предлагаем Вам заранее заказать билеты на выставку" +msgstr "With us, you have the opportunity to order expo tickets ahead of time" -#: templates/client/includes/footer.html:38 -#: templates/client/includes/menu.html:20 -msgid "сервис" -msgstr "Services" +#: templates/client/service/tickets.html:44 +msgid "нет очередей" +msgstr "Save time" -#: templates/client/includes/footer.html:39 -#: templates/client/includes/menu.html:21 -msgid "для партнеров" -msgstr "For Partners" +#: templates/client/service/tickets.html:45 +#, fuzzy +#| msgid "отчетные документы для бухгадтерии" +msgid "отчетные документы для бухгалтерии" +msgstr "Acquire relevant documents for accounting purposes" -#: templates/client/includes/footer.html:40 -#: templates/client/includes/menu.html:22 -msgid "контакты" -msgstr "Contact Us" +#: templates/client/service/tickets.html:64 +msgid "Количество дней посещения выставки" +msgstr "Days exhibition" -#: templates/client/includes/header.html:8 -msgid "Выставки, конференции, семинары" -msgstr "Expos, Conferences, Seminars" +#: templates/client/service/tickets.html:75 +#: templates/client/service/tour.html:81 +msgid "Количество человек" +msgstr "Number of people" -#: templates/client/includes/header.html:55 -msgid "личный кабинет" -msgstr "Control Panel" +#: templates/client/service/tickets.html:152 +#: templates/client/service/tickets.html:177 +#, fuzzy +#| msgid "Регистрация на" +msgid "Регистрация 2000 руб." +msgstr "Registration for" -#: templates/client/includes/header.html:59 -msgid "настройки" -msgstr "Settings" +#: templates/client/service/tickets.html:153 +#: templates/client/service/tickets.html:178 +msgid "билет организатора" +msgstr "organiser ticket" -#: templates/client/includes/header.html:62 -msgid "календарь" -msgstr "Calendar" +#: templates/client/service/tickets.html:166 +msgid "" +"Стоимость билета, заявленная организатором, зависит от количества дней " +"посещения события, также может быть бесплатной" +msgstr "" +"The cost of the ticket, to the organizers, depends on the number of days " +"attend an event, can also be free" -#: templates/client/includes/header.html:63 -msgid "документы" -msgstr "Documents" +#: templates/client/service/tickets.html:184 +msgid "" +"Стоимость билета, заявленная организатором, зависит от количества дней " +"посещения события, также может быть бесплатной" +msgstr "" +"The ticket price is set forth by the organizing party and depends on the " +"number of days for your visit.This fee may not exist (access may be free)" -#: templates/client/includes/header.html:67 -msgid "Выход" -msgstr "Log out" +#: templates/client/service/tickets.html:203 +msgid "" +"

      Внимание! Мы не можем гарантировать то, что все организаторы " +"предоставляют возможность предварительной регистрации посетителей. Получая " +"ваш запрос, мы персонально связываемся с организаторами конкретного события " +"и уточняем информацию об условиях приобретения билетов. Только после этого " +"мы подтверждаем вам возможность.

      " +msgstr "" +"

      Attention! We cannot guarantee that all event organizers provide " +"early visitor registration.After receiving your request, we personally " +"contact the organizing party for any given event and clarifythe details of " +"acquiring tickets Only after doing this do we let you know whether the order " +"can or cannotbe placed.

      " -#: templates/client/includes/header.html:72 -#: templates/client/popups/register.html:6 -msgid "Регистрация" -msgstr "Register" +#: templates/client/service/tour.html:14 templates/client/service/tour.html:17 +#: templates/client/service/tour.html:25 +msgid "Посещение выставки" +msgstr "Visit Expo" -#: templates/client/includes/header.html:73 -msgid "вход" -msgstr "Login" +#: templates/client/service/tour.html:41 +#, fuzzy +#| msgid "Посещений в" +msgid "Посещение" +msgstr "Visits per" -#: templates/client/includes/header.html:85 -msgid "Выставки в Германии" -msgstr "Expos in Germany" +#: templates/client/service/tour.html:41 +#, fuzzy +#| msgid "" +#| "Посещение Modeko 2014 откроет для вас новые горизонты развития бизнеса, и " +#| "мы готовы вам помочь с этим! Организация любой деловой поездки " +#| "представляет собой индивидуальный тур, кропотливо подобранный под ваши " +#| "конкретные пожелания" +msgid "" +"откроет для вас новые горизонты развития бизнеса, и мы готовы вам помочь с " +"этим! Организация любой деловой поездки представляет собой индивидуальный " +"тур, кропотливо подобранный под ваши конкретные пожелания" +msgstr "" +"Visiting Modeko 2014 can open new doors for developing your business, and we " +"can help you in this endeavor! We organize any trip by developing an " +"individual plan designed with extreme attention to detail to suit your every " +"need." -#: templates/client/includes/header.html:86 -msgid "Выставки в Берлине" -msgstr "Expos in Berlin" +#: templates/client/service/tour.html:43 +msgid "Сервис также включает ряд особенностей" +msgstr "This service possesses several key characteristics" -#: templates/client/includes/header.html:87 -msgid "Выставки в России" -msgstr "Expos in Russia" +#: templates/client/service/tour.html:46 +msgid "" +"визовая поддержка оказывается только при бронировании отеля. На текущий " +"момент мы можем помочь с визой только клиентам из России (это связано с " +"правилами обработки анкет иностранными консульствами)" +msgstr "" +"Visa support is only provided when reserving a hotel stay. At the moment, we " +"can only provide visa support for clients from Russia (this is due to the " +"rules set forth by foreign consulates for application submission and " +"processing)" -#: templates/client/includes/header.html:91 -msgid "Выставки по городам" -msgstr "Expos by City" +#: templates/client/service/tour.html:47 +msgid "" +"бронирование отеля осуществляется не ниже 3*, так как мы должны быть " +"уверенными в Вашем комфортном размещении. Также Вам следует учесть, что " +"стоимость проживания в период крупных выставок значительно возрастает из-за " +"спроса (cправочно: для Европы в такие дни номер гостиницы 3-4* может стоить " +"от 150 евро/сутки). На цену размещения значительно влияет место расположения " +"отеля, в частности его близость/удаленность от центра или выставочного " +"комплекса" +msgstr "" +"We reserve only hotels rated three stars and up, since we want to be " +"confident in providing you with comfortable accommodation. Also, keep in " +"mind that the cost of accommodation is usually higher during periods when " +"events take place due to the higher demand (i.e. in Europe, on days " +"corresponding with certain events, rooms in three or four star hotels can be " +"priced starting at 150 Euros per night). The hotel's location substantially " +"affects its pricing. Thus, prices vary based on how close or far a hotel is " +"from downtown, or how close it is to the relevant convention center " -#: templates/client/includes/header.html:92 -msgid "Выставки по странам" -msgstr "Expos by Country" +#: templates/client/service/tour.html:48 +msgid "" +"индивидуальный бизнес-тур через туроператора, как правило, обходится дороже, " +"чем самостоятельный заказ через системы онлайн-бронирования (например, " +"отелей - Booking.com). Вы платите за индивидуальный сервис, гарантии и " +"консультационную поддержку до и во время Вашей поездки" +msgstr "" +"Individual business tours ordered via tour agencies generally cost more than " +"reserving via online booking systems (i.e. booking.com for hotel " +"reservations). You pay for individual service, assurances/guarantees, and " +"consultations before and during your trip." -#: templates/client/includes/header.html:93 -msgid "Выставки по тематикам" -msgstr "Expos by Theme" +#: templates/client/service/tour.html:62 +msgid "Информация о бизнес-туре" +msgstr "Information about business tour" -#: templates/client/includes/online_consult.html:5 -msgid "он-лайн" -msgstr "Online" +#: templates/client/service/tour.html:65 +msgid "Даты поездки" +msgstr "" -#: templates/client/includes/online_consult.html:5 -msgid "консультант" -msgstr "Support" +#: templates/client/service/tour.html:88 +msgid "Условия размещения" +msgstr "Conditions of accommodation" -#: templates/client/includes/online_consult.html:8 -msgid "Возникли трудности?" -msgstr "Having trouble?" +#: templates/client/service/tour.html:95 +msgid "Город отправления" +msgstr "City ​​of origin" -#: templates/client/includes/online_consult.html:8 -msgid "Наши специалисты с" -msgstr "Our support specialists" +#: templates/client/service/tour.html:102 +msgid "Категория отеля" +msgstr "hotel category" -#: templates/client/includes/online_consult.html:8 -msgid "радостью помогут вам!" -msgstr "are eager to help you!" +#: templates/client/service/tour.html:113 +msgid "Расположение отеля" +msgstr "Location of the hotel" -#: templates/client/includes/page_filter.html:8 -msgid "Указать диапазон дат" -msgstr "Set date range" +#: templates/client/service/tour.html:121 +msgid "Примерный бюджет на отель" +msgstr "Approximate budget hotel" -#: templates/client/includes/place_list.html:41 -#: templates/client/includes/place/search_result.html:41 -msgid "описание" -msgstr "Description" +#: templates/client/service/tour.html:130 +msgid "Дополнительные сервисы" +msgstr "Additional services" -#: templates/client/includes/place_list.html:43 -#: templates/client/includes/company/company_list.html:42 -#: templates/client/includes/company/search_result.html:42 -#: templates/client/includes/exposition/members.html:34 -#: templates/client/includes/exposition/visitors.html:34 -#: templates/client/includes/place/search_result.html:43 -msgid "события" -msgstr "Events" +#: templates/client/service/tour.html:134 +msgid "Авиабилеты" +msgstr "Tickets" -#: templates/client/includes/place_list.html:51 -#: templates/client/includes/place/search_result.html:51 -msgid "Найти отели поблизости" -msgstr "Find Nearby Hotels" +#: templates/client/service/tour.html:143 +msgid "Оформление визы" +msgstr "Visa" -#: templates/client/includes/place_object.html:45 -msgid "Банк / банкоматы / обмен валюты" -msgstr "Banks / ATMs / Currency Exchange" +#: templates/client/service/tour.html:144 +msgid "Трансфер" +msgstr "" -#: templates/client/includes/place_object.html:51 -msgid "Детская комната" -msgstr "Children's Room" +#: templates/client/service/tour.html:145 +msgid "Билеты на выставку (приглашения)" +msgstr "Expo Tickets" -#: templates/client/includes/place_object.html:54 -msgid "Сервис для инвалидов" -msgstr "Services for Disabled" +#: templates/client/service/tour.html:149 +#: templates/client/service/translator.html:26 +msgid "Услуги переводчика" +msgstr "Translator Services" -#: templates/client/includes/place_object.html:62 -msgid "Бизнес центр" -msgstr "Business Center" +#: templates/client/service/tour.html:168 +msgid "Занятость" +msgstr "" -#: templates/client/includes/place_object.html:65 -msgid "Онлайн-регистрация" -msgstr "Online Registration" +#: templates/client/service/tour.html:170 +#: templates/client/service/translator.html:80 +msgid "дней" +msgstr "" -#: templates/client/includes/place_object.html:68 -msgid "Кафе и рестораны" -msgstr "Cafes & Restaurants" +#: templates/client/service/tour.html:174 +#: templates/client/service/translator.html:84 +msgid "часов в день" +msgstr "hour per day" -#: templates/client/includes/place_object.html:73 -msgid "Информационные терминалы" -msgstr "Information Terminals" +#: templates/client/service/tour.html:181 +#, fuzzy +#| msgid "Деловая программа" +msgid "Экскурсионная программа" +msgstr "Business Program" -#: templates/client/includes/place_object.html:76 -msgid "Парковка" -msgstr "Parking" +#: templates/client/service/tour.html:187 +msgid "Пожелания" +msgstr "wishes" -#: templates/client/includes/place_object.html:79 -msgid "Пресс-центр" -msgstr "Press Centers" +#: templates/client/service/tour.html:272 +#: templates/client/service/tour.html:281 +msgid "Запрос туроператору" +msgstr "Request tour operator" -#: templates/client/includes/place_object.html:82 -msgid "Мобильное приложение" -msgstr "Mobile App" +#: templates/client/service/translator.html:40 +msgid "Основные преимущества сотрудничества с нами" +msgstr "The primary advantages of our services are" -#: templates/client/includes/place_object.html:90 -msgid "Фотогалерея" -msgstr "Photo Gallery" +#: templates/client/service/translator.html:43 +msgid "" +"оплата только за часы работы переводчика (никаких расходов на перелет, " +"проживание, питание и пр.)" +msgstr "" +"Pay only for the hours the translator will actually be working for you (no " +"need to cover transportation, accommodation, or food expenses)" -#: templates/client/includes/place_object.html:116 -msgid "закрытая выставочная площадь" -msgstr "Closed Expo Area" +#: templates/client/service/translator.html:44 +msgid "знание местных языковых диалектов и обычаев ведения деловых переговоров" +msgstr "" +"Rest assured that your translator will know the local dialects and be aware " +"of the methodology behind business negotiations" -#: templates/client/includes/place_object.html:122 -msgid "открытая выставочная площадь" -msgstr "Open Expo Area" +#: templates/client/service/translator.html:45 +msgid "" +"отличная ориентация по выставочному комплексу, а также по городу прохождения " +"выставки" +msgstr "" +"Your translator will have no issues finding what you need both at the " +"convention center and throughout the city where the event is being held" -#: templates/client/includes/place_object.html:152 -msgid "Схема павильонов" -msgstr "Layout" +#: templates/client/service/translator.html:61 +msgid "Информация о переводе" +msgstr "Information about translations" -#: templates/client/includes/place_object.html:161 -msgid "Контактная информация" -msgstr "Contact Information" +#: templates/client/service/translator.html:89 +msgid "Даты работы" +msgstr "Work date" -#: templates/client/includes/place_object.html:171 -msgid "телефон" -msgstr "Phone" +#: templates/client/service/translator.html:227 +msgid "" +"Для получения подробной информации о стоимости услуг специализированного " +"переводчика, пожалуйста, отправьте предварительную заявку" +msgstr "" +"To request detailed information regarding specialized translator services, " +"please submit a preliminary request" -#: templates/client/includes/place_object.html:174 -msgid "факс" -msgstr "Fax" +#: templates/client/simple_pages/about.html:14 +#: templates/client/simple_pages/about.html:44 +#, fuzzy +#| msgid "о нас" +msgid "О нас" +msgstr "About Us" -#: templates/client/includes/place_object.html:184 -msgid "Список событий" -msgstr "Event List" +#: templates/client/simple_pages/about.html:19 +msgid "Уважаемые клиенты, партнеры
      и пользователи Expomap.Ru!" +msgstr "" -#: templates/client/includes/place_object.html:267 -msgid "Ближайшие выставочные центры" -msgstr "Nearest Expo Centers" +#: templates/client/simple_pages/about.html:27 +msgid "" +"\n" +"\t\t\t\tМы сформировали штат консультантов, который с огромным " +"удовольствием делится своим опытом с Вами. Клиент, его настроение и\n" +"\t\t\t\tпотребности находятся в центре внимания работы наших консультантов, " +"мы отслеживаем уровень счастья наших клиентов и всегда готовы\n" +"\t\t\t\tсовершенствовать свой сервис!\n" +"\t\t\t\t" +msgstr "" -#: templates/client/includes/search_paginator.html:6 -msgid "Показано" +#: templates/client/simple_pages/about.html:34 +#: templates/client/simple_pages/about.html:69 +msgid "" +"Мы сотрудничаем с более чем 500 организаторами деловых событий в " +"России и за рубежом. Также в нашу партнерскую сеть входят ведущие " +"тематические порталы Рунета, а также туроператоры, турагентства и рекламные " +"агентства." msgstr "" -#: templates/client/includes/search_paginator.html:6 -msgid "всего" +#: templates/client/simple_pages/about.html:37 +msgid "" +"Мы всегда рады любым Вашим мнениям и пожеланиям - ведь то, что наша работа " +"востребована - лучшая похвала для нас и отличная мотивация для того, чтобы " +"стать еще удобнее, полезнее и эффективнее!" msgstr "" -#: templates/client/includes/search_paginator.html:6 -msgid "позиций" +#: templates/client/simple_pages/about.html:40 +msgid "" +"За почти 5 лет работы мы зарекомендовали себя как надежный партнер и " +"проводник в мире международных деловых событий. В нашей распределенной " +"команде специалисты различной квалификации: аналитики, переводчики, " +"стендисты, хостесс, промоутеры, которые работают по всему миру для наших " +"клиентов." msgstr "" -#: templates/client/includes/search_paginator.html:9 -#: templates/client/includes/search_paginator.html:11 -msgid "Предыдущая" +#: templates/client/simple_pages/about.html:45 +msgid "Команда" msgstr "" -#: templates/client/includes/search_paginator.html:38 -#: templates/client/includes/search_paginator.html:40 -msgid "Следующая" +#: templates/client/simple_pages/about.html:46 +#, fuzzy +#| msgid "партнеры" +msgid "Партнеры" +msgstr "Partners" + +#: templates/client/simple_pages/about.html:47 +#, fuzzy +#| msgid "контакты" +msgid "Контакты" +msgstr "Contact Us" + +#: templates/client/simple_pages/about.html:48 +msgid "Отзывы" msgstr "" -#: templates/client/includes/services.html:3 -msgid "Наши услуги" -msgstr "Our Services" +#: templates/client/simple_pages/about.html:54 +msgid "Чем мы можем быть вам полезны?" +msgstr "" -#: templates/client/includes/services.html:6 -msgid "Переводчики" -msgstr "Translators" +#: templates/client/simple_pages/about.html:55 +msgid "" +"Само название Expomap.Ru (Expo + Map) было выбрано неслучайно. Мы взяли на " +"себя роль Вашего навигатора в сфере деловых события и делаем все, чтобы " +"справляться с этой ролью максимально эффективно. Ежедневно мы:" +msgstr "" -#: templates/client/includes/services.html:7 -msgid "Хостесс, модели, стендистки" -msgstr "Hostesses, Models, Booth Attendants" +#: templates/client/simple_pages/about.html:57 +msgid "" +"освещаем деловые события со всего мира - различных тематик и " +"масштабов;" +msgstr "" -#: templates/client/includes/services.html:8 -msgid "Каталоги выставок" -msgstr "Expo Catalogs" +#: templates/client/simple_pages/about.html:58 +msgid "консультируем Вас по вопросам их правильного подбора;" +msgstr "" -#: templates/client/includes/services.html:9 -msgid "Билеты на выставки" -msgstr "Expo Tickets" +#: templates/client/simple_pages/about.html:59 +msgid "выстраиваем вместе с Вами эффективную выставочную стратегию;" +msgstr "" -#: templates/client/includes/services.html:10 -#: templates/client/service/catalog.html:133 -#: templates/client/service/participation.html:140 -#: templates/client/service/remotely.html:7 -#: templates/client/service/remotely.html:145 -#: templates/client/service/tickets.html:194 -#: templates/client/service/tour.html:355 -#: templates/client/service/translator.html:308 -msgid "Заочное посещение" -msgstr "Absentee Visit" +#: templates/client/simple_pages/about.html:60 +msgid "" +"организуем Ваши поездки на выставки в качестве как посетителей, так и " +"участников," +msgstr "" -#: templates/client/includes/services.html:11 -msgid "Участие и посещение" -msgstr "Participation & Attendance" +#: templates/client/simple_pages/about.html:61 +msgid "устраняем языковые барьеры;" +msgstr "" -#: templates/client/includes/accounts/calendar_table.html:8 -msgid "визуализация" -msgstr "Visualization" +#: templates/client/simple_pages/about.html:62 +msgid "" +"решаем многие другие вопросы, которые Вы ставите перед нами." +msgstr "" -#: templates/client/includes/accounts/calendar_table.html:29 -#: templates/client/includes/accounts/calendar_table.html:123 -msgid "Сегодня" -msgstr "Today" +#: templates/client/simple_pages/about.html:64 +msgid "" +"Мы хорошо знаем зарубежные рынки, отлично ориентируемся в выставочных " +"центрах и всегда учитываем деловые обычаи каждой нации." +msgstr "" -#: templates/client/includes/company/company_list.html:40 -#: templates/client/includes/company/search_result.html:40 -#: templates/client/includes/exposition/members.html:33 -#: templates/client/includes/exposition/visitors.html:33 -msgid "информация" -msgstr "Information" +#: templates/client/simple_pages/about.html:65 +msgid "Чем мы гордимся!" +msgstr "" -#: templates/client/includes/company/company_object.html:89 -msgid "Год основания:" -msgstr "Year Founded:" +#: templates/client/simple_pages/about.html:66 +msgid "" +"За почти 5 лет работы мы зарекомендовали себя как надежный партнер и " +"проводник в мире международных деловых событий. В нашей распределенной " +"команде специалисты различной квалификации: аналитики, переводчики, " +"стендисты, хостесс, промоутеры, которые работают по всему миру для наших " +"клиентов." +msgstr "" -#: templates/client/includes/company/company_object.html:94 -msgid "Количество сотрудников:" -msgstr "Number of Staff:" +#: templates/client/simple_pages/about.html:67 +msgid "" +"У нас создана собственная редакция, которая исходя из Ваших интересов " +"и пожеланий ежедневно отбирает самые интересные публикации из мира выставок " +"и конференций. Мы ведем cобственный профессиональный блог, активничаем в " +"социальных медиа" +msgstr "" -#: templates/client/includes/company/company_object.html:98 -msgid "О компании:" -msgstr "About the Company:" +#: templates/client/simple_pages/about.html:68 +msgid "" +"Мы сформировали штат консультантов, который с огромным удовольствием " +"делится своим опытом с Вами. Клиент, его настроение и потребности " +"находятся в центре внимания работы наших консультантов, мы отслеживаем " +"уровень счастья наших клиентов и всегда готовы совершенствовать свой сервис!" +msgstr "" -#: templates/client/includes/company/company_object.html:114 -msgid "выставках" -msgstr "expos" +#: templates/client/simple_pages/about.html:70 +msgid "" +"Изо дня в день мы стараемся быть самыми оперативными, информативными, " +"полезными и эффективными для Вас! " +msgstr "" -#: templates/client/includes/company/company_object.html:115 -msgid "конференциях" -msgstr "conferences" +#: templates/client/simple_pages/about.html:71 +msgid "" +"Я уверена, что познакомившись поближе с нашим ресурсом, Вы также полюбите " +"его и добавите в закладки. Мы всегда рады любым Вашим мнениям и пожеланиям " +"- ведь то, что наша работа востребована - лучшая похвала для нас и отличная " +"мотивация для того, чтобы стать еще удобнее, полезнее и эффективнее!" +msgstr "" -#: templates/client/includes/company/company_object.html:116 -msgid "семинарах" -msgstr "seminars" +#: templates/client/simple_pages/about.html:74 +msgid "С уважением и надеждой на сотрудничество" +msgstr "" -#: templates/client/includes/company/company_object.html:136 -msgid "Участник" -msgstr "Participant" +#: templates/client/simple_pages/about.html:75 +msgid "Евгения Мануковская" +msgstr "" -#: templates/client/includes/company/company_object.html:163 -msgid "Все события" -msgstr "All Events" +#: templates/client/simple_pages/about.html:85 +#, fuzzy +#| msgid "Сообщения" +msgid "Евгения" +msgstr "Messages" -#: templates/client/includes/company/company_object.html:168 -msgid "Сотрудники" -msgstr "Staff" +#: templates/client/simple_pages/about.html:85 +msgid "Мануковская" +msgstr "" -#: templates/client/includes/company/company_object.html:197 -msgid "Все сотрудники" -msgstr "All Staff" +#: templates/client/simple_pages/about.html:86 +#, fuzzy +#| msgid "Руководители компаний" +msgid "руководитель,сооснователь " +msgstr "Corporate Executives" -#: templates/client/includes/exposition/exposition_list.html:28 -msgid "Активная" -msgstr "Active" +#: templates/client/simple_pages/about.html:87 +msgid "Даже самое лучшее
      может стать еще лучше" +msgstr "" -#: templates/client/includes/exposition/exposition_list.html:30 -msgid "Неактивная" -msgstr "Inactive" +#: templates/client/simple_pages/about.html:95 +msgid "Ольга
      Мусатова" +msgstr "" -#: templates/client/includes/photoreport/photoreport_list.html:56 -msgid "Все фотографии" -msgstr "All Photos" +#: templates/client/simple_pages/about.html:96 +#: templates/client/simple_pages/about.html:106 +#: templates/client/simple_pages/about.html:117 +#, fuzzy +#| msgid "консультант" +msgid "ведущий консультант" +msgstr "Support" -#: templates/client/includes/photoreport/photoreport_list.html:57 -msgid "фотографий" -msgstr "photos" +#: templates/client/simple_pages/about.html:97 +msgid "Главное внимание главным вещам" +msgstr "" -#: templates/client/includes/photoreport/photoreport_object.html:86 -#: templates/client/place/place_photo.html:83 -msgid "На фотографии отмечены" -msgstr "Marked on photo" +#: templates/client/simple_pages/about.html:105 +msgid "Руслан
      Шапилов" +msgstr "" -#: templates/client/includes/photoreport/photoreport_object.html:92 -#: templates/client/place/place_photo.html:90 -msgid "Коментарии" -msgstr "Comments" +#: templates/client/simple_pages/about.html:107 +msgid "Развиваться и получать удовольствие от жизни" +msgstr "" -#: templates/client/includes/photoreport/photoreport_object.html:104 -#: templates/client/place/place_photo.html:102 -msgid "Оставьте свой комментарий" -msgstr "Leave a comment" +#: templates/client/simple_pages/about.html:116 +msgid "Евгения
      Булавина" +msgstr "" -#: templates/client/includes/photoreport/photoreport_object.html:109 -#: templates/client/place/place_photo.html:108 -msgid "отметить человека" -msgstr "Mark individual" +#: templates/client/simple_pages/about.html:118 +msgid "Жить в настоящем - единственная возможность жить" +msgstr "" -#: templates/client/photoreport/photoreport_catalog.html:25 -msgid "Ничего не найдено" -msgstr "Nothing found" +#: templates/client/simple_pages/about.html:127 +msgid "Валерия
      Селезнева" +msgstr "" -#: templates/client/popups/login.html:5 -msgid "Вход в личный кабинет" -msgstr "Control Panel" +#: templates/client/simple_pages/about.html:128 +#, fuzzy +#| msgid "редактировать" +msgid "шеф-редактор" +msgstr "Edit" -#: templates/client/popups/login.html:17 -msgid "Ваш пароль" -msgstr "Your password" +#: templates/client/simple_pages/about.html:129 +msgid "Делай - где-то звякнет" +msgstr "" -#: templates/client/popups/login.html:19 -msgid "Напомнить пароль" -msgstr "Recover password" +#: templates/client/simple_pages/about.html:138 +msgid "Светлана
      Мурадян" +msgstr "" -#: templates/client/popups/login.html:23 -msgid "войти" -msgstr "Log in" +#: templates/client/simple_pages/about.html:139 +#, fuzzy +#| msgid "Специалисты" +msgid "журналист" +msgstr "Specialists" -#: templates/client/popups/login.html:24 -msgid "Запомнить" -msgstr "Remember me" +#: templates/client/simple_pages/about.html:140 +msgid "Кто верит в свою удачу, удачлив" +msgstr "" -#: templates/client/popups/login.html:27 -#: templates/client/popups/register.html:45 -msgid "Зарегистрироваться" -msgstr "Register" +#: templates/client/simple_pages/about.html:150 +msgid "Олег
      Петров" +msgstr "" -#: templates/client/popups/login.html:34 -#: templates/client/popups/register.html:51 -msgid "или войдите с помощью" -msgstr "or log in via" +#: templates/client/simple_pages/about.html:151 +#: templates/client/simple_pages/about.html:162 +msgid "контент-менеджер" +msgstr "" -#: templates/client/popups/period.html:21 -#: templates/client/popups/place.html:89 -#: templates/client/popups/place.html:112 -#: templates/client/popups/theme.html:35 -msgid "применить" -msgstr "Apply" +#: templates/client/simple_pages/about.html:152 +msgid "Побеждает тот, кто побеждает себя" +msgstr "" -#: templates/client/popups/place.html:75 -msgid "Быстрый выбор" -msgstr "Quick selection" +#: templates/client/simple_pages/about.html:161 +msgid "Виктор
      Трифонов" +msgstr "" -#: templates/client/popups/place.html:81 -msgid "Сбросить выбранные регионы" -msgstr "Reset selected regions" +#: templates/client/simple_pages/about.html:163 +msgid "Каждый день становиться чуть лучше" +msgstr "" -#: templates/client/popups/register.html:15 -msgid "например, свое имя" -msgstr "e.g. your first name" +#: templates/client/simple_pages/about.html:280 +#, fuzzy +#| msgid "Заказать билет" +msgid "заказать звонок" +msgstr "Order Ticket" -#: templates/client/popups/register.html:23 -msgid "например, свою фамилию" -msgstr "e,g, your last name" +#: templates/client/simple_pages/about.html:281 +msgid "Связь с дежурным менеджером в нерабочее время:" +msgstr "" -#: templates/client/popups/register.html:30 -msgid "например, ivanova@mail.ru" -msgstr "e.g. myname@mail.com" +#: templates/client/simple_pages/about.html:287 +msgid "Email по общим вопросам:" +msgstr "" -#: templates/client/popups/register.html:36 -#: templates/client/popups/register.html:42 -msgid "пароль должен иметь не меньше 6 символов" -msgstr "The password must be at least 6 characters in length" +#: templates/client/simple_pages/about.html:291 +#, fuzzy +#| msgid "Количество сотрудников:" +msgid "Сотрудничество с событиями:" +msgstr "Number of Staff:" -#: templates/client/popups/theme.html:21 -msgid "Выберите интересующую вас тематику" -msgstr "Select a theme" +#: templates/client/simple_pages/about.html:295 +#, fuzzy +#| msgid "вашей рекламы" +msgid "Размещение рекламы:" +msgstr "your ad" -#: templates/client/service/catalog.html:8 -#: templates/client/service/catalog.html:14 -msgid "Официальный каталог выставки" -msgstr "The official exhibition catalog" +#: templates/client/simple_pages/about.html:303 +msgid "" +"Клиентский офис: бизнес-центр \"W-Plaza\", Варшавское ш, д.1, стр.1-2, " +"офис В-203" +msgstr "" -#: templates/client/service/catalog.html:29 -msgid "Предлагаем Вам заказать печатный каталог выставки" -msgstr "You now have the opportunity to order a printed version of the Holiday Real Estate Market 2013 Expo Catalog" +#: templates/client/simple_pages/about.html:304 +msgid "" +"От м. Тульская: первый вагон из центра. Подняться по пешеходной лестнице " +"вверх вдоль съезда с третьего транспортного кольца (ТТК). На первом спуске " +"(слева) спуститься по лестнице к набережной и пройти под ТТК. Через въездные " +"ворота мимо шлагбаума пройти на территорию бизнес центра «W Plaza» в сторону " +"бело-коричневого здания. Центральный вход с противоположной от набережной " +"стороны здания. " +msgstr "" -#: templates/client/service/catalog.html:33 -#: templates/client/service/catalog.html:39 -#: templates/client/service/participation.html:25 -#: templates/client/service/participation.html:31 -msgid "вся информация о выставке" -msgstr "All expo information" +#: templates/client/simple_pages/about.html:317 +msgid "" +"Бэк-офис: Россия, 394019, Воронеж, ул. Холмистая, 56-Б, бизнес-центр " +"\"Корвет\", оф. 212 " +msgstr "" -#: templates/client/service/catalog.html:34 -#: templates/client/service/catalog.html:40 -#: templates/client/service/participation.html:26 -#: templates/client/service/participation.html:32 -#: templates/client/service/tickets.html:25 -msgid "экономия времени" -msgstr "time saving" +#: templates/client/simple_pages/advertising.html:10 +#: templates/client/simple_pages/advertising.html:15 +msgid "Реклама на сайте" +msgstr "Advertise with us" -#: templates/client/service/catalog.html:35 -#: templates/client/service/catalog.html:41 -#: templates/client/service/participation.html:27 -#: templates/client/service/participation.html:33 -msgid "все потенциальные контакты" -msgstr "all potential contacts" +#: templates/client/simple_pages/advertising.html:21 +msgid "Рост аудитории Expomap 2009–2014 гг." +msgstr "Expomap audience growth for 2009-2014" -#: templates/client/service/catalog.html:56 -#: templates/client/service/participation.html:77 -#: templates/client/service/remotely.html:73 -#: templates/client/service/tickets.html:62 -#: templates/client/service/tour.html:217 -#: templates/client/service/translator.html:119 -msgid "Ваши контактные данные" -msgstr "Your details" +#: templates/client/simple_pages/advertising.html:40 +msgid "посещений в" +msgstr "visits per" -#: templates/client/service/catalog.html:60 -#: templates/client/service/participation.html:81 -#: templates/client/service/remotely.html:77 -#: templates/client/service/tickets.html:66 -#: templates/client/service/tour.html:221 -#: templates/client/service/translator.html:123 -msgid "Контактное лицо" -msgstr "Contact name" +#: templates/client/simple_pages/advertising.html:40 +#: templates/client/simple_pages/advertising.html:85 +msgid "месяц" +msgstr "month" -#: templates/client/service/catalog.html:76 -#: templates/client/service/participation.html:97 -#: templates/client/service/remotely.html:93 -#: templates/client/service/tickets.html:82 -#: templates/client/service/tour.html:237 -#: templates/client/service/translator.html:139 -msgid "Контактный номер телефона" -msgstr "Phone number" +#: templates/client/simple_pages/advertising.html:45 +msgid "целевых" +msgstr "targeted" -#: templates/client/service/catalog.html:80 -#: templates/client/service/participation.html:101 -#: templates/client/service/remotely.html:97 -#: templates/client/service/tickets.html:86 -#: templates/client/service/tour.html:241 -#: templates/client/service/translator.html:143 -msgid "Электронная почта" -msgstr "E-mail address" +#: templates/client/simple_pages/advertising.html:45 +msgid "просмотров" +msgstr "views" -#: templates/client/service/catalog.html:92 -#: templates/client/service/catalog.html:109 -msgid "стоимость каталога" -msgstr "price catalog" +#: templates/client/simple_pages/advertising.html:45 +msgid "вашей рекламы" +msgstr "your ad" -#: templates/client/service/catalog.html:94 -#: templates/client/service/catalog.html:111 -#: templates/client/service/participation.html:120 -#: templates/client/service/tickets.html:100 -#: templates/client/service/tickets.html:117 -#: templates/client/service/translator.html:175 -msgid "Сделать запрос" -msgstr "Receive Announcements" +#: templates/client/simple_pages/advertising.html:85 +msgid "Посещений в" +msgstr "Visits per" -#: templates/client/service/catalog.html:98 -#: templates/client/service/catalog.html:115 +#: templates/client/simple_pages/advertising.html:112 +#: templates/client/simple_pages/advertising.html:122 +msgid "Баннерная реклама" +msgstr "Banner ads" + +#: templates/client/simple_pages/advertising.html:115 msgid "" -"Стоимость каталога оплачивается c учетом доставки, которую обозначают " -"организаторы выставки (в среднем от 0 до 50 евро)." +"Вы можете таргетировать Вашу рекламу, привязывая ее показы к определенной " +"тематической отрасли (например, события в сфере строительства) или " +"географической зоне (например, выставки и конференции Москвы)." msgstr "" -"The catalog price includes the delivery fee, which is specified by the expo's " -"organizing party (usually from 0 to 50 Euros)." +"You can target your ads, associating it with a specific industry (e.g. " +"construction industry events) or geographic zone (e.g. expos and conferences " +"in your city)." -#: templates/client/service/catalog.html:121 +#: templates/client/simple_pages/advertising.html:116 msgid "" -"

      Внимание! Мы не можем гарантировать то, что все организаторы " -"предоставляют возможность заказа печатного каталога выставки. Получая Ваш " -"запрос, мы персонально связываемся с организатором конкретного события и " -"уточняем информацию об условиях приобретения. Только после этого мы " -"подтверждаем Вам возможность заказа.

      " -msgstr "" -"

      Attention! We cannot guarantee that all organizers will have a printed catalog available for order." "After receiving your request, we personally contact the organizing party for any given event and clarify the" "details of acquiring a catalog. Only after doing this do we let you know whether the order can or cannot be" "placed.

      " +"Возможные варианты размещения и размеры баннеров можно посмотреть на эскизе." +msgstr "The options for banner display and dimensions are illustrated here." -#: templates/client/service/catalog.html:130 -msgid "Бизнес-тур «под ключ" -msgstr "Remote" +#: templates/client/simple_pages/advertising.html:121 +msgid "от" +msgstr "from" -#: templates/client/service/catalog.html:131 -#: templates/client/service/participation.html:138 -#: templates/client/service/remotely.html:143 -#: templates/client/service/tickets.html:192 -#: templates/client/service/tour.html:353 -#: templates/client/service/translator.html:306 -msgid "Устный переводчик" -msgstr "Translator" +#: templates/client/simple_pages/advertising.html:121 +#: templates/client/simple_pages/advertising.html:143 +#: templates/client/simple_pages/advertising.html:163 +msgid "руб." +msgstr "RUB" -#: templates/client/service/catalog.html:132 -#: templates/client/service/participation.html:139 -#: templates/client/service/remotely.html:144 -#: templates/client/service/tickets.html:193 -#: templates/client/service/tour.html:354 -#: templates/client/service/translator.html:307 -msgid "Официальный каталог" -msgstr "Official catalog" +#: templates/client/simple_pages/advertising.html:125 +msgid "за месяц размещения" +msgstr "per month" -#: templates/client/service/participation.html:7 -msgid "Участие в выставке" -msgstr "Participation in exhibition" +#: templates/client/simple_pages/advertising.html:128 +msgid "Скидки при длительном размещении, а также агентствам." +msgstr "Discounts for long-term ads and for agencies." + +#: templates/client/simple_pages/advertising.html:135 +#: templates/client/simple_pages/advertising.html:144 +msgid "Приоритетное размещение событий в каталоге" +msgstr "Priority catalog event advertisement" -#: templates/client/service/participation.html:21 +#: templates/client/simple_pages/advertising.html:138 msgid "" -"Предлагаем Вам услуги профессиональной организации Вашего участия в выставке" -msgstr "We're offering professional organizational services for managing your participation in the Holiday Real Estate Market Expo 2013" +"Ваше событие всегда в Топе тематического календаря и выделено цветом — вне " +"зависимости от дат его проведения." +msgstr "" +"Your event will always be at the top of the event calendar and highlighted " +"for accent regardless of when it is to be held." -#: templates/client/service/participation.html:48 -msgid "Информация об экспоместе" -msgstr "Information about expomap" +#: templates/client/simple_pages/advertising.html:147 +#, fuzzy +#| msgid "за месяц размещения" +msgid "за месяц размещения в ТОП в 1 тематике" +msgstr "per month" -#: templates/client/service/participation.html:52 -msgid "Требуемая площадь" -msgstr "Required area" +#: templates/client/simple_pages/advertising.html:156 +#: templates/client/simple_pages/advertising.html:164 +msgid "Персональная визитка Вашей компании" +msgstr "Your personalized corporate business card" -#: templates/client/service/participation.html:57 -msgid "Вид площади" -msgstr "Type of area" +#: templates/client/simple_pages/advertising.html:158 +msgid "" +"В связи с недавним появлением каталога, спешите занять первые места в " +"рубриках!" +msgstr "" +"Given the novel nature of the catalog, you still have the opportunity to " +"reserve the top spots in various sections!" -#: templates/client/service/participation.html:59 -msgid "оборудованная" -msgstr "Equipped Area" +#: templates/client/simple_pages/advertising.html:167 +msgid "за год за 1 тематический раздел" +msgstr "per year for one section" -#: templates/client/service/participation.html:60 -msgid "не оборудованная" -msgstr "Unequipped Area" +#: templates/client/simple_pages/advertising.html:182 +msgid "Наша аудитория" +msgstr "Our Audience" -#: templates/client/service/participation.html:67 -msgid "Краткое описание, вид деятельности компании" -msgstr "Brief description of activities of" +#: templates/client/simple_pages/advertising.html:184 +msgid "Маркетологи" +msgstr "Marketing Specialists" -#: templates/client/service/participation.html:111 -#: templates/client/service/remotely.html:111 -#: templates/client/service/remotely.html:127 -#: templates/client/service/translator.html:157 -msgid "отправить запрос" -msgstr "Make an inquiry" +#: templates/client/simple_pages/advertising.html:185 +msgid "PR-специалисты" +msgstr "PR Specialists" -#: templates/client/service/participation.html:126 -msgid "" -"

      За организацию Вашего участия в зарубежной выставке наша компания берет " -"дополнительный %% от контракта с организатором. Его величина варьируется от " -"5 до 15%% и зависит от метража арендуемой площади и необходимых " -"дополнительных услуг, которые определяют общую трудоемкость процесса и " -"состав специалистов.

      " -msgstr "" -"

      Our fee for organizing your participation in a foreign expo is calculated as a an additional " -"percent ontop of the total participation fee set forth by the event organizer in the " -"contract. The fee varies between 5% and 15% and depends on the measurements " -"of the rented area as well as any additional services required" -" (which define the overall effort and staff composition required).

      " - -#: templates/client/service/participation.html:137 -#: templates/client/service/remotely.html:142 -#: templates/client/service/tickets.html:191 -#: templates/client/service/tour.html:352 -#: templates/client/service/translator.html:305 -msgid "Бизнес-тур «под ключ»" -msgstr "Remote" +#: templates/client/simple_pages/advertising.html:186 +msgid "Профильные специалисты" +msgstr "Experts" -#: templates/client/service/remotely.html:23 -msgid "" -"Услуга позволяет получить исчерпывающую информацию о выставке и ее " -"участниках, не выходя за пределы собственного офиса. Она особенно актуальна, " -"если вы по тем или иным причинам не можете лично присутствовать на выставке" -msgstr "" -"This service provides wholesome information from the ConFoo.Ca 2014 Conference and information about its" "participants to clients within the comfort of their own offices. This service is particularly useful for" "those who, for whatever reason, cannot visit ConFoo.Ca 2014 directly" +#: templates/client/simple_pages/advertising.html:187 +msgid "Руководители департаментов" +msgstr "Department Heads" -#: templates/client/service/remotely.html:25 -msgid "Как работает «Заочное посещение выставки»?" -msgstr "How does the absentee visit work?" +#: templates/client/simple_pages/advertising.html:187 +msgid "(продажи, снабжение, маркетинг, PR и др.)" +msgstr "(sales, supply, marketing, PR, etc.)" -#: templates/client/service/remotely.html:27 -msgid "" -"По вашему запросу мы направим на выставку ConFoo.Ca 2014 собственного " -"специалиста, который соберет для вас полный комплект документов (буклеты, " -"каталоги, cd, прайс-листы) по каждому участнику выставки, а также приобретет " -"ее официальный каталог. Дополнительно на каждом стенде выставки ConFoo.Ca " -"2014 мы можем оставить ваши визитки или другую информацию. Все материалы " -"выставки пересылаются к вам в офис сразу после ее окончания." -msgstr "" -"As per your request, we will send a specialist to ConFoo.Ca 2014, who will gather for you a wholesome set of" "documents (pamphlets, catalogs, CDs, price lists, etc.) from each participant of the event along with their" "official catalog. Additionally, we can leave your business card or other information at each booth at" -" ConFoo.Ca 2014. All materials from the event will be mailed to your office immediately after the end of the" "event." +#: templates/client/simple_pages/advertising.html:189 +msgid "Руководители компаний" +msgstr "Corporate Executives" +#: templates/client/simple_pages/advertising.html:190 +msgid "Собственники бизнеса" +msgstr "Business Owners" -#: templates/client/service/remotely.html:29 -msgid "Преимущества услуги" -msgstr "The Advantages" +#: templates/client/simple_pages/advertising.html:196 +msgid "Наши рекламодатели" +msgstr "Our Advertisers" + +#: templates/client/simple_pages/advertising.html:199 +msgid "Организаторы мероприятий" +msgstr "Event Organizers" + +#: templates/client/simple_pages/advertising.html:200 +msgid "Туристические компании" +msgstr "Tourism Agencies" +#: templates/client/simple_pages/advertising.html:201 +msgid "Гостиницы и системы бронирования" +msgstr "Hotels & Reservation Services" +#: templates/client/simple_pages/advertising.html:202 +msgid "Сервис-компании в сфере конгрессно-выставочного бизнеса" +msgstr "Congress/Expo Service Companies" +#: templates/client/simple_pages/advertising.html:203 +msgid "Компании-производители" +msgstr "Manufacturing Companies" +#: templates/client/simple_pages/advertising.html:204 +msgid "Торговые компании" +msgstr "Trading Companies" +#: templates/client/webinar.html:99 +msgid "Посетить вебинар" +msgstr "Visit Webinar" +#: templates/client/webinar.html:103 +msgid "Билеты на вебинар" +msgstr "Webinar Tickets" -#: templates/client/service/remotely.html:32 -msgid "" -"Финансовая выгода - личное присутствие на одной выставке по затратам " -"эквивалентно заочному посещению 5 международных выставок" -msgstr "Financial efficiency. Visiting one expo in person is monetarily equivalent to five absentee visits" +#: templates/client/webinar.html:121 +msgid "Фотографии с прошлого вебинара" +msgstr "Photos from previous webinar" -#: templates/client/service/remotely.html:33 -msgid "Экономия времени и нервов" -msgstr "Save time and reduce potential stress" +#: templates/client/webinar.html:200 +msgid "Ближайшие вебинары по тематике" +msgstr "Nearybe webinars with given theme" -#: templates/client/service/remotely.html:34 -msgid "" -"Возможность получить актуальную информацию даже в том случае, если у Вас нет " -"шансов посетить ее лично (упущение сроков, отказ в визе, параллельное " -"прохождения интересных Вам выставок в разных городах мира и др.)" +#: templates/debug_toolbar/base.html:21 +msgid "Hide toolbar" msgstr "" -"Gain the opportunity to access vital information even when you lack the opportunity to visit an event" -"in person (too late to order tickets, declined visa, multiple events held simultaneously in different cities" "around the world, etc.)." - -#: templates/client/service/remotely.html:48 -#: templates/client/service/tickets.html:42 -msgid "Информация о заказе" -msgstr "Ordering Information " -#: templates/client/service/remotely.html:51 -msgid "Интересующие участники выставки" -msgstr "Interest of participants" +#: templates/debug_toolbar/base.html:21 +msgid "Hide" +msgstr "" -#: templates/client/service/remotely.html:59 -msgid "Дополнительно вы можете заказать" -msgstr "In addition, you can order" +#: templates/debug_toolbar/base.html:27 +msgid "Disable for next and successive requests" +msgstr "" -#: templates/client/service/remotely.html:61 -msgid "официальный каталог" -msgstr "official catalog" +#: templates/debug_toolbar/base.html:27 +msgid "Enable for next and successive requests" +msgstr "" -#: templates/client/service/remotely.html:62 -msgid "фотоотчет" -msgstr "photoreport" +#: templates/debug_toolbar/base.html:49 +msgid "Show toolbar" +msgstr "" -#: templates/client/service/remotely.html:63 -msgid "видеоотчет" -msgstr "videoreport" +#: templates/debug_toolbar/panels/cache.html:2 +msgid "Summary" +msgstr "" -#: templates/client/service/remotely.html:109 -#: templates/client/service/remotely.html:125 -msgid "Стоимость базового пакета услуги 400 €" -msgstr "The cost of a basic package of services 400 €" +#: templates/debug_toolbar/panels/cache.html:6 +msgid "Total calls" +msgstr "" -#: templates/client/service/tickets.html:7 -msgid "Билеты" -msgstr "Tickets" +#: templates/debug_toolbar/panels/cache.html:7 +msgid "Total time" +msgstr "" -#: templates/client/service/tickets.html:21 -msgid "Предлагаем Вам заранее заказать билеты на выставку" -msgstr "With us, you have the opportunity to order expo tickets ahead of time" +#: templates/debug_toolbar/panels/cache.html:8 +msgid "Cache hits" +msgstr "" +#: templates/debug_toolbar/panels/cache.html:9 +msgid "Cache misses" +msgstr "" +#: templates/debug_toolbar/panels/cache.html:21 +msgid "Commands" +msgstr "" -#: templates/client/service/tickets.html:26 -msgid "нет очередей" -msgstr "Save time" +#: templates/debug_toolbar/panels/cache.html:39 +msgid "Calls" +msgstr "" -#: templates/client/service/tickets.html:27 -msgid "отчетные документы для бухгадтерии" -msgstr "Acquire relevant documents for accounting purposes" +#: templates/debug_toolbar/panels/cache.html:43 +#: templates/debug_toolbar/panels/sql.html:20 +msgid "Time (ms)" +msgstr "" -#: templates/client/service/tickets.html:46 -msgid "Количество дней посещения выставки" -msgstr "Days exhibition" +#: templates/debug_toolbar/panels/cache.html:45 +#: templates/debug_toolbar/panels/request.html:8 +msgid "Arguments" +msgstr "" -#: templates/client/service/tickets.html:51 -#: templates/client/service/tour.html:62 -msgid "Количество человек" -msgstr "Number of people" +#: templates/debug_toolbar/panels/cache.html:46 +#: templates/debug_toolbar/panels/request.html:9 +msgid "Keyword arguments" +msgstr "" -#: templates/client/service/tickets.html:98 -#: templates/client/service/tickets.html:115 -msgid "Регистрация 1 450" -msgstr "Register 1 450" +#: templates/debug_toolbar/panels/cache.html:47 +msgid "Backend" +msgstr "" -#: templates/client/service/tickets.html:98 -#: templates/client/service/tickets.html:115 -msgid "руб" -msgstr "usd" +#: templates/debug_toolbar/panels/headers.html:3 +msgid "Request headers" +msgstr "" -#: templates/client/service/tickets.html:98 -#: templates/client/service/tickets.html:115 -msgid "билет организатора" -msgstr "organiser ticket" +#: templates/debug_toolbar/panels/headers.html:8 +#: templates/debug_toolbar/panels/headers.html:27 +#: templates/debug_toolbar/panels/headers.html:48 +msgid "Key" +msgstr "" -#: templates/client/service/tickets.html:104 -msgid "" -"Стоимость билета, заявленная организатором, зависит от количества дней " -"посещения события, также может быть бесплатной" +#: templates/debug_toolbar/panels/headers.html:9 +#: templates/debug_toolbar/panels/headers.html:28 +#: templates/debug_toolbar/panels/headers.html:49 +#: templates/debug_toolbar/panels/request.html:33 +#: templates/debug_toolbar/panels/request.html:59 +#: templates/debug_toolbar/panels/request.html:85 +#: templates/debug_toolbar/panels/request.html:110 +#: templates/debug_toolbar/panels/settings.html:6 +#: templates/debug_toolbar/panels/timer.html:11 +msgid "Value" msgstr "" -"The cost of the ticket, to the organizers, depends on the number of days " -"attend an event, can also be free" -#: templates/client/service/tickets.html:121 -msgid "" -"Стоимость билета, заявленная организатором, зависит от количества дней " -"посещения события, также может быть бесплатной" +#: templates/debug_toolbar/panels/headers.html:22 +msgid "Response headers" msgstr "" -"The ticket price is set forth by the organizing party and depends on the number of days for your visit." -"This fee may not exist (access may be free)" +#: templates/debug_toolbar/panels/headers.html:41 +msgid "WSGI environ" +msgstr "" -#: templates/client/service/tickets.html:127 +#: templates/debug_toolbar/panels/headers.html:43 msgid "" -"

      Внимание! Мы не можем гарантировать то, что все организаторы " -"предоставляют возможность предварительной регистрации посетителей. Получая " -"ваш запрос, мы персонально связываемся с организаторами конкретного события " -"и уточняем информацию об условиях приобретения билетов. Только после этого " -"мы подтверждаем вам возможность.

      " +"Since the WSGI environ inherits the environment of the server, only a " +"significant subset is shown below." msgstr "" -"

      Attention! We cannot guarantee that all event organizers provide early visitor registration." -"After receiving your request, we personally contact the organizing party for any given event and clarify" -"the details of acquiring tickets Only after doing this do we let you know whether the order can or cannot" -"be placed.

      " +#: templates/debug_toolbar/panels/logging.html:6 +msgid "Level" +msgstr "" -#: templates/client/service/tickets.html:137 -#: templates/client/service/tour.html:298 -#: templates/client/service/translator.html:251 -msgid "Отзывы клиентов" -msgstr "Client Feedback" +#: templates/debug_toolbar/panels/logging.html:7 +#: templates/debug_toolbar/panels/sql_explain.html:11 +#: templates/debug_toolbar/panels/sql_profile.html:12 +#: templates/debug_toolbar/panels/sql_select.html:11 +msgid "Time" +msgstr "" -#: templates/client/service/tickets.html:156 -#: templates/client/service/tour.html:317 -#: templates/client/service/translator.html:270 -msgid "" -"Мы заказывали впервые услугу \"Заочное посещение\" для выставки Photokina в " -"Германии. Остались очень довольны — получили каталоги и визитки практически " -"о 100 интересующих нас компаниях. Большое Спасибо сотрудникам SBW за " -"оперативность и компетентность!" +#: templates/debug_toolbar/panels/logging.html:8 +msgid "Channel" msgstr "" -"We ordered an absentee visit for Photokina in Germany. The results were great. Received catalogs and" -"business cards from just about 100 relevant companies. Thank you for the efficiency and competent execution." +#: templates/debug_toolbar/panels/logging.html:9 +msgid "Message" +msgstr "" -#: templates/client/service/tickets.html:179 -#: templates/client/service/tour.html:340 -#: templates/client/service/translator.html:293 -msgid "" -"Мы, медицинская компания ЮНИКС, уже несколько лет обращаемся в компанию " -"Expomap за услугами переводчиков и переводчиков-гидов по всему миру. " -"Сотрудники компании всегда оперативно реагируют на запросы, очень " -"доброжелательны и приветливы, готовы идти навстречу. Качество работы " -"предоставляемых переводчиков всегда очень высокое, никаких нареканий по их " -"работе от наших сотрудников и клиентов не поступало, только положительные " -"отзывы. Надеемся на такое же приятное сотрудничество и в будущем!" +#: templates/debug_toolbar/panels/logging.html:10 +#: templates/debug_toolbar/panels/staticfiles.html:45 +msgid "Location" msgstr "" -"We at Unix Medical have been making use of Expomap translation and translator-guide " -"services for several years now. The staff always quickly react to requests, are very " -"kind, welcoming, and always eager to help us out. The quality of the services provided " -"by the translators is always top-notch. We've never received any criticism from any of " -"our employees or clients -- only positive feedback. We'll definitely continue " -"working with Expomap in the future" +#: templates/debug_toolbar/panels/logging.html:26 +msgid "No messages logged" +msgstr "" -#: templates/client/service/tickets.html:213 -#: templates/client/service/tour.html:374 -msgid "6 500 руб./ночь" -msgstr "220 usd/day" - -#: templates/client/service/tickets.html:214 -#: templates/client/service/tickets.html:225 -#: templates/client/service/tickets.html:236 -#: templates/client/service/tickets.html:247 -#: templates/client/service/tour.html:375 -#: templates/client/service/tour.html:386 -#: templates/client/service/tour.html:397 -#: templates/client/service/tour.html:408 -msgid "Забронировать" -msgstr "Make a reservation" - -#: templates/client/service/tickets.html:224 -#: templates/client/service/tour.html:385 -msgid "17 800 руб./ночь" -msgstr "340 usd/day" - -#: templates/client/service/tickets.html:235 -#: templates/client/service/tour.html:396 -msgid "8 000 руб./ночь" -msgstr "120 usd/day" - -#: templates/client/service/tickets.html:246 -#: templates/client/service/tour.html:407 -msgid "13 500 руб./ночь" -msgstr "220 usd/day" - -#: templates/client/service/tour.html:7 -msgid "Посещение выставки" -msgstr "Visit Expo" +#: templates/debug_toolbar/panels/profiling.html:5 +msgid "Call" +msgstr "" -#: templates/client/service/tour.html:22 -msgid "" -"Посещение Modeko 2014 откроет для вас новые горизонты развития бизнеса, и мы " -"готовы вам помочь с этим! Организация любой деловой поездки представляет " -"собой индивидуальный тур, кропотливо подобранный под ваши конкретные " -"пожелания" +#: templates/debug_toolbar/panels/profiling.html:6 +msgid "CumTime" msgstr "" -"Visiting Modeko 2014 can open new doors for developing your business, and we can help " -"you in this endeavor! We organize any trip by developing an individual plan designed " -"with extreme attention to detail to suit your every need." -#: templates/client/service/tour.html:24 -msgid "Сервис также включает ряд особенностей" -msgstr "This service possesses several key characteristics" +#: templates/debug_toolbar/panels/profiling.html:7 +#: templates/debug_toolbar/panels/profiling.html:9 +msgid "Per" +msgstr "" -#: templates/client/service/tour.html:27 -msgid "" -"визовая поддержка оказывается только при бронировании отеля. На текущий " -"момент мы можем помочь с визой только клиентам из России (это связано с " -"правилами обработки анкет иностранными консульствами)" +#: templates/debug_toolbar/panels/profiling.html:8 +msgid "TotTime" msgstr "" -"Visa support is only provided when reserving a hotel stay. At the moment, we " -"can only provide visa support for clients from Russia (this is due to the rules " -"set forth by foreign consulates for application submission and processing)" +#: templates/debug_toolbar/panels/profiling.html:10 +msgid "Count" +msgstr "" +#: templates/debug_toolbar/panels/request.html:3 +msgid "View information" +msgstr "" -#: templates/client/service/tour.html:28 -msgid "" -"бронирование отеля осуществляется не ниже 3*, так как мы должны быть " -"уверенными в Вашем комфортном размещении. Также Вам следует учесть, что " -"стоимость проживания в период крупных выставок значительно возрастает из-за " -"спроса (cправочно: для Европы в такие дни номер гостиницы 3-4* может стоить " -"от 150 евро/сутки). На цену размещения значительно влияет место расположения " -"отеля, в частности его близость/удаленность от центра или выставочного " -"комплекса" +#: templates/debug_toolbar/panels/request.html:7 +msgid "View function" msgstr "" -"We reserve only hotels rated three stars and up, since we want to be confident " -"in providing you with comfortable accommodation. Also, keep in mind that the cost " -"of accommodation is usually higher during periods when events take place due to the " -"higher demand (i.e. in Europe, on days corresponding with certain events, rooms in three or four " -"star hotels can be priced starting at 150 Euros per night). The hotel's location substantially " -"affects its pricing. Thus, prices vary based on how close or far a hotel is from " -"downtown, or how close it is to the relevant convention center " +#: templates/debug_toolbar/panels/request.html:10 +msgid "URL name" +msgstr "" -#: templates/client/service/tour.html:29 -msgid "" -"индивидуальный бизнес-тур через туроператора, как правило, обходится дороже, " -"чем самостоятельный заказ через системы онлайн-бронирования (например, " -"отелей - Booking.com). Вы платите за индивидуальный сервис, гарантии и " -"консультационную поддержку до и во время Вашей поездки" +#: templates/debug_toolbar/panels/request.html:24 +msgid "Cookies" msgstr "" -"Individual business tours ordered via tour agencies generally cost more than " -"reserving via online booking systems (i.e. booking.com for hotel reservations). " -"You pay for individual service, assurances/guarantees, and consultations before " -"and during your trip." -#: templates/client/service/tour.html:43 -msgid "Информация о бизнес-туре" -msgstr "Information about business tour" +#: templates/debug_toolbar/panels/request.html:32 +#: templates/debug_toolbar/panels/request.html:58 +#: templates/debug_toolbar/panels/request.html:84 +#: templates/debug_toolbar/panels/request.html:109 +msgid "Variable" +msgstr "" -#: templates/client/service/tour.html:46 -msgid "Даты поездки" +#: templates/debug_toolbar/panels/request.html:46 +msgid "No cookies" msgstr "" -#: templates/client/service/tour.html:51 templates/client/service/tour.html:55 -#: templates/client/service/translator.html:103 -#: templates/client/service/translator.html:107 -msgid "дд.мм.гггг" -msgstr "dd.mm.yyyy" +#: templates/debug_toolbar/panels/request.html:50 +msgid "Session data" +msgstr "" -#: templates/client/service/tour.html:69 -msgid "Условия размещения" -msgstr "Conditions of accommodation" +#: templates/debug_toolbar/panels/request.html:72 +msgid "No session data" +msgstr "" -#: templates/client/service/tour.html:71 -#: templates/client/service/tour.html:102 -#: templates/client/service/tour.html:111 -msgid "Выберите" -msgstr "Select" +#: templates/debug_toolbar/panels/request.html:76 +msgid "GET data" +msgstr "" -#: templates/client/service/tour.html:79 -msgid "Город отправления" -msgstr "City ​​of origin" +#: templates/debug_toolbar/panels/request.html:98 +msgid "No GET data" +msgstr "" -#: templates/client/service/tour.html:86 -msgid "Категория отеля" -msgstr "hotel category" +#: templates/debug_toolbar/panels/request.html:102 +msgid "POST data" +msgstr "" -#: templates/client/service/tour.html:97 -msgid "Расположение отеля" -msgstr "Location of the hotel" +#: templates/debug_toolbar/panels/request.html:123 +msgid "No POST data" +msgstr "" -#: templates/client/service/tour.html:108 -msgid "Примерный бюджет на отель" -msgstr "Approximate budget hotel" +#: templates/debug_toolbar/panels/settings.html:5 +msgid "Setting" +msgstr "" -#: templates/client/service/tour.html:112 -msgid "В сутки" -msgstr "Per day" +#: templates/debug_toolbar/panels/signals.html:5 +msgid "Signal" +msgstr "" -#: templates/client/service/tour.html:113 -msgid "В неделю" -msgstr "Per week" +#: templates/debug_toolbar/panels/signals.html:6 +msgid "Providing" +msgstr "" -#: templates/client/service/tour.html:121 -msgid "Дополнительные сервисы" -msgstr "Additional services" +#: templates/debug_toolbar/panels/signals.html:7 +msgid "Receivers" +msgstr "" -#: templates/client/service/tour.html:125 -msgid "Авиабилеты" -msgstr "Tickets" +#: templates/debug_toolbar/panels/sql.html:7 +#, python-format +msgid "%(num)s query" +msgid_plural "%(num)s queries" +msgstr[0] "" +msgstr[1] "" -#: templates/client/service/tour.html:127 -msgid "Прямой" +#: templates/debug_toolbar/panels/sql.html:18 +msgid "Query" msgstr "" -#: templates/client/service/tour.html:128 -msgid "С пересадкой" -msgstr "With the transfer" - -#: templates/client/service/tour.html:129 -msgid "Бизнес-класс" -msgstr "Business class" +#: templates/debug_toolbar/panels/sql.html:19 +#: templates/debug_toolbar/panels/timer.html:36 +msgid "Timeline" +msgstr "" -#: templates/client/service/tour.html:130 -msgid "Эконом-класс" -msgstr "Econom" +#: templates/debug_toolbar/panels/sql.html:21 +msgid "Action" +msgstr "" -#: templates/client/service/tour.html:135 -msgid "Оформление визы" -msgstr "Visa" +#: templates/debug_toolbar/panels/sql.html:64 +msgid "Connection:" +msgstr "" -#: templates/client/service/tour.html:136 -msgid "Трансфер" +#: templates/debug_toolbar/panels/sql.html:66 +msgid "Isolation level:" msgstr "" -#: templates/client/service/tour.html:137 -msgid "Билеты на выставку (приглашения)" -msgstr "Expo Tickets" +#: templates/debug_toolbar/panels/sql.html:69 +msgid "Transaction status:" +msgstr "" -#: templates/client/service/tour.html:141 -msgid "Услуги переводчика" -msgstr "Translator Services" +#: templates/debug_toolbar/panels/sql.html:83 +msgid "(unknown)" +msgstr "" -#: templates/client/service/tour.html:145 -#: templates/client/service/translator.html:45 -msgid "Знание языков" -msgstr "languages" +#: templates/debug_toolbar/panels/sql.html:92 +msgid "No SQL queries were recorded during this request." +msgstr "" -#: templates/client/service/tour.html:151 -#: templates/client/service/translator.html:52 -msgid "Русский" +#: templates/debug_toolbar/panels/sql_explain.html:4 +msgid "SQL explained" msgstr "" -#: templates/client/service/tour.html:152 -#: templates/client/service/translator.html:53 -msgid "Английский" +#: templates/debug_toolbar/panels/sql_explain.html:9 +#: templates/debug_toolbar/panels/sql_profile.html:10 +#: templates/debug_toolbar/panels/sql_select.html:9 +msgid "Executed SQL" msgstr "" -#: templates/client/service/tour.html:153 -#: templates/client/service/translator.html:54 -msgid "Немецкий" +#: templates/debug_toolbar/panels/sql_explain.html:13 +#: templates/debug_toolbar/panels/sql_profile.html:14 +#: templates/debug_toolbar/panels/sql_select.html:13 +msgid "Database" msgstr "" -#: templates/client/service/tour.html:154 -#: templates/client/service/translator.html:55 -msgid "Французкий" +#: templates/debug_toolbar/panels/sql_profile.html:4 +msgid "SQL profiled" msgstr "" -#: templates/client/service/tour.html:155 -#: templates/client/service/translator.html:56 -msgid "Испанский" +#: templates/debug_toolbar/panels/sql_profile.html:37 +msgid "Error" msgstr "" -#: templates/client/service/tour.html:156 -#: templates/client/service/translator.html:57 -msgid "Португальский" +#: templates/debug_toolbar/panels/sql_select.html:4 +msgid "SQL selected" msgstr "" -#: templates/client/service/tour.html:157 -#: templates/client/service/translator.html:58 -msgid "Итальнский" +#: templates/debug_toolbar/panels/sql_select.html:36 +msgid "Empty set" msgstr "" -#: templates/client/service/tour.html:158 -#: templates/client/service/translator.html:59 -msgid "Шведский" +#: templates/debug_toolbar/panels/staticfiles.html:4 +msgid "Static file path" +msgid_plural "Static file paths" +msgstr[0] "" +msgstr[1] "" + +#: templates/debug_toolbar/panels/staticfiles.html:8 +#, python-format +msgid "(prefix %(prefix)s)" msgstr "" -#: templates/client/service/tour.html:184 -msgid "Занятость" +#: templates/debug_toolbar/panels/staticfiles.html:12 +#: templates/debug_toolbar/panels/staticfiles.html:23 +#: templates/debug_toolbar/panels/staticfiles.html:35 +#: templates/debug_toolbar/panels/templates.html:10 +#: templates/debug_toolbar/panels/templates.html:28 +#: templates/debug_toolbar/panels/templates.html:43 +msgid "None" msgstr "" -#: templates/client/service/tour.html:186 -#: templates/client/service/translator.html:89 -msgid "дней" +#: templates/debug_toolbar/panels/staticfiles.html:15 +msgid "Static file app" +msgid_plural "Static file apps" +msgstr[0] "" +msgstr[1] "" + +#: templates/debug_toolbar/panels/staticfiles.html:26 +msgid "Static file" +msgid_plural "Static files" +msgstr[0] "" +msgstr[1] "" + +#: templates/debug_toolbar/panels/staticfiles.html:40 +#, python-format +msgid "%(payload_count)s file" +msgid_plural "%(payload_count)s files" +msgstr[0] "" +msgstr[1] "" + +#: templates/debug_toolbar/panels/staticfiles.html:44 +msgid "Path" msgstr "" -#: templates/client/service/tour.html:190 -#: templates/client/service/translator.html:93 -msgid "часов в день" -msgstr "hour per day" +#: templates/debug_toolbar/panels/template_source.html:4 +msgid "Template source:" +msgstr "" -#: templates/client/service/tour.html:198 -msgid "excursion program" -msgstr "Business Program" +#: templates/debug_toolbar/panels/templates.html:2 +msgid "Template path" +msgid_plural "Template paths" +msgstr[0] "" +msgstr[1] "" -#: templates/client/service/tour.html:205 -msgid "Пожелания" -msgstr "wishes" +#: templates/debug_toolbar/panels/templates.html:13 +msgid "Template" +msgid_plural "Templates" +msgstr[0] "" +msgstr[1] "" -#: templates/client/service/tour.html:251 -#: templates/client/service/tour.html:260 -msgid "Запрос туроператору" -msgstr "Request tour operator" +#: templates/debug_toolbar/panels/templates.html:21 +#: templates/debug_toolbar/panels/templates.html:37 +msgid "Toggle context" +msgstr "" -#: templates/client/service/tour.html:271 -msgid "Или организуйте поездку самостоятельно" -msgstr "Or organize the trip yourself" +#: templates/debug_toolbar/panels/templates.html:31 +msgid "Context processor" +msgid_plural "Context processors" +msgstr[0] "" +msgstr[1] "" -#: templates/client/service/translator.html:7 -msgid "Переводчик" -msgstr "Translator" +#: templates/debug_toolbar/panels/timer.html:2 +msgid "Resource usage" +msgstr "" -#: templates/client/service/translator.html:21 -msgid "Основные преимущества сотрудничества с нами" -msgstr "The primary advantages of our services are" +#: templates/debug_toolbar/panels/timer.html:10 +msgid "Resource" +msgstr "" -#: templates/client/service/translator.html:24 -msgid "" -"оплата только за часы работы переводчика (никаких расходов на перелет, " -"проживание, питание и пр.)" +#: templates/debug_toolbar/panels/timer.html:26 +msgid "Browser timing" msgstr "" -"Pay only for the hours the translator will actually be working for " -"you (no need to cover transportation, accommodation, or food expenses)" -#: templates/client/service/translator.html:25 -msgid "знание местных языковых диалектов и обычаев ведения деловых переговоров" +#: templates/debug_toolbar/panels/timer.html:35 +msgid "Timing attribute" msgstr "" -"Rest assured that your translator will know the local dialects " -"and be aware of the methodology behind business negotiations" -#: templates/client/service/translator.html:26 -msgid "" -"отличная ориентация по выставочному комплексу, а также по городу прохождения " -"выставки" +#: templates/debug_toolbar/panels/timer.html:37 +msgid "Milliseconds since navigation start (+length)" msgstr "" -"Your translator will have no issues finding what you need both " -"at the convention center and throughout the city where the event is being held" -#: templates/client/service/translator.html:40 -msgid "Информация о переводе" -msgstr "Information about translations" +#: templates/debug_toolbar/panels/versions.html:5 +msgid "Name" +msgstr "" -#: templates/client/service/translator.html:98 -msgid "Даты работы" -msgstr "Work date" +#: templates/debug_toolbar/panels/versions.html:6 +msgid "Version" +msgstr "" -#: templates/client/service/translator.html:155 -#: templates/client/service/translator.html:173 -msgid "от 80 € / день" -msgstr "from 80 € / day" +#: templates/debug_toolbar/redirect.html:8 +msgid "Location:" +msgstr "" -#: templates/client/service/translator.html:180 +#: templates/debug_toolbar/redirect.html:10 msgid "" -"Для получения подробной информации о стоимости услуг специализированного " -"переводчика, пожалуйста, отправьте предварительную заявку" +"The Django Debug Toolbar has intercepted a redirect to the above URL for " +"debug viewing purposes. You can click the above link to continue with the " +"redirect as normal." msgstr "" -"To request detailed information regarding specialized translator services, " -"please submit a preliminary request" -#: templates/client/service/translator.html:189 -msgid "Наши специалисты" -msgstr "Our specialists" +#: templates/registration/activation_complete.html:4 +#, fuzzy +#| msgid "Информация о переводе" +msgid "Активация завершена" +msgstr "Information about translations" -#: templates/client/service/translator.html:202 -msgid "английский, немецкий" -msgstr "engslish, dutch" +#: templates/registration/activation_complete.html:15 +#, fuzzy +#| msgid "Предварительная регистрация" +msgid "Поздравляем! Вы успешно прошли регистрацию!" +msgstr "Preliminary Registration" -#: templates/client/service/translator.html:216 -#: templates/client/service/translator.html:230 -msgid "английский" -msgstr "engslish" +#: templates/registration/activation_email_subject.txt:2 +#, fuzzy +#| msgid "Активная" +msgid "Активируйте ваш" +msgstr "Active" -#: templates/client/service/translator.html:241 -msgid "Все переводчики" -msgstr "All Translators" +#: templates/registration/activation_email_subject.txt:2 +msgid "акаунт - вы имеете" +msgstr "" + +#: templates/registration/activation_email_subject.txt:2 +#, fuzzy +#| msgid "Имя" +msgid "дня" +msgstr "First name" #: templates/registration/password_change_done.html:4 #: templates/registration/password_change_done.html:8 @@ -3033,5 +5723,132 @@ msgstr "" msgid "Reset my password" msgstr "" +#: theme/models.py:26 +#, fuzzy +#| msgid "Тематика: " +msgid "Тематики:" +msgstr "Theme: " + +#~ msgid "Программа" +#~ msgstr "Program" + +#~ msgid "Ваш Пароль" +#~ msgstr "Your password" + +#~ msgid "за период до 1 года (с момента размещения до начала события)" +#~ msgstr "" +#~ "for a period of up to 1 year (from initial publishing to date of event)" + +#~ msgid "получать анонсЫ" +#~ msgstr "Receive Announcements" + +#~ msgid "сервис" +#~ msgstr "Services" + +#~ msgid "для партнеров" +#~ msgstr "For Partners" + +#~ msgid "он-лайн" +#~ msgstr "Online" + +#~ msgid "Возникли трудности?" +#~ msgstr "Having trouble?" + +#~ msgid "Наши специалисты с" +#~ msgstr "Our support specialists" + +#~ msgid "радостью помогут вам!" +#~ msgstr "are eager to help you!" + +#~ msgid "Хостесс, модели, стендистки" +#~ msgstr "Hostesses, Models, Booth Attendants" + +#~ msgid "Билеты на выставки" +#~ msgstr "Expo Tickets" + +#~ msgid "Сбросить выбранные регионы" +#~ msgstr "Reset selected regions" + +#~ msgid "" +#~ "

      За организацию Вашего участия в зарубежной выставке наша компания " +#~ "берет дополнительный %% от контракта с организатором. Его величина " +#~ "варьируется от 5 до 15%% и зависит от метража арендуемой площади и " +#~ "необходимых дополнительных услуг, которые определяют общую трудоемкость " +#~ "процесса и состав специалистов.

      " +#~ msgstr "" +#~ "

      Our fee for organizing your participation in a foreign expo is " +#~ "calculated as a an additional percent ontop of the total participation " +#~ "fee set forth by the event organizer in the contract. The fee varies " +#~ "between 5% and 15% and depends on the measurements of the rented area as " +#~ "well as any additional services required (which define the overall effort " +#~ "and staff composition required).

      " + +#~ msgid "Бизнес-тур «под ключ»" +#~ msgstr "Remote" + +#~ msgid "Регистрация 1 450" +#~ msgstr "Register 1 450" + +#~ msgid "руб" +#~ msgstr "usd" + +#~ msgid "" +#~ "Мы заказывали впервые услугу \"Заочное посещение\" для выставки Photokina " +#~ "в Германии. Остались очень довольны — получили каталоги и визитки " +#~ "практически о 100 интересующих нас компаниях. Большое Спасибо сотрудникам " +#~ "SBW за оперативность и компетентность!" +#~ msgstr "" +#~ "We ordered an absentee visit for Photokina in Germany. The results were " +#~ "great. Received catalogs andbusiness cards from just about 100 relevant " +#~ "companies. Thank you for the efficiency and competent execution." + +#~ msgid "" +#~ "Мы, медицинская компания ЮНИКС, уже несколько лет обращаемся в компанию " +#~ "Expomap за услугами переводчиков и переводчиков-гидов по всему миру. " +#~ "Сотрудники компании всегда оперативно реагируют на запросы, очень " +#~ "доброжелательны и приветливы, готовы идти навстречу. Качество работы " +#~ "предоставляемых переводчиков всегда очень высокое, никаких нареканий по " +#~ "их работе от наших сотрудников и клиентов не поступало, только " +#~ "положительные отзывы. Надеемся на такое же приятное сотрудничество и в " +#~ "будущем!" +#~ msgstr "" +#~ "We at Unix Medical have been making use of Expomap translation and " +#~ "translator-guide services for several years now. The staff always quickly " +#~ "react to requests, are very kind, welcoming, and always eager to help us " +#~ "out. The quality of the services provided by the translators is always " +#~ "top-notch. We've never received any criticism from any of our employees " +#~ "or clients -- only positive feedback. We'll definitely continue working " +#~ "with Expomap in the future" + +#~ msgid "6 500 руб./ночь" +#~ msgstr "220 usd/day" + +#~ msgid "Забронировать" +#~ msgstr "Make a reservation" + +#~ msgid "17 800 руб./ночь" +#~ msgstr "340 usd/day" + +#~ msgid "8 000 руб./ночь" +#~ msgstr "120 usd/day" + +#~ msgid "13 500 руб./ночь" +#~ msgstr "220 usd/day" + +#~ msgid "excursion program" +#~ msgstr "Business Program" + +#~ msgid "Или организуйте поездку самостоятельно" +#~ msgstr "Or organize the trip yourself" + +#~ msgid "Переводчик" +#~ msgstr "Translator" + +#~ msgid "английский, немецкий" +#~ msgstr "engslish, dutch" + +#~ msgid "английский" +#~ msgstr "engslish" + #~ msgid "Выберите страну из списка" #~ msgstr "Select a country" diff --git a/password_reset/locale/en/LC_MESSAGES/django.po b/password_reset/locale/en/LC_MESSAGES/django.po new file mode 100644 index 00000000..ec6d3d10 --- /dev/null +++ b/password_reset/locale/en/LC_MESSAGES/django.po @@ -0,0 +1,122 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2015-09-08 13:44+0300\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: password_reset/forms.py:14 +msgid "Sorry, this user doesn't exist." +msgstr "" + +#: password_reset/forms.py:31 +msgid "Username" +msgstr "" + +#: password_reset/forms.py:32 +msgid "Email" +msgstr "" + +#: password_reset/forms.py:33 +msgid "Для восстановления пароля укажите email, который Вы регистрировали" +msgstr "" + +#: password_reset/forms.py:83 +msgid "Unable to find user." +msgstr "" + +#: password_reset/forms.py:89 +msgid "New password" +msgstr "" + +#: password_reset/forms.py:93 +msgid "New password (confirm)" +msgstr "" + +#: password_reset/forms.py:98 +msgid "The two passwords didn't match." +msgstr "" + +#: password_reset/templates/password_reset/recovery_done.html:3 +msgid "New password set" +msgstr "" + +#: password_reset/templates/password_reset/recovery_done.html:6 +msgid "" +"Your password has successfully been reset. You can use it right now on the " +"login page." +msgstr "" + +#: password_reset/templates/password_reset/recovery_email.txt:1 +#, python-format +msgid "Dear %(username)s," +msgstr "" + +#: password_reset/templates/password_reset/recovery_email.txt:3 +#, python-format +msgid "" +"You -- or someone pretending to be you -- has requested a password reset on " +"%(domain)s." +msgstr "" + +#: password_reset/templates/password_reset/recovery_email.txt:5 +msgid "You can set your new password by following this link:" +msgstr "" + +#: password_reset/templates/password_reset/recovery_email.txt:9 +msgid "" +"If you don't want to reset your password, simply ignore this email and it " +"will stay unchanged." +msgstr "" + +#: password_reset/templates/password_reset/recovery_email_subject.txt:1 +#, python-format +msgid "Password recovery on %(domain)s" +msgstr "" + +#: password_reset/templates/password_reset/recovery_form.html:5 +msgid "Password recovery" +msgstr "" + +#: password_reset/templates/password_reset/recovery_form.html:10 +msgid "Recover my password" +msgstr "" + +#: password_reset/templates/password_reset/reset.html:5 +#, python-format +msgid "" +"Sorry, this password reset link is invalid. You can still request a new one." +msgstr "" + +#: password_reset/templates/password_reset/reset.html:7 +#, python-format +msgid "Hi, %(username)s. Please choose your new password." +msgstr "" + +#: password_reset/templates/password_reset/reset.html:11 +msgid "Set new password" +msgstr "" + +#: password_reset/templates/password_reset/reset_sent.html:4 +msgid "Password recovery sent" +msgstr "" + +#: password_reset/templates/password_reset/reset_sent.html:7 +#, python-format +msgid "" +"An email was sent to %(email)s %(ago)s ago. Use the link in " +"it to set a new password." +msgstr "" diff --git a/photologue/locale/en/LC_MESSAGES/django.po b/photologue/locale/en/LC_MESSAGES/django.po index a8029d7e..35d2d11d 100644 --- a/photologue/locale/en/LC_MESSAGES/django.po +++ b/photologue/locale/en/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Photologue\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-08-25 09:56+0000\n" +"POT-Creation-Date: 2015-09-08 13:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,171 +17,91 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: admin.py:67 -msgid "The following photo does not belong to the same site(s)" -msgid_plural "The following photos do not belong to the same site(s)" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:79 -#, python-format -msgid "The gallery has been successfully added to %(site)s" -msgid_plural "The galleries have been successfully added to %(site)s" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:86 -msgid "Add selected galleries from the current site" -msgstr "" - -#: admin.py:92 -#, python-format -msgid "The gallery has been successfully removed from %(site)s" -msgid_plural "" -"The selected galleries have been successfully removed from %(site)s" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:99 -msgid "Remove selected galleries from the current site" -msgstr "" - -#: admin.py:106 -#, python-format -msgid "" -"All photos in gallery %(galleries)s have been successfully added to %(site)s" -msgid_plural "" -"All photos in galleries %(galleries)s have been successfully added to " -"%(site)s" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:117 -msgid "Add all photos of selected galleries to the current site" -msgstr "" - -#: admin.py:124 -#, python-format -msgid "" -"All photos in gallery %(galleries)s have been successfully removed from " -"%(site)s" -msgid_plural "" -"All photos in galleries %(galleries)s have been successfully removed from " -"%(site)s" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:135 -msgid "Remove all photos in selected galleries from the current site" -msgstr "" - -#: admin.py:186 -#, python-format -msgid "The photo has been successfully added to %(site)s" -msgid_plural "The selected photos have been successfully added to %(site)s" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:193 -msgid "Add selected photos to the current site" -msgstr "" - -#: admin.py:199 -#, python-format -msgid "The photo has been successfully removed from %(site)s" -msgid_plural "The selected photos have been successfully removed from %(site)s" -msgstr[0] "" -msgstr[1] "" - -#: admin.py:206 -msgid "Remove selected photos from the current site" -msgstr "" - -#: models.py:56 +#: photologue/models.py:59 msgid "Separate tags with spaces, put quotes around multiple-word tags." msgstr "" -#: models.py:67 +#: photologue/models.py:70 msgid "Django-tagging was not found, tags will be treated as plain text." msgstr "" -#: models.py:115 +#: photologue/models.py:121 msgid "Very Low" msgstr "" -#: models.py:116 +#: photologue/models.py:122 msgid "Low" msgstr "" -#: models.py:117 +#: photologue/models.py:123 msgid "Medium-Low" msgstr "" -#: models.py:118 +#: photologue/models.py:124 msgid "Medium" msgstr "" -#: models.py:119 +#: photologue/models.py:125 msgid "Medium-High" msgstr "" -#: models.py:120 +#: photologue/models.py:126 msgid "High" msgstr "" -#: models.py:121 +#: photologue/models.py:127 msgid "Very High" msgstr "" -#: models.py:126 +#: photologue/models.py:132 msgid "Top" msgstr "" -#: models.py:127 +#: photologue/models.py:133 msgid "Right" msgstr "" -#: models.py:128 +#: photologue/models.py:134 msgid "Bottom" msgstr "" -#: models.py:129 +#: photologue/models.py:135 msgid "Left" msgstr "" -#: models.py:130 +#: photologue/models.py:136 msgid "Center (Default)" msgstr "" -#: models.py:134 +#: photologue/models.py:140 msgid "Flip left to right" msgstr "" -#: models.py:135 +#: photologue/models.py:141 msgid "Flip top to bottom" msgstr "" -#: models.py:136 +#: photologue/models.py:142 msgid "Rotate 90 degrees counter-clockwise" msgstr "" -#: models.py:137 +#: photologue/models.py:143 msgid "Rotate 90 degrees clockwise" msgstr "" -#: models.py:138 +#: photologue/models.py:144 msgid "Rotate 180 degrees" msgstr "" -#: models.py:142 +#: photologue/models.py:148 msgid "Tile" msgstr "" -#: models.py:143 +#: photologue/models.py:149 msgid "Scale" msgstr "" -#: models.py:154 +#: photologue/models.py:160 #, python-format msgid "" "Chain multiple filters using the following pattern \"FILTER_ONE->FILTER_TWO-" @@ -189,408 +109,505 @@ msgid "" "filters are available: %s." msgstr "" -#: models.py:159 -msgid "date published" +#: photologue/models.py:174 photologue/models.py:301 photologue/models.py:696 +msgid "title" msgstr "" -#: models.py:161 models.py:250 models.py:646 -msgid "title" +#: photologue/models.py:175 photologue/models.py:316 photologue/models.py:815 +msgid "description" msgstr "" -#: models.py:164 -msgid "title slug" +#: photologue/models.py:177 +msgid "date published" msgstr "" -#: models.py:166 models.py:651 -msgid "A \"slug\" is a unique URL-friendly title for an object." +#: photologue/models.py:180 +msgid "title slug" msgstr "" -#: models.py:167 models.py:263 models.py:730 -msgid "description" +#: photologue/models.py:182 photologue/models.py:704 +msgid "A \"slug\" is a unique URL-friendly title for an object." msgstr "" -#: models.py:169 models.py:266 models.py:656 +#: photologue/models.py:185 photologue/models.py:319 photologue/models.py:709 msgid "is public" msgstr "" -#: models.py:171 +#: photologue/models.py:187 msgid "Public galleries will be displayed in the default views." msgstr "" -#: models.py:175 models.py:669 +#: photologue/models.py:191 photologue/models.py:724 msgid "photos" msgstr "" -#: models.py:178 models.py:273 models.py:659 +#: photologue/models.py:197 photologue/models.py:326 photologue/models.py:712 msgid "tags" msgstr "" -#: models.py:179 models.py:660 +#: photologue/models.py:198 photologue/models.py:713 msgid "sites" msgstr "" -#: models.py:187 models.py:255 +#: photologue/models.py:206 photologue/models.py:308 msgid "gallery" msgstr "" -#: models.py:188 +#: photologue/models.py:207 msgid "galleries" msgstr "" -#: models.py:225 +#: photologue/models.py:276 msgid "count" msgstr "" -#: models.py:247 +#: photologue/models.py:298 msgid "images file (.zip)" msgstr "" -#: models.py:249 +#: photologue/models.py:300 msgid "Select a .zip file of images to upload into a new Gallery." msgstr "" -#: models.py:252 +#: photologue/models.py:305 msgid "" "All uploaded photos will be given a title made up of this title + a " "sequential number." msgstr "" -#: models.py:258 +#: photologue/models.py:311 msgid "" "Select a gallery to add these images to. Leave this empty to create a new " "gallery from the supplied title." msgstr "" -#: models.py:260 models.py:652 +#: photologue/models.py:313 photologue/models.py:698 msgid "caption" msgstr "" -#: models.py:262 +#: photologue/models.py:315 msgid "Caption will be added to all photos." msgstr "" -#: models.py:265 +#: photologue/models.py:318 msgid "A description of this Gallery." msgstr "" -#: models.py:268 +#: photologue/models.py:321 msgid "" "Uncheck this to make the uploaded gallery and included photographs private." msgstr "" -#: models.py:276 +#: photologue/models.py:329 msgid "gallery upload" msgstr "" -#: models.py:277 +#: photologue/models.py:330 msgid "gallery uploads" msgstr "" -#: models.py:289 +#: photologue/models.py:342 msgid "A gallery with that title already exists." msgstr "" -#: models.py:293 +#: photologue/models.py:346 msgid "Select an existing gallery or enter a new gallery name." msgstr "" -#: models.py:329 +#: photologue/models.py:382 +#, python-brace-format msgid "" "Ignoring file \"{filename}\" as it is in a subfolder; all images should be " "in the top folder of the zip." msgstr "" -#: models.py:349 -#, python-format +#: photologue/models.py:402 +#, python-format, python-brace-format msgid "" "Did not create photo \"%(filename)s\" with slug \"{1}\" as a photo with that " "slug already exists." msgstr "" -#: models.py:375 +#: photologue/models.py:428 +#, python-brace-format msgid "Could not process file \"{0}\" in the .zip archive." msgstr "" -#: models.py:392 models.py:863 +#: photologue/models.py:445 photologue/models.py:949 msgid "image" msgstr "" -#: models.py:395 +#: photologue/models.py:448 msgid "date taken" msgstr "" -#: models.py:399 +#: photologue/models.py:452 msgid "view count" msgstr "" -#: models.py:402 +#: photologue/models.py:455 msgid "crop from" msgstr "" -#: models.py:411 +#: photologue/models.py:464 msgid "effect" msgstr "" -#: models.py:429 +#: photologue/models.py:488 msgid "An \"admin_thumbnail\" photo size has not been defined." msgstr "" -#: models.py:437 +#: photologue/models.py:496 msgid "Thumbnail" msgstr "" -#: models.py:649 +#: photologue/models.py:702 msgid "slug" msgstr "" -#: models.py:654 +#: photologue/models.py:707 msgid "date added" msgstr "" -#: models.py:658 +#: photologue/models.py:711 msgid "Public photographs will be displayed in the default views." msgstr "" -#: models.py:668 +#: photologue/models.py:723 msgid "photo" msgstr "" -#: models.py:727 models.py:889 +#: photologue/models.py:812 photologue/models.py:981 msgid "name" msgstr "" -#: models.py:801 +#: photologue/models.py:887 msgid "rotate or flip" msgstr "" -#: models.py:805 models.py:827 +#: photologue/models.py:891 photologue/models.py:913 msgid "color" msgstr "" -#: models.py:807 +#: photologue/models.py:893 msgid "" "A factor of 0.0 gives a black and white image, a factor of 1.0 gives the " "original image." msgstr "" -#: models.py:808 +#: photologue/models.py:894 msgid "brightness" msgstr "" -#: models.py:810 +#: photologue/models.py:896 msgid "" "A factor of 0.0 gives a black image, a factor of 1.0 gives the original " "image." msgstr "" -#: models.py:811 +#: photologue/models.py:897 msgid "contrast" msgstr "" -#: models.py:813 +#: photologue/models.py:899 msgid "" "A factor of 0.0 gives a solid grey image, a factor of 1.0 gives the original " "image." msgstr "" -#: models.py:814 +#: photologue/models.py:900 msgid "sharpness" msgstr "" -#: models.py:816 +#: photologue/models.py:902 msgid "" "A factor of 0.0 gives a blurred image, a factor of 1.0 gives the original " "image." msgstr "" -#: models.py:817 +#: photologue/models.py:903 msgid "filters" msgstr "" -#: models.py:821 +#: photologue/models.py:907 msgid "size" msgstr "" -#: models.py:823 +#: photologue/models.py:909 msgid "" "The height of the reflection as a percentage of the orignal image. A factor " "of 0.0 adds no reflection, a factor of 1.0 adds a reflection equal to the " "height of the orignal image." msgstr "" -#: models.py:824 +#: photologue/models.py:910 msgid "strength" msgstr "" -#: models.py:826 +#: photologue/models.py:912 msgid "The initial opacity of the reflection gradient." msgstr "" -#: models.py:830 +#: photologue/models.py:916 msgid "" "The background color of the reflection gradient. Set this to match the " "background color of your page." msgstr "" -#: models.py:833 models.py:924 +#: photologue/models.py:919 photologue/models.py:1016 msgid "photo effect" msgstr "" -#: models.py:834 +#: photologue/models.py:920 msgid "photo effects" msgstr "" -#: models.py:865 +#: photologue/models.py:951 msgid "style" msgstr "" -#: models.py:869 +#: photologue/models.py:955 msgid "opacity" msgstr "" -#: models.py:871 +#: photologue/models.py:957 msgid "The opacity of the overlay." msgstr "" -#: models.py:874 +#: photologue/models.py:960 msgid "watermark" msgstr "" -#: models.py:875 +#: photologue/models.py:961 msgid "watermarks" msgstr "" -#: models.py:893 +#: photologue/models.py:985 msgid "" "Photo size name should contain only letters, numbers and underscores. " "Examples: \"thumbnail\", \"display\", \"small\", \"main_page_widget\"." msgstr "" -#: models.py:898 +#: photologue/models.py:990 msgid "width" msgstr "" -#: models.py:900 +#: photologue/models.py:992 msgid "" "If width is set to \"0\" the image will be scaled to the supplied height." msgstr "" -#: models.py:901 +#: photologue/models.py:993 msgid "height" msgstr "" -#: models.py:903 +#: photologue/models.py:995 msgid "" "If height is set to \"0\" the image will be scaled to the supplied width" msgstr "" -#: models.py:904 +#: photologue/models.py:996 msgid "quality" msgstr "" -#: models.py:907 +#: photologue/models.py:999 msgid "JPEG image quality." msgstr "" -#: models.py:908 +#: photologue/models.py:1000 msgid "upscale images?" msgstr "" -#: models.py:910 +#: photologue/models.py:1002 msgid "" "If selected the image will be scaled up if necessary to fit the supplied " "dimensions. Cropped sizes will be upscaled regardless of this setting." msgstr "" -#: models.py:911 +#: photologue/models.py:1003 msgid "crop to fit?" msgstr "" -#: models.py:913 +#: photologue/models.py:1005 msgid "" "If selected the image will be scaled and cropped to fit the supplied " "dimensions." msgstr "" -#: models.py:914 +#: photologue/models.py:1006 msgid "pre-cache?" msgstr "" -#: models.py:916 +#: photologue/models.py:1008 msgid "If selected this photo size will be pre-cached as photos are added." msgstr "" -#: models.py:917 +#: photologue/models.py:1009 msgid "increment view count?" msgstr "" -#: models.py:919 +#: photologue/models.py:1011 msgid "" "If selected the image's \"view_count\" will be incremented when this photo " "size is displayed." msgstr "" -#: models.py:929 +#: photologue/models.py:1021 msgid "watermark image" msgstr "" -#: models.py:933 +#: photologue/models.py:1025 msgid "photo size" msgstr "" -#: models.py:934 +#: photologue/models.py:1026 msgid "photo sizes" msgstr "" -#: models.py:951 +#: photologue/models.py:1043 msgid "Can only crop photos if both width and height dimensions are set." msgstr "" -#: contrib/bootstrap/templates/photologue/gallery_archive.html:5 -#: contrib/bootstrap/templates/photologue/gallery_archive.html:11 +#: photologue/templates/photologue/gallery_archive.html:4 +#: photologue/templates/photologue/gallery_archive.html:9 msgid "Latest Photo Galleries" msgstr "" -#: contrib/bootstrap/templates/photologue/gallery_archive.html:20 -#: contrib/bootstrap/templates/photologue/gallery_detail.html:12 -#: contrib/bootstrap/templates/photologue/gallery_list.html:20 -#: contrib/bootstrap/templates/photologue/photo_detail.html:13 -msgid "Published" +#: photologue/templates/photologue/gallery_archive.html:14 +#: photologue/templates/photologue/photo_archive.html:16 +msgid "Filter by year" msgstr "" -#: contrib/bootstrap/templates/photologue/gallery_archive.html:31 -#: contrib/bootstrap/templates/photologue/gallery_list.html:31 +#: photologue/templates/photologue/gallery_archive.html:30 +#: photologue/templates/photologue/gallery_list.html:30 msgid "No galleries were found" msgstr "" -#: contrib/bootstrap/templates/photologue/gallery_archive.html:36 -#: contrib/bootstrap/templates/photologue/gallery_detail.html:21 +#: photologue/templates/photologue/gallery_archive_day.html:4 +#: photologue/templates/photologue/gallery_archive_day.html:8 +#, python-format +msgid "Galleries for %(show_day)s" +msgstr "" + +#: photologue/templates/photologue/gallery_archive_day.html:15 +#: photologue/templates/photologue/gallery_archive_month.html:30 +#: photologue/templates/photologue/gallery_archive_year.html:30 +msgid "No galleries were found." +msgstr "" + +#: photologue/templates/photologue/gallery_archive_day.html:19 +msgid "View all galleries for month" +msgstr "" + +#: photologue/templates/photologue/gallery_archive_month.html:4 +#: photologue/templates/photologue/gallery_archive_month.html:9 +#, python-format +msgid "Galleries for %(show_month)s" +msgstr "" + +#: photologue/templates/photologue/gallery_archive_month.html:14 +#: photologue/templates/photologue/photo_archive_month.html:14 +msgid "Filter by day" +msgstr "" + +#: photologue/templates/photologue/gallery_archive_month.html:34 +msgid "View all galleries for year" +msgstr "" + +#: photologue/templates/photologue/gallery_archive_year.html:4 +#: photologue/templates/photologue/gallery_archive_year.html:9 +#, python-format +msgid "Galleries for %(show_year)s" +msgstr "" + +#: photologue/templates/photologue/gallery_archive_year.html:14 +#: photologue/templates/photologue/photo_archive_year.html:15 +msgid "Filter by month" +msgstr "" + +#: photologue/templates/photologue/gallery_archive_year.html:34 +#: photologue/templates/photologue/gallery_detail.html:20 msgid "View all galleries" msgstr "" -#: contrib/bootstrap/templates/photologue/gallery_list.html:5 -#: contrib/bootstrap/templates/photologue/gallery_list.html:11 +#: photologue/templates/photologue/gallery_detail.html:11 +#: photologue/templates/photologue/gallery_list.html:19 +#: photologue/templates/photologue/includes/gallery_sample.html:8 +#: photologue/templates/photologue/photo_detail.html:13 +msgid "Published" +msgstr "" + +#: photologue/templates/photologue/gallery_list.html:4 +#: photologue/templates/photologue/gallery_list.html:10 msgid "All Galleries" msgstr "" -#: contrib/bootstrap/templates/photologue/gallery_list.html:37 -#: contrib/bootstrap/templates/photologue/gallery_list.html:39 +#: photologue/templates/photologue/includes/paginator.html:5 +#: photologue/templates/photologue/includes/paginator.html:7 msgid "Previous" msgstr "" -#: contrib/bootstrap/templates/photologue/gallery_list.html:42 +#: photologue/templates/photologue/includes/paginator.html:10 #, python-format msgid "" "\n" -"\t\t\t\t page %(page_number)s of %(total_pages)s\n" -"\t\t\t\t" +"\t\t\t page %(page_number)s of %(total_pages)s\n" +"\t\t\t" msgstr "" -#: contrib/bootstrap/templates/photologue/gallery_list.html:47 -#: contrib/bootstrap/templates/photologue/gallery_list.html:49 +#: photologue/templates/photologue/includes/paginator.html:15 +#: photologue/templates/photologue/includes/paginator.html:17 msgid "Next" msgstr "" -#: contrib/bootstrap/templates/photologue/photo_detail.html:21 +#: photologue/templates/photologue/photo_archive.html:4 +#: photologue/templates/photologue/photo_archive.html:10 +msgid "Latest Photos" +msgstr "" + +#: photologue/templates/photologue/photo_archive.html:36 +#: photologue/templates/photologue/photo_archive_day.html:19 +#: photologue/templates/photologue/photo_archive_month.html:34 +#: photologue/templates/photologue/photo_archive_year.html:35 +#: photologue/templates/photologue/photo_list.html:23 +msgid "No photos were found" +msgstr "" + +#: photologue/templates/photologue/photo_archive_day.html:4 +#: photologue/templates/photologue/photo_archive_day.html:8 +#, python-format +msgid "Photos for %(show_day)s" +msgstr "" + +#: photologue/templates/photologue/photo_archive_day.html:23 +msgid "View all photos for month" +msgstr "" + +#: photologue/templates/photologue/photo_archive_month.html:4 +#: photologue/templates/photologue/photo_archive_month.html:9 +#, python-format +msgid "Photos for %(show_month)s" +msgstr "" + +#: photologue/templates/photologue/photo_archive_month.html:38 +msgid "View all photos for year" +msgstr "" + +#: photologue/templates/photologue/photo_archive_year.html:4 +#: photologue/templates/photologue/photo_archive_year.html:10 +#, python-format +msgid "Photos for %(show_year)s" +msgstr "" + +#: photologue/templates/photologue/photo_archive_year.html:39 +msgid "View all photos" +msgstr "" + +#: photologue/templates/photologue/photo_detail.html:21 msgid "This photo is found in the following galleries" msgstr "" + +#: photologue/templates/photologue/photo_list.html:4 +#: photologue/templates/photologue/photo_list.html:10 +msgid "All Photos" +msgstr "" diff --git a/registration/locale/en/LC_MESSAGES/django.po b/registration/locale/en/LC_MESSAGES/django.po index e357a4ce..2c065815 100644 --- a/registration/locale/en/LC_MESSAGES/django.po +++ b/registration/locale/en/LC_MESSAGES/django.po @@ -8,82 +8,107 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-10-12 14:09-0500\n" +"POT-Creation-Date: 2015-09-08 13:44+0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" +"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: admin.py:23 +#: registration/admin.py:23 msgid "Activate users" msgstr "" -#: admin.py:43 +#: registration/admin.py:43 msgid "Re-send activation emails" msgstr "" -#: forms.py:35 -msgid "username" +#: registration/backends/default/views.py:197 +msgid "Пользователя с таким email не существует" msgstr "" -#: forms.py:36 -msgid "This value must contain only letters, numbers and underscores." +#: registration/backends/default/views.py:200 +msgid "Пользователя с таким email уже активирован" msgstr "" -#: forms.py:39 -msgid "Email address" +#: registration/forms.py:44 +msgid "First name" msgstr "" -#: forms.py:41 -msgid "Password" +#: registration/forms.py:45 registration/forms.py:50 +msgid "This value may contain only letters, numbers and @/./+/-/_ characters." msgstr "" -#: forms.py:43 -msgid "Password (again)" +#: registration/forms.py:46 +msgid "Имя" +msgstr "" + +#: registration/forms.py:49 +msgid "Last name" +msgstr "" + +#: registration/forms.py:51 +msgid "Фамилия" +msgstr "" + +#: registration/forms.py:53 +msgid "E-mail" msgstr "" -#: forms.py:55 -msgid "A user with that username already exists." +#: registration/forms.py:53 +msgid "Адрес электронной почты" msgstr "" -#: forms.py:67 -msgid "The two password fields didn't match." +#: registration/forms.py:54 +msgid "Придумайте пароль" +msgstr "" + +#: registration/forms.py:55 +msgid "Password" +msgstr "" + +#: registration/forms.py:56 +msgid "Повторите пароль" +msgstr "" + +#: registration/forms.py:57 +msgid "Password (again)" msgstr "" -#: forms.py:78 +#: registration/forms.py:83 msgid "I have read and agree to the Terms of Service" msgstr "" -#: forms.py:79 +#: registration/forms.py:84 msgid "You must agree to the terms to register" msgstr "" -#: forms.py:95 +#: registration/forms.py:100 msgid "" "This email address is already in use. Please supply a different email " "address." msgstr "" -#: forms.py:122 +#: registration/forms.py:127 msgid "" "Registration using free email addresses is prohibited. Please supply a " "different email address." msgstr "" -#: models.py:165 +#: registration/models.py:184 msgid "user" msgstr "" -#: models.py:166 +#: registration/models.py:185 msgid "activation key" msgstr "" -#: models.py:171 +#: registration/models.py:190 msgid "registration profile" msgstr "" -#: models.py:172 +#: registration/models.py:191 msgid "registration profiles" msgstr "" diff --git a/templates/client/404.html b/templates/client/404.html index bded0e78..27dc338f 100644 --- a/templates/client/404.html +++ b/templates/client/404.html @@ -1,17 +1,18 @@ {% extends 'base_catalog.html' %} +{% load i18n %} {% block content_list %}
      -

      Запрашиваемая страница не найдена

      +

      {% trans 'Запрашиваемая страница не найдена' %}

      404: -

      Возможно у нее изменился адрес или же она была удалена.
      Воспользуйтесь поиском по названию, расширенной формой поиска или каталогом событий.

      +

      {% trans 'Возможно у нее изменился адрес или же она была удалена' %}.
      {% trans 'Воспользуйтесь поиском по названию, расширенной формой поиска или каталогом событий' %}.


      -

      Каталог выставок

      +

      {% trans 'Каталог выставок' %}


      -

      Каталог конференций

      +

      {% trans 'Каталог конференций' %}

        {% for item in conf_themes %}
      • {{ item.name }} ({{ item.conference_count }})
      • diff --git a/templates/client/accounts/fill_company.html b/templates/client/accounts/fill_company.html index c338e95d..e3208cdb 100644 --- a/templates/client/accounts/fill_company.html +++ b/templates/client/accounts/fill_company.html @@ -72,9 +72,9 @@
      - +
      - закрыть + {% trans 'закрыть' %} @@ -115,8 +115,8 @@ {% if spec_form.specialization.value %} {% trans 'редактировать' %} {% else %} - Добавить - + {% trans 'Добавить' %} + {% endif %}
      {% csrf_token %} @@ -130,10 +130,10 @@
      - +
      - закрыть + {% trans 'закрыть' %} @@ -151,8 +151,8 @@ {% if address_form.address_inf.value %} {% trans 'редактировать' %} {% else %} - Добавить - + {% trans 'Добавить' %} + {% endif %}
      {% csrf_token %} @@ -163,10 +163,10 @@
      - +
      - закрыть + {% trans 'закрыть' %} @@ -269,8 +269,8 @@ {% if phone_form.phone.value %} {% trans 'редактировать' %} {% else %} - Добавить - + {% trans 'Добавить' %} + {% endif %}
      {% csrf_token %} @@ -301,7 +301,7 @@ {% if email_form.email.value %} {% trans 'редактировать' %} {% else %} - Добавить + {% trans 'Добавить' %} {% endif %}
      diff --git a/templates/client/accounts/new_profile.html b/templates/client/accounts/new_profile.html index bf5d47bb..472b4f2d 100644 --- a/templates/client/accounts/new_profile.html +++ b/templates/client/accounts/new_profile.html @@ -46,8 +46,10 @@
      551
      + {% blocktrans %}

      Заполните свой
      профиль, чтобы
      повысить рейтинг

      Чем выше
      рейтинг —
      тем больше
      преимуществ!

      + {% endblocktrans %}
      @@ -83,7 +85,7 @@
      - +
      {{ home_form.country }}
      @@ -99,11 +101,11 @@
      - +
      - закрыть + {% trans 'закрыть' %}
      @@ -159,8 +161,8 @@ {% if work_form.position.value and work_form.company.value %} {% trans 'редактировать' %} {% else %} - Указать - + {% trans 'Указать' %} + {% endif %}
      {% csrf_token %} @@ -191,12 +193,12 @@
      - редактировать профиль - завершить редактирование + {% trans 'редактировать профиль' %} + {% trans 'завершить редактирование' %}
      Добавить профили в соц.сетях:
      - - - - - -
      {% trans 'Автор' %}:{% include 'includes/show_logo.html' with obj=object.author %} -

      {{ object.author.get_full_name }}

      - {% if object.author.profile.fb %} - - {% endif %} -
      - {% if object.tag.all.exists %} -
      - {% include 'includes/article_tags.html' with obj=object %} -
      - {% endif %} +

       

      +
      +
      + {{ object.description|safe }} +
      -
      +
      + + + + + + +
      {% trans 'Автор' %}:{% include 'includes/show_logo.html' with obj=object.author %} +

      {{ object.author.get_full_name }}

      + {% if object.author.profile.fb %} + + {% endif %} +
      + {% if object.tag.all.exists %} +
      + {% include 'includes/article_tags.html' with obj=object %}
      + {% endif %} +
      + +
      {% with blogs=object.similars %} {% if blogs %} diff --git a/templates/client/includes/conference/conference_list.html b/templates/client/includes/conference/conference_list.html index d3084307..d2fa662d 100644 --- a/templates/client/includes/conference/conference_list.html +++ b/templates/client/includes/conference/conference_list.html @@ -24,9 +24,19 @@
      + {% if obj.quality_label.rsva.is_set %} +
      + +
      + {% endif %} + {% if obj.quality_label.exporating.is_set %} +
      + +
      + {% endif %} {% if obj.quality_label.ufi.is_set %}
      - +
      {% endif %}
      diff --git a/templates/client/includes/conference/conference_object.html b/templates/client/includes/conference/conference_object.html index 621db3dd..bc3d16bb 100644 --- a/templates/client/includes/conference/conference_object.html +++ b/templates/client/includes/conference/conference_object.html @@ -9,6 +9,9 @@ {% if event.expohit %}
      {% endif %} + {% if event.canceled %} +
      + {% endif %}
      {% with obj=event %} {% include 'client/includes/show_logo.html' %} @@ -300,11 +303,21 @@
      - {% if exp.approved %} -
      - -
      - {% endif %} + {% if exp.quality_label.rsva.is_set %} +
      + +
      + {% endif %} + {% if exp.quality_label.exporating.is_set %} +
      + +
      + {% endif %} + {% if exp.quality_label.ufi.is_set %} +
      + +
      + {% endif %}
      diff --git a/templates/client/includes/exposition/exposition_list.html b/templates/client/includes/exposition/exposition_list.html index 5730ceb8..a4659057 100644 --- a/templates/client/includes/exposition/exposition_list.html +++ b/templates/client/includes/exposition/exposition_list.html @@ -31,11 +31,22 @@ {% endif %}
      - {% if obj.quality_label.ufi.is_set %} + {% if obj.quality_label.rsva.is_set %}
      - +
      {% endif %} + {% if obj.quality_label.exporating.is_set %} +
      + +
      + {% endif %} + {% if obj.quality_label.ufi.is_set %} +
      + +
      + {% endif %} +
      diff --git a/templates/client/includes/exposition/exposition_object.html b/templates/client/includes/exposition/exposition_object.html index a03fae65..53552c55 100644 --- a/templates/client/includes/exposition/exposition_object.html +++ b/templates/client/includes/exposition/exposition_object.html @@ -9,6 +9,11 @@ {% if exposition.expohit %}
      {% endif %} + + {% if exposition.canceled %} +
      + {% endif %} +
      {% with obj=exposition %} {% include 'client/includes/show_logo.html' %} @@ -30,6 +35,7 @@
      +
      {% if exposition.main_title %} @@ -324,11 +330,21 @@
      - {% if exp.approved %} -
      - -
      - {% endif %} + {% if exp.quality_label.rsva.is_set %} +
      + +
      + {% endif %} + {% if exp.quality_label.exporating.is_set %} +
      + +
      + {% endif %} + {% if exp.quality_label.ufi.is_set %} +
      + +
      + {% endif %}
      diff --git a/templates/client/static_client/css/main.css b/templates/client/static_client/css/main.css index 50cdad1a..0c56aca3 100644 --- a/templates/client/static_client/css/main.css +++ b/templates/client/static_client/css/main.css @@ -4979,6 +4979,7 @@ form.s-message { -webkit-transition: opacity .3s; -o-transition: opacity .3s; transition: opacity .3s; + margin-right: 10px; } .cat-list li.cl-item:hover .cli-approved, diff --git a/templates/client/static_client/css/vendor.css b/templates/client/static_client/css/vendor.css index 64743fb6..2daa3034 100644 --- a/templates/client/static_client/css/vendor.css +++ b/templates/client/static_client/css/vendor.css @@ -2809,3 +2809,4 @@ html[dir="rtl"] .select2-container-multi .select2-choices li height: 100px; overflow: scroll; } + diff --git a/templates/client/static_client/css_min/vendor.min.css b/templates/client/static_client/css_min/vendor.min.css index 5a4b0dd5..92f5e8ca 100644 --- a/templates/client/static_client/css_min/vendor.min.css +++ b/templates/client/static_client/css_min/vendor.min.css @@ -1,4 +1,4 @@ -.swiper-container{margin:0 auto;position:relative;overflow:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-wrapper{position:relative;width:100%;-webkit-transition-property:-webkit-transform,left,top;-webkit-transition-duration:0s;-webkit-transform:translate3d(0px,0,0);-webkit-transition-timing-function:ease;-moz-transition-property:-moz-transform,left,top;-moz-transition-duration:0s;-moz-transform:translate3d(0px,0,0);-moz-transition-timing-function:ease;-o-transition-property:-o-transform,left,top;-o-transition-duration:0s;-o-transition-timing-function:ease;-o-transform:translate(0px,0);-ms-transition-property:-ms-transform,left,top;-ms-transition-duration:0s;-ms-transform:translate3d(0px,0,0);-ms-transition-timing-function:ease;transition-property:transform,left,top;transition-duration:0s;transform:translate3d(0px,0,0);transition-timing-function:ease}.swiper-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-ms-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-slide{float:left}.swiper-wp8-horizontal{-ms-touch-action:pan-y}.swiper-wp8-vertical{-ms-touch-action:pan-x}.mCustomScrollbar{-ms-touch-action:none;touch-action:none}.mCustomScrollbar.mCS_no_scrollbar{-ms-touch-action:auto;touch-action:auto}.mCustomScrollBox{position:relative;height:100%;max-width:100%;outline:0;direction:ltr}.mCSB_container{width:auto;height:auto}.mCSB_inside>.mCSB_container{margin-right:30px}.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{margin-right:0}.mCS-dir-rtl>.mCSB_inside>.mCSB_container{margin-right:0;margin-left:30px}.mCS-dir-rtl>.mCSB_inside>.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{margin-left:0}.mCSB_scrollTools{position:absolute;width:16px;height:auto;left:auto;top:0;right:0;bottom:0}.mCSB_outside+.mCSB_scrollTools{right:-26px}.mCS-dir-rtl>.mCSB_inside>.mCSB_scrollTools,.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools{right:auto;left:0}.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools{left:-26px}.mCSB_scrollTools .mCSB_draggerContainer{position:absolute;top:0;left:0;bottom:0;right:0;height:auto}.mCSB_scrollTools a+.mCSB_draggerContainer{margin:20px 0}.mCSB_scrollTools .mCSB_draggerRail{width:2px;height:100%;margin:0 auto;-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px}.mCSB_scrollTools .mCSB_dragger{cursor:pointer;width:100%;height:30px;z-index:1}.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{position:relative;width:4px;height:100%;margin:0 auto;-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px;text-align:center}.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{width:12px}.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{width:8px}.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonUp{display:block;position:absolute;height:20px;width:100%;overflow:hidden;margin:0 auto;cursor:pointer}.mCSB_scrollTools .mCSB_buttonDown{bottom:0}.mCSB_horizontal.mCSB_inside>.mCSB_container{margin-right:0;margin-bottom:30px}.mCSB_horizontal.mCSB_outside>.mCSB_container{min-height:100%}.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden{margin-bottom:0}.mCSB_scrollTools.mCSB_scrollTools_horizontal{width:auto;height:16px;top:auto;right:0;bottom:0;left:0}.mCustomScrollBox+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox+.mCSB_scrollTools.mCSB_scrollTools_horizontal{bottom:-26px}.mCSB_scrollTools.mCSB_scrollTools_horizontal a+.mCSB_draggerContainer{margin:0 20px}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:2px;margin:7px 0}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger{width:30px;height:100%;left:0}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{width:100%;height:4px;margin:6px auto}.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{height:12px;margin:2px auto}.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{height:8px;margin:4px 0}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{display:block;position:absolute;width:20px;height:100%;overflow:hidden;margin:0 auto;cursor:pointer}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft{left:0}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{right:0}.mCSB_container_wrapper{position:absolute;height:auto;width:auto;overflow:hidden;top:0;left:0;right:0;bottom:0;margin-right:30px;margin-bottom:30px}.mCSB_container_wrapper>.mCSB_container{padding-right:30px;padding-bottom:30px}.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_vertical{bottom:20px}.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_horizontal{right:20px}.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden+.mCSB_scrollTools.mCSB_scrollTools_vertical{bottom:0}.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal{right:0}.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal{left:20px}.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal{left:0}.mCS-dir-rtl>.mCSB_inside>.mCSB_container_wrapper{margin-right:0;margin-left:30px}.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden>.mCSB_container{padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden>.mCSB_container{padding-bottom:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden{margin-right:0;margin-left:0}.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden{margin-bottom:0}.mCSB_scrollTools,.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonLeft,.mCSB_scrollTools .mCSB_buttonRight,.mCSB_scrollTools .mCSB_buttonUp,.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{-webkit-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;-moz-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;-o-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;transition:opacity .2s ease-in-out,background-color .2s ease-in-out}.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar{-webkit-transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;-moz-transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;-o-transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out}.mCSB_scrollTools{opacity:.75;filter:"alpha(opacity=75)";-ms-filter:"alpha(opacity=75)"}.mCS-autoHide>.mCustomScrollBox>.mCSB_scrollTools,.mCS-autoHide>.mCustomScrollBox~.mCSB_scrollTools{opacity:0;filter:"alpha(opacity=0)";-ms-filter:"alpha(opacity=0)"}.mCS-autoHide:hover>.mCustomScrollBox>.mCSB_scrollTools,.mCS-autoHide:hover>.mCustomScrollBox~.mCSB_scrollTools,.mCustomScrollBox:hover>.mCSB_scrollTools,.mCustomScrollBox:hover~.mCSB_scrollTools,.mCustomScrollbar>.mCustomScrollBox>.mCSB_scrollTools.mCSB_scrollTools_onDrag,.mCustomScrollbar>.mCustomScrollBox~.mCSB_scrollTools.mCSB_scrollTools_onDrag{opacity:1;filter:"alpha(opacity=100)";-ms-filter:"alpha(opacity=100)"}.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.4);filter:"alpha(opacity=40)";-ms-filter:"alpha(opacity=40)"}.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.75);filter:"alpha(opacity=75)";-ms-filter:"alpha(opacity=75)"}.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.85);filter:"alpha(opacity=85)";-ms-filter:"alpha(opacity=85)"}.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.9);filter:"alpha(opacity=90)";-ms-filter:"alpha(opacity=90)"}.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonLeft,.mCSB_scrollTools .mCSB_buttonRight,.mCSB_scrollTools .mCSB_buttonUp{background-image:url(mCSB_buttons.png);background-repeat:no-repeat;opacity:.4;filter:"alpha(opacity=40)";-ms-filter:"alpha(opacity=40)"}.mCSB_scrollTools .mCSB_buttonUp{background-position:0 0}.mCSB_scrollTools .mCSB_buttonDown{background-position:0 -20px}.mCSB_scrollTools .mCSB_buttonLeft{background-position:0 -40px}.mCSB_scrollTools .mCSB_buttonRight{background-position:0 -56px}.mCSB_scrollTools .mCSB_buttonDown:hover,.mCSB_scrollTools .mCSB_buttonLeft:hover,.mCSB_scrollTools .mCSB_buttonRight:hover,.mCSB_scrollTools .mCSB_buttonUp:hover{opacity:.75;filter:"alpha(opacity=75)";-ms-filter:"alpha(opacity=75)"}.mCSB_scrollTools .mCSB_buttonDown:active,.mCSB_scrollTools .mCSB_buttonLeft:active,.mCSB_scrollTools .mCSB_buttonRight:active,.mCSB_scrollTools .mCSB_buttonUp:active{opacity:.9;filter:"alpha(opacity=90)";-ms-filter:"alpha(opacity=90)"}.mCS-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.15)}.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:rgba(0,0,0,.85)}.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:rgba(0,0,0,.9)}.mCS-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-80px 0}.mCS-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-80px -20px}.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-80px -40px}.mCS-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-80px -56px}.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail{width:4px;background-color:#fff;background-color:rgba(255,255,255,.1);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:4px;background-color:#fff;background-color:rgba(255,255,255,.75);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:4px;margin:6px auto}.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.85)}.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.9)}.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px 0}.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -20px}.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -40px}.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -56px}.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px 0}.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -20px}.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -40px}.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -56px}.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail{width:4px;background-color:#fff;background-color:rgba(255,255,255,.1);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:6px;background-color:#fff;background-color:rgba(255,255,255,.75);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:4px;margin:6px 0}.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{width:100%;height:6px;margin:5px auto}.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.85)}.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.9)}.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp{background-position:-16px 0}.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown{background-position:-16px -20px}.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft{background-position:-20px -40px}.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight{background-position:-20px -56px}.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp{background-position:-96px 0}.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown{background-position:-96px -20px}.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft{background-position:-100px -40px}.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight{background-position:-100px -56px}.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail{background-color:#fff;background-color:rgba(255,255,255,.1)}.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:2px}.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%}.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{width:100%;height:2px;margin:7px auto}.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.15)}.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp{background-position:-80px 0}.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown{background-position:-80px -20px}.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft{background-position:-80px -40px}.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight{background-position:-80px -56px}.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail{background-color:#fff;background-color:rgba(255,255,255,.15)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger,.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,.mCS-rounded.mCSB_scrollTools .mCSB_dragger{height:14px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:14px;margin:0 1px}.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger{width:14px}.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{height:14px;margin:1px 0}.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{width:16px;height:16px;margin:-1px 0}.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{width:4px}.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{height:16px;width:16px;margin:0 -1px}.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{height:4px;margin:6px 0}.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp{background-position:0 -72px}.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown{background-position:0 -92px}.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft{background-position:0 -112px}.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight{background-position:0 -128px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.15)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-80px -72px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-80px -92px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-80px -112px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-80px -128px}.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail{width:4px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail{background-color:transparent;background-position:center}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==);background-repeat:repeat-y;opacity:.3;filter:"alpha(opacity=30)";-ms-filter:"alpha(opacity=30)"}.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail{height:4px;margin:6px 0;background-repeat:repeat-x}.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp{background-position:-16px -72px}.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown{background-position:-16px -92px}.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft{background-position:-20px -112px}.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight{background-position:-20px -128px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=)}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-96px -72px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-96px -92px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-100px -112px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-100px -128px}.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-repeat:repeat-y;background-image:-moz-linear-gradient(left,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(255,255,255,.5)),color-stop(100%,rgba(255,255,255,0)));background-image:-webkit-linear-gradient(left,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-o-linear-gradient(left,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-ms-linear-gradient(left,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:linear-gradient(to right,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%)}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{background-repeat:repeat-x;background-image:-moz-linear-gradient(top,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(255,255,255,.5)),color-stop(100%,rgba(255,255,255,0)));background-image:-webkit-linear-gradient(top,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-o-linear-gradient(top,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-ms-linear-gradient(top,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:linear-gradient(to bottom,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%)}.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger,.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger{height:70px}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger{width:70px}.mCS-3d-dark.mCSB_scrollTools,.mCS-3d.mCSB_scrollTools{opacity:1;filter:"alpha(opacity=30)";-ms-filter:"alpha(opacity=30)"}.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_draggerRail{-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px}.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools .mCSB_draggerRail{width:8px;background-color:#000;background-color:rgba(0,0,0,.2);box-shadow:inset 1px 0 1px rgba(0,0,0,.5),inset -1px 0 1px rgba(255,255,255,.2)}.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#555}.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:8px}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:8px;margin:4px 0;box-shadow:inset 0 1px 1px rgba(0,0,0,.5),inset 0 -1px 1px rgba(255,255,255,.2)}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{width:100%;height:8px;margin:4px auto}.mCS-3d.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px -72px}.mCS-3d.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -92px}.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -112px}.mCS-3d.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -128px}.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1);box-shadow:inset 1px 0 1px rgba(0,0,0,.1)}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{box-shadow:inset 0 1px 1px rgba(0,0,0,.1)}.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px -72px}.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -92px}.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -112px}.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -128px}.mCS-3d-thick-dark.mCSB_scrollTools,.mCS-3d-thick.mCSB_scrollTools{opacity:1;filter:"alpha(opacity=30)";-ms-filter:"alpha(opacity=30)"}.mCS-3d-thick-dark.mCSB_scrollTools,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer,.mCS-3d-thick.mCSB_scrollTools,.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer{-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.mCSB_inside+.mCS-3d-thick-dark.mCSB_scrollTools_vertical,.mCSB_inside+.mCS-3d-thick.mCSB_scrollTools_vertical{right:1px}.mCS-3d-thick-dark.mCSB_scrollTools_vertical,.mCS-3d-thick.mCSB_scrollTools_vertical{box-shadow:inset 1px 0 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.5)}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal,.mCS-3d-thick.mCSB_scrollTools_horizontal{bottom:1px;box-shadow:inset 0 1px 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.5)}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{box-shadow:inset 1px 0 0 rgba(255,255,255,.4);width:12px;margin:2px;position:absolute;height:auto;top:0;bottom:0;left:0;right:0}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{box-shadow:inset 0 1px 0 rgba(255,255,255,.4)}.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#555}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{height:12px;width:auto}.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer{background-color:#000;background-color:rgba(0,0,0,.05);box-shadow:inset 1px 1px 16px rgba(0,0,0,.1)}.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail{background-color:transparent}.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px -72px}.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -92px}.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -112px}.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -128px}.mCS-3d-thick-dark.mCSB_scrollTools{box-shadow:inset 0 0 14px rgba(0,0,0,.2)}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal{box-shadow:inset 0 1px 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.2)}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{box-shadow:inset 1px 0 0 rgba(255,255,255,.4),inset -1px 0 0 rgba(0,0,0,.2)}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{box-shadow:inset 0 1px 0 rgba(255,255,255,.4),inset 0 -1px 0 rgba(0,0,0,.2)}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#777}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{background-color:#fff;background-color:rgba(0,0,0,.05);box-shadow:inset 1px 1px 16px rgba(0,0,0,.1)}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:transparent}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px -72px}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -92px}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -112px}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -128px}.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical,.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical{right:0;margin:12px 0}.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools.mCSB_scrollTools_horizontal{bottom:0;margin:0 12px}.mCS-dir-rtl>.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical,.mCS-dir-rtl>.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical{left:0;right:auto}.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail{background-color:transparent}.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger,.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger{height:50px}.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger{width:50px}.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.2);filter:"alpha(opacity=20)";-ms-filter:"alpha(opacity=20)"}.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.5);filter:"alpha(opacity=50)";-ms-filter:"alpha(opacity=50)"}.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.2);filter:"alpha(opacity=20)";-ms-filter:"alpha(opacity=20)"}.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.5);filter:"alpha(opacity=50)";-ms-filter:"alpha(opacity=50)"}.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail{width:6px;background-color:#000;background-color:rgba(0,0,0,.2)}.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:6px}.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:6px;margin:5px 0}.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{width:12px}.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{height:12px;margin:2px 0}.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px -72px}.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -92px}.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -112px}.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -128px}.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1)}.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px -72px}.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -92px}.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -112px}.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -128px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset.mCSB_scrollTools .mCSB_draggerRail{width:12px;background-color:#000;background-color:rgba(0,0,0,.2)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:6px;margin:3px 5px;position:absolute;height:auto;top:0;bottom:0;left:0;right:0}.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{height:6px;margin:5px 3px;position:absolute;width:auto;top:0;bottom:0;left:0;right:0}.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:12px;margin:2px 0}.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px -72px}.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -92px}.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -112px}.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -128px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px -72px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -92px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -112px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -128px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail{background-color:transparent;border-width:1px;border-style:solid;border-color:#fff;border-color:rgba(255,255,255,.2);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{border-color:#000;border-color:rgba(0,0,0,.2)}.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail{background-color:#fff;background-color:rgba(255,255,255,.6)}.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.6)}.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.75)}.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.85)}.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.9)}/*! jQuery UI - v1.10.3 - 2013-11-24 +.fancybox-nav,.select2-results{-webkit-tap-highlight-color:transparent}.swiper-container{margin:0 auto;position:relative;overflow:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-o-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-wrapper{position:relative;width:100%;-webkit-transition-property:-webkit-transform,left,top;-webkit-transition-duration:0s;-webkit-transform:translate3d(0,0,0);-webkit-transition-timing-function:ease;-moz-transition-property:-moz-transform,left,top;-moz-transition-duration:0s;-moz-transform:translate3d(0,0,0);-moz-transition-timing-function:ease;-o-transition-property:-o-transform,left,top;-o-transition-duration:0s;-o-transition-timing-function:ease;-o-transform:translate(0,0);-ms-transition-property:-ms-transform,left,top;-ms-transition-duration:0s;-ms-transform:translate3d(0,0,0);-ms-transition-timing-function:ease;transition-property:transform,left,top;transition-duration:0s;transform:translate3d(0,0,0);transition-timing-function:ease}.swiper-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-ms-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-slide{float:left}.swiper-wp8-horizontal{-ms-touch-action:pan-y}.swiper-wp8-vertical{-ms-touch-action:pan-x}.mCustomScrollbar{-ms-touch-action:none;touch-action:none}.mCustomScrollbar.mCS_no_scrollbar{-ms-touch-action:auto;touch-action:auto}.mCustomScrollBox{position:relative;height:100%;max-width:100%;outline:0;direction:ltr}.mCSB_container{width:auto;height:auto}.mCSB_inside>.mCSB_container{margin-right:30px}.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{margin-right:0}.mCS-dir-rtl>.mCSB_inside>.mCSB_container{margin-right:0;margin-left:30px}.mCS-dir-rtl>.mCSB_inside>.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden{margin-left:0}.mCSB_scrollTools{position:absolute;width:16px;height:auto;left:auto;top:0;right:0;bottom:0;opacity:.75;filter:"alpha(opacity=75)";-ms-filter:"alpha(opacity=75)"}.mCSB_outside+.mCSB_scrollTools{right:-26px}.mCS-dir-rtl>.mCSB_inside>.mCSB_scrollTools,.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools{right:auto;left:0}.mCS-dir-rtl>.mCSB_outside+.mCSB_scrollTools{left:-26px}.mCSB_scrollTools .mCSB_draggerContainer{position:absolute;top:0;left:0;bottom:0;right:0;height:auto}.mCSB_scrollTools a+.mCSB_draggerContainer{margin:20px 0}.mCSB_scrollTools .mCSB_draggerRail{width:2px;height:100%;margin:0 auto;-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px}.mCSB_scrollTools .mCSB_dragger{cursor:pointer;width:100%;height:30px;z-index:1}.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{position:relative;width:4px;height:100%;margin:0 auto;-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px;text-align:center}.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{width:12px}.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{width:8px}.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonUp{display:block;position:absolute;height:20px;width:100%;overflow:hidden;margin:0 auto;cursor:pointer}.mCSB_scrollTools .mCSB_buttonDown{bottom:0}.mCSB_horizontal.mCSB_inside>.mCSB_container{margin-right:0;margin-bottom:30px}.mCSB_horizontal.mCSB_outside>.mCSB_container{min-height:100%}.mCSB_horizontal>.mCSB_container.mCS_no_scrollbar_x.mCS_x_hidden{margin-bottom:0}.mCSB_scrollTools.mCSB_scrollTools_horizontal{width:auto;height:16px;top:auto;right:0;bottom:0;left:0}.mCustomScrollBox+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox+.mCSB_scrollTools.mCSB_scrollTools_horizontal{bottom:-26px}.mCSB_scrollTools.mCSB_scrollTools_horizontal a+.mCSB_draggerContainer{margin:0 20px}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:2px;margin:7px 0}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger{width:30px;height:100%;left:0}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{width:100%;height:4px;margin:6px auto}.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{height:12px;margin:2px auto}.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{height:8px;margin:4px 0}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft,.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{display:block;position:absolute;width:20px;height:100%;overflow:hidden;margin:0 auto;cursor:pointer}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonLeft{left:0}.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_buttonRight{right:0}.mCSB_container_wrapper{position:absolute;height:auto;width:auto;overflow:hidden;top:0;left:0;right:0;bottom:0;margin-right:30px;margin-bottom:30px}.mCSB_container_wrapper>.mCSB_container{padding-right:30px;padding-bottom:30px}.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_vertical{bottom:20px}.mCSB_vertical_horizontal>.mCSB_scrollTools.mCSB_scrollTools_horizontal{right:20px}.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden+.mCSB_scrollTools.mCSB_scrollTools_vertical{bottom:0}.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal{right:0}.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_scrollTools.mCSB_scrollTools_horizontal{left:20px}.mCS-dir-rtl>.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden+.mCSB_scrollTools~.mCSB_scrollTools.mCSB_scrollTools_horizontal{left:0}.mCS-dir-rtl>.mCSB_inside>.mCSB_container_wrapper{margin-right:0;margin-left:30px}.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden>.mCSB_container{padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden>.mCSB_container{padding-bottom:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_y.mCS_y_hidden{margin-right:0;margin-left:0}.mCustomScrollBox.mCSB_vertical_horizontal.mCSB_inside>.mCSB_container_wrapper.mCS_no_scrollbar_x.mCS_x_hidden{margin-bottom:0}.mCSB_scrollTools,.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonLeft,.mCSB_scrollTools .mCSB_buttonRight,.mCSB_scrollTools .mCSB_buttonUp,.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{-webkit-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;-moz-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;-o-transition:opacity .2s ease-in-out,background-color .2s ease-in-out;transition:opacity .2s ease-in-out,background-color .2s ease-in-out}.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerRail,.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger_bar{-webkit-transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;-moz-transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;-o-transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out;transition:width .2s ease-out .2s,height .2s ease-out .2s,margin-left .2s ease-out .2s,margin-right .2s ease-out .2s,margin-top .2s ease-out .2s,margin-bottom .2s ease-out .2s,opacity .2s ease-in-out,background-color .2s ease-in-out}.mCS-autoHide>.mCustomScrollBox>.mCSB_scrollTools,.mCS-autoHide>.mCustomScrollBox~.mCSB_scrollTools{opacity:0;filter:"alpha(opacity=0)";-ms-filter:"alpha(opacity=0)"}.mCS-autoHide:hover>.mCustomScrollBox>.mCSB_scrollTools,.mCS-autoHide:hover>.mCustomScrollBox~.mCSB_scrollTools,.mCustomScrollBox:hover>.mCSB_scrollTools,.mCustomScrollBox:hover~.mCSB_scrollTools,.mCustomScrollbar>.mCustomScrollBox>.mCSB_scrollTools.mCSB_scrollTools_onDrag,.mCustomScrollbar>.mCustomScrollBox~.mCSB_scrollTools.mCSB_scrollTools_onDrag{opacity:1;filter:"alpha(opacity=100)";-ms-filter:"alpha(opacity=100)"}.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.4);filter:"alpha(opacity=40)";-ms-filter:"alpha(opacity=40)"}.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.75);filter:"alpha(opacity=75)";-ms-filter:"alpha(opacity=75)"}.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.85);filter:"alpha(opacity=85)";-ms-filter:"alpha(opacity=85)"}.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.9);filter:"alpha(opacity=90)";-ms-filter:"alpha(opacity=90)"}.mCSB_scrollTools .mCSB_buttonDown,.mCSB_scrollTools .mCSB_buttonLeft,.mCSB_scrollTools .mCSB_buttonRight,.mCSB_scrollTools .mCSB_buttonUp{background-image:url(mCSB_buttons.png);background-repeat:no-repeat;opacity:.4;filter:"alpha(opacity=40)";-ms-filter:"alpha(opacity=40)"}.mCSB_scrollTools .mCSB_buttonUp{background-position:0 0}.mCSB_scrollTools .mCSB_buttonDown{background-position:0 -20px}.mCSB_scrollTools .mCSB_buttonLeft{background-position:0 -40px}.mCSB_scrollTools .mCSB_buttonRight{background-position:0 -56px}.mCSB_scrollTools .mCSB_buttonDown:hover,.mCSB_scrollTools .mCSB_buttonLeft:hover,.mCSB_scrollTools .mCSB_buttonRight:hover,.mCSB_scrollTools .mCSB_buttonUp:hover{opacity:.75;filter:"alpha(opacity=75)";-ms-filter:"alpha(opacity=75)"}.mCSB_scrollTools .mCSB_buttonDown:active,.mCSB_scrollTools .mCSB_buttonLeft:active,.mCSB_scrollTools .mCSB_buttonRight:active,.mCSB_scrollTools .mCSB_buttonUp:active{opacity:.9;filter:"alpha(opacity=90)";-ms-filter:"alpha(opacity=90)"}.mCS-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.15)}.mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:rgba(0,0,0,.85)}.mCS-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:rgba(0,0,0,.9)}.mCS-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-80px 0}.mCS-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-80px -20px}.mCS-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-80px -40px}.mCS-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-80px -56px}.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-2.mCSB_scrollTools .mCSB_draggerRail{width:4px;background-color:#fff;background-color:rgba(255,255,255,.1);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:4px;background-color:#fff;background-color:rgba(255,255,255,.75);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-dark-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:4px;margin:6px auto}.mCS-light-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.85)}.mCS-light-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-light-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.9)}.mCS-light-2.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px 0}.mCS-light-2.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -20px}.mCS-light-2.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -40px}.mCS-light-2.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -56px}.mCS-dark-2.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.mCS-dark-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75);-webkit-border-radius:1px;-moz-border-radius:1px;border-radius:1px}.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-dark-2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-dark-2.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px 0}.mCS-dark-2.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -20px}.mCS-dark-2.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -40px}.mCS-dark-2.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -56px}.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-thick.mCSB_scrollTools .mCSB_draggerRail{width:4px;background-color:#fff;background-color:rgba(255,255,255,.1);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:6px;background-color:#fff;background-color:rgba(255,255,255,.75);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:4px;margin:6px 0}.mCS-dark-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{width:100%;height:6px;margin:5px auto}.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.85)}.mCS-light-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-light-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.9)}.mCS-light-thick.mCSB_scrollTools .mCSB_buttonUp{background-position:-16px 0}.mCS-light-thick.mCSB_scrollTools .mCSB_buttonDown{background-position:-16px -20px}.mCS-light-thick.mCSB_scrollTools .mCSB_buttonLeft{background-position:-20px -40px}.mCS-light-thick.mCSB_scrollTools .mCSB_buttonRight{background-position:-20px -56px}.mCS-dark-thick.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonUp{background-position:-96px 0}.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonDown{background-position:-96px -20px}.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonLeft{background-position:-100px -40px}.mCS-dark-thick.mCSB_scrollTools .mCSB_buttonRight{background-position:-100px -56px}.mCS-light-thin.mCSB_scrollTools .mCSB_draggerRail{background-color:#fff;background-color:rgba(255,255,255,.1)}.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:2px}.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%}.mCS-dark-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-thin.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{width:100%;height:2px;margin:7px auto}.mCS-dark-thin.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.15)}.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-thin.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonUp{background-position:-80px 0}.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonDown{background-position:-80px -20px}.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonLeft{background-position:-80px -40px}.mCS-dark-thin.mCSB_scrollTools .mCSB_buttonRight{background-position:-80px -56px}.mCS-rounded.mCSB_scrollTools .mCSB_draggerRail{background-color:#fff;background-color:rgba(255,255,255,.15)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger,.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger,.mCS-rounded.mCSB_scrollTools .mCSB_dragger{height:14px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:14px;margin:0 1px}.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger{width:14px}.mCS-rounded-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{height:14px;margin:1px 0}.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{width:16px;height:16px;margin:-1px 0}.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded-dark.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{width:4px}.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar{height:16px;width:16px;margin:0 -1px}.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded-dark.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-rounded.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{height:4px;margin:6px 0}.mCS-rounded.mCSB_scrollTools .mCSB_buttonUp{background-position:0 -72px}.mCS-rounded.mCSB_scrollTools .mCSB_buttonDown{background-position:0 -92px}.mCS-rounded.mCSB_scrollTools .mCSB_buttonLeft{background-position:0 -112px}.mCS-rounded.mCSB_scrollTools .mCSB_buttonRight{background-position:0 -128px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.15)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-rounded-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-80px -72px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-80px -92px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-80px -112px}.mCS-rounded-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-80px -128px}.mCS-rounded-dots-dark.mCSB_scrollTools_vertical .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_vertical .mCSB_draggerRail{width:4px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail{background-color:transparent;background-position:center}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools .mCSB_draggerRail{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAANElEQVQYV2NkIAAYiVbw//9/Y6DiM1ANJoyMjGdBbLgJQAX/kU0DKgDLkaQAvxW4HEvQFwCRcxIJK1XznAAAAABJRU5ErkJggg==);background-repeat:repeat-y;opacity:.3;filter:"alpha(opacity=30)";-ms-filter:"alpha(opacity=30)"}.mCS-rounded-dots-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-rounded-dots.mCSB_scrollTools_horizontal .mCSB_draggerRail{height:4px;margin:6px 0;background-repeat:repeat-x}.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonUp{background-position:-16px -72px}.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonDown{background-position:-16px -92px}.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonLeft{background-position:-20px -112px}.mCS-rounded-dots.mCSB_scrollTools .mCSB_buttonRight{background-position:-20px -128px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_draggerRail{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAALElEQVQYV2NkIAAYSVFgDFR8BqrBBEifBbGRTfiPZhpYjiQFBK3A6l6CvgAAE9kGCd1mvgEAAAAASUVORK5CYII=)}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-96px -72px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-96px -92px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-100px -112px}.mCS-rounded-dots-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-100px -128px}.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-repeat:repeat-y;background-image:-moz-linear-gradient(left,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(255,255,255,.5)),color-stop(100%,rgba(255,255,255,0)));background-image:-webkit-linear-gradient(left,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-o-linear-gradient(left,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-ms-linear-gradient(left,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:linear-gradient(to right,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%)}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{background-repeat:repeat-x;background-image:-moz-linear-gradient(top,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-webkit-gradient(linear,left top,left bottom,color-stop(0,rgba(255,255,255,.5)),color-stop(100%,rgba(255,255,255,0)));background-image:-webkit-linear-gradient(top,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-o-linear-gradient(top,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:-ms-linear-gradient(top,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%);background-image:linear-gradient(to bottom,rgba(255,255,255,.5) 0,rgba(255,255,255,0) 100%)}.mCS-3d-dark.mCSB_scrollTools_vertical .mCSB_dragger,.mCS-3d.mCSB_scrollTools_vertical .mCSB_dragger{height:70px}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger{width:70px}.mCS-3d-dark.mCSB_scrollTools,.mCS-3d.mCSB_scrollTools{opacity:1;filter:"alpha(opacity=30)";-ms-filter:"alpha(opacity=30)"}.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_draggerRail{-webkit-border-radius:16px;-moz-border-radius:16px;border-radius:16px}.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools .mCSB_draggerRail{width:8px;background-color:#000;background-color:rgba(0,0,0,.2);box-shadow:inset 1px 0 1px rgba(0,0,0,.5),inset -1px 0 1px rgba(255,255,255,.2)}.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#555}.mCS-3d-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:8px}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:8px;margin:4px 0;box-shadow:inset 0 1px 1px rgba(0,0,0,.5),inset 0 -1px 1px rgba(255,255,255,.2)}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{width:100%;height:8px;margin:4px auto}.mCS-3d.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px -72px}.mCS-3d.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -92px}.mCS-3d.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -112px}.mCS-3d.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -128px}.mCS-3d-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1);box-shadow:inset 1px 0 1px rgba(0,0,0,.1)}.mCS-3d-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail{box-shadow:inset 0 1px 1px rgba(0,0,0,.1)}.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px -72px}.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -92px}.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -112px}.mCS-3d-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -128px}.mCS-3d-thick-dark.mCSB_scrollTools,.mCS-3d-thick.mCSB_scrollTools{opacity:1;filter:"alpha(opacity=30)";-ms-filter:"alpha(opacity=30)"}.mCS-3d-thick-dark.mCSB_scrollTools,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer,.mCS-3d-thick.mCSB_scrollTools,.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer{-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px}.mCSB_inside+.mCS-3d-thick-dark.mCSB_scrollTools_vertical,.mCSB_inside+.mCS-3d-thick.mCSB_scrollTools_vertical{right:1px}.mCS-3d-thick-dark.mCSB_scrollTools_vertical,.mCS-3d-thick.mCSB_scrollTools_vertical{box-shadow:inset 1px 0 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.5)}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal,.mCS-3d-thick.mCSB_scrollTools_horizontal{bottom:1px;box-shadow:inset 0 1px 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.5)}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;box-shadow:inset 1px 0 0 rgba(255,255,255,.4);width:12px;margin:2px;position:absolute;height:auto;top:0;bottom:0;left:0;right:0}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{box-shadow:inset 0 1px 0 rgba(255,255,255,.4);height:12px;width:auto}.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-thick.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#555}.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerContainer{background-color:#000;background-color:rgba(0,0,0,.05);box-shadow:inset 1px 1px 16px rgba(0,0,0,.1)}.mCS-3d-thick.mCSB_scrollTools .mCSB_draggerRail{background-color:transparent}.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px -72px}.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -92px}.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -112px}.mCS-3d-thick.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -128px}.mCS-3d-thick-dark.mCSB_scrollTools{box-shadow:inset 0 0 14px rgba(0,0,0,.2)}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal{box-shadow:inset 0 1px 1px rgba(0,0,0,.1),inset 0 0 14px rgba(0,0,0,.2)}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{box-shadow:inset 1px 0 0 rgba(255,255,255,.4),inset -1px 0 0 rgba(0,0,0,.2)}.mCS-3d-thick-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{box-shadow:inset 0 1px 0 rgba(255,255,255,.4),inset 0 -1px 0 rgba(0,0,0,.2)}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#777}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerContainer{background-color:#fff;background-color:rgba(0,0,0,.05);box-shadow:inset 1px 1px 16px rgba(0,0,0,.1)}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail{background-color:transparent}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px -72px}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -92px}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -112px}.mCS-3d-thick-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -128px}.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical,.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical{right:0;margin:12px 0}.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools+.mCSB_scrollTools.mCSB_scrollTools_horizontal,.mCustomScrollBox.mCS-minimal-dark+.mCSB_scrollTools.mCSB_scrollTools_horizontal{bottom:0;margin:0 12px}.mCS-dir-rtl>.mCSB_outside+.mCS-minimal-dark.mCSB_scrollTools_vertical,.mCS-dir-rtl>.mCSB_outside+.mCS-minimal.mCSB_scrollTools_vertical{left:0;right:auto}.mCS-minimal-dark.mCSB_scrollTools_vertical .mCSB_dragger,.mCS-minimal.mCSB_scrollTools_vertical .mCSB_dragger{height:50px}.mCS-minimal-dark.mCSB_scrollTools_horizontal .mCSB_dragger,.mCS-minimal.mCSB_scrollTools_horizontal .mCSB_dragger{width:50px}.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.2);filter:"alpha(opacity=20)";-ms-filter:"alpha(opacity=20)"}.mCS-minimal.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-minimal.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.5);filter:"alpha(opacity=50)";-ms-filter:"alpha(opacity=50)"}.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.2);filter:"alpha(opacity=20)";-ms-filter:"alpha(opacity=20)"}.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.5);filter:"alpha(opacity=50)";-ms-filter:"alpha(opacity=50)"}.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools .mCSB_draggerRail{width:6px;background-color:#000;background-color:rgba(0,0,0,.2)}.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-light-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:6px}.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-dark-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-light-3.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:6px;margin:5px 0}.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-dark-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{width:12px}.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-dark-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,.mCS-light-3.mCSB_scrollTools_horizontal.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail{height:12px;margin:2px 0}.mCS-light-3.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px -72px}.mCS-light-3.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -92px}.mCS-light-3.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -112px}.mCS-light-3.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -128px}.mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-dark-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-dark-3.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1)}.mCS-dark-3.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px -72px}.mCS-dark-3.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -92px}.mCS-dark-3.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -112px}.mCS-dark-3.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -128px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset.mCSB_scrollTools .mCSB_draggerRail{width:12px;background-color:#000;background-color:rgba(0,0,0,.2)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{width:6px;margin:3px 5px;position:absolute;height:auto;top:0;bottom:0;left:0;right:0}.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar,.mCS-inset.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar{height:6px;margin:5px 3px;position:absolute;width:auto;top:0;bottom:0;left:0;right:0}.mCS-inset-2-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-3.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools_horizontal .mCSB_draggerRail,.mCS-inset.mCSB_scrollTools_horizontal .mCSB_draggerRail{width:100%;height:12px;margin:2px 0}.mCS-inset-2.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset.mCSB_scrollTools .mCSB_buttonUp{background-position:-32px -72px}.mCS-inset-2.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset.mCSB_scrollTools .mCSB_buttonDown{background-position:-32px -92px}.mCS-inset-2.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset.mCSB_scrollTools .mCSB_buttonLeft{background-position:-40px -112px}.mCS-inset-2.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-3.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset.mCSB_scrollTools .mCSB_buttonRight{background-position:-40px -128px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-2-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.1)}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonUp,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonUp{background-position:-112px -72px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonDown,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonDown{background-position:-112px -92px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonLeft,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonLeft{background-position:-120px -112px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_buttonRight,.mCS-inset-dark.mCSB_scrollTools .mCSB_buttonRight{background-position:-120px -128px}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail,.mCS-inset-2.mCSB_scrollTools .mCSB_draggerRail{background-color:transparent;border-width:1px;border-style:solid;border-color:#fff;border-color:rgba(255,255,255,.2);-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.mCS-inset-2-dark.mCSB_scrollTools .mCSB_draggerRail{border-color:#000;border-color:rgba(0,0,0,.2)}.mCS-inset-3.mCSB_scrollTools .mCSB_draggerRail{background-color:#fff;background-color:rgba(255,255,255,.6)}.mCS-inset-3-dark.mCSB_scrollTools .mCSB_draggerRail{background-color:#000;background-color:rgba(0,0,0,.6)}.mCS-inset-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.75)}.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.85)}.mCS-inset-3.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#000;background-color:rgba(0,0,0,.9)}.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.75)}.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.85)}.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,.mCS-inset-3-dark.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar{background-color:#fff;background-color:rgba(255,255,255,.9)}/*! jQuery UI - v1.10.3 - 2013-11-24 * http://jqueryui.com * Includes: jquery.ui.core.css, jquery.ui.autocomplete.css, jquery.ui.menu.css -* Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{list-style:none;padding:2px;margin:0;display:block;outline:0}.ui-menu .ui-menu{margin-top:-3px;position:absolute}.ui-menu .ui-menu-item{margin:0;padding:0;width:100%;list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}.ui-menu .ui-menu-divider{margin:5px -2px;height:0;font-size:0;line-height:0;border-width:1px 0 0}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:2px .4em;line-height:1.5;min-height:0;font-weight:400}.ui-menu .ui-menu-item a.ui-state-active,.ui-menu .ui-menu-item a.ui-state-focus{font-weight:400;margin:-1px}.ui-menu .ui-state-disabled{font-weight:400}.ui-menu .ui-state-disabled a{cursor:default}/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */.fancybox-image,.fancybox-inner,.fancybox-nav,.fancybox-nav span,.fancybox-outer,.fancybox-skin,.fancybox-tmp,.fancybox-wrap,.fancybox-wrap iframe,.fancybox-wrap object{padding:0;margin:0;border:0;outline:0;vertical-align:top}.fancybox-wrap{position:absolute;top:0;left:0;z-index:8020}.fancybox-skin{position:relative;background:#f9f9f9;color:#444;text-shadow:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.fancybox-opened{z-index:8030}.fancybox-opened .fancybox-skin{-webkit-box-shadow:0 10px 25px rgba(0,0,0,.5);-moz-box-shadow:0 10px 25px rgba(0,0,0,.5);box-shadow:0 10px 25px rgba(0,0,0,.5)}.fancybox-inner,.fancybox-outer{position:relative}.fancybox-inner{overflow:hidden}.fancybox-type-iframe .fancybox-inner{-webkit-overflow-scrolling:touch}.fancybox-error{color:#444;font:14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;margin:0;padding:15px;white-space:nowrap}.fancybox-iframe,.fancybox-image{display:block;width:100%;height:100%}.fancybox-image{max-width:100%;max-height:100%}#fancybox-loading,.fancybox-close,.fancybox-next span,.fancybox-prev span{background-image:url(fancybox_sprite.png)}#fancybox-loading{position:fixed;top:50%;left:50%;margin-top:-22px;margin-left:-22px;background-position:0 -108px;opacity:.8;cursor:pointer;z-index:8060}#fancybox-loading div{width:44px;height:44px;background:url(fancybox_loading.gif) center center no-repeat}.fancybox-close{position:absolute;top:-18px;right:-18px;width:36px;height:36px;cursor:pointer;z-index:8040}.fancybox-nav{position:absolute;top:0;width:40%;height:100%;cursor:pointer;text-decoration:none;background:url(blank.gif);-webkit-tap-highlight-color:transparent;z-index:8040}.fancybox-prev{left:0}.fancybox-next{right:0}.fancybox-nav span{position:absolute;top:50%;width:36px;height:34px;margin-top:-18px;cursor:pointer;z-index:8040;visibility:hidden}.fancybox-prev span{left:10px;background-position:0 -36px}.fancybox-next span{right:10px;background-position:0 -72px}.fancybox-nav:hover span{visibility:visible}.fancybox-tmp{position:absolute;top:-99999px;left:-99999px;visibility:hidden;max-width:99999px;max-height:99999px;overflow:visible!important}.fancybox-lock{overflow:hidden!important;width:auto}.fancybox-lock body{overflow:hidden!important}.fancybox-lock-test{overflow-y:hidden!important}.fancybox-overlay{position:absolute;top:0;left:0;overflow:hidden;display:none;z-index:8010;background:url(../lib/fancybox/fancybox_overlay.png)}.fancybox-overlay-fixed{position:fixed;bottom:0;right:0}.fancybox-lock .fancybox-overlay{overflow:auto;overflow-y:scroll}.fancybox-title{visibility:hidden;font:400 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;position:relative;text-shadow:none;z-index:8050}.fancybox-opened .fancybox-title{visibility:visible}.fancybox-title-float-wrap{position:absolute;bottom:0;right:50%;margin-bottom:-35px;z-index:8050;text-align:center}.fancybox-title-float-wrap .child{display:inline-block;margin-right:-100%;padding:2px 20px;background:0 0;background:rgba(0,0,0,.8);-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;text-shadow:0 1px 2px #222;color:#FFF;font-weight:700;line-height:24px;white-space:nowrap}.fancybox-title-outside-wrap{position:relative;margin-top:10px;color:#fff}.fancybox-title-inside-wrap{padding-top:10px}.fancybox-title-over-wrap{position:absolute;bottom:0;left:0;color:#fff;padding:10px;background:#000;background:rgba(0,0,0,.8)}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){#fancybox-loading,.fancybox-close,.fancybox-next span,.fancybox-prev span{background-image:url(fancybox_sprite@2x.png);background-size:44px 152px}#fancybox-loading div{background-image:url(fancybox_loading@2x.gif);background-size:24px 24px}}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;z-index:99999;display:block}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;height:9px;width:9px;top:-5px;left:50%;margin-left:-4px;background:rgba(255,255,255,.5)}.ui-resizable-s{cursor:s-resize;height:9px;width:9px;bottom:-5px;left:50%;margin-left:-4px;background:rgba(255,255,255,.5)}.ui-resizable-e{cursor:e-resize;width:9px;right:-5px;top:50%;margin-top:-4px;height:9px;background:rgba(255,255,255,.5)}.ui-resizable-w{cursor:w-resize;width:9px;left:-5px;top:50%;height:9px;margin-top:-4px;background:rgba(255,255,255,.5)}.ui-resizable-se{cursor:se-resize;width:9px;height:9px;right:-5px;bottom:-5px;background:rgba(255,255,255,.5)}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px;background:rgba(255,255,255,.5)}.ui-resizable-nw{cursor:nw-resize;width:9px;height:9px;left:-5px;top:-5px;background:rgba(255,255,255,.5)}.ui-resizable-ne{cursor:ne-resize;width:9px;height:9px;right:-5px;top:-5px;background:rgba(255,255,255,.5)}.photoTag-taglist{list-style:none;padding:0}.photoTag-taglist li{margin-left:0;display:inline;padding:0}.tg-close{display:block;position:absolute;right:0;top:0;width:32px;height:32px;cursor:pointer;z-index:100}.tg-close:before{content:'';display:block;width:10px;height:10px;background:url(../img/sprites.png) -227px -149px no-repeat;position:absolute;left:50%;top:50%;margin:-5px 0 0 -5px}.taghover:before{content:'';display:block;width:100%;height:100%;position:absolute;left:0;top:0}.taghover .tg-close{width:18px;height:18px}.taghover .tg-close:before{background:url(static/img/x.png) no-repeat;left:8px;top:9px}.taghover .tg-close:hover:before{background-position:0 -32px}.tg-close:hover:before{background-position:-227px -160px}.photoTag-taglist a.tg-close{display:inline;margin:0;padding:0 5px 0 3px;text-decoration:none;position:relative}.photoTag-wrap{overflow:hidden}.utag-left,.utag-right{width:2000px;background:rgba(0,0,0,.5);position:absolute;top:0}.utag-left{left:-2000px}.utag-bot,.utag-top{width:4000px;background:rgba(0,0,0,.5);position:absolute;height:2000px;left:-2000px}.utag-top{top:-2000px}.taghover{width:100%;height:100%;position:absolute;top:0;left:0;z-index:3014;background-color:rgba(255,255,255,.01)}#expoNewTagForm{background-color:#FFF;padding:10px;overflow:hidden;position:absolute;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;line-height:100%;z-index:1039}#expoNewTagForm button{padding:0 27px;margin:10px 0 0}.ptListHolder ul{position:relative;display:block;min-height:24px;width:120px;background:#fff}.ptListHolder ul li{padding:0;margin:0;border-bottom:1px solid #DDD}.ptListHolder ul li a{padding:10px 5px!important;text-align:left;display:block!important}.photoTag-tag{border:1px solid rgba(255,255,255,.7);background-color:transparent;overflow:hidden;z-index:1021}#photoTag-tag_expo{overflow:visible}.photoTag-tag .photoTag-delete{background:url(/x2.png) no-repeat;width:25px;height:29px;display:inline;z-index:3200;position:absolute;right:-22px;cursor:pointer;opacity:.8}#expoNewTagForm input{display:block}#expoNewTagForm input[type=text]{padding:0 5px;font-size:14px;height:36px}#expoNewTagForm label{width:auto;float:left;color:#F60;text-align:left;line-height:21px}#expoNewTagForm .inputSubmit{color:#F60;background-color:#fff;border:1px solid #fff;-moz-border-radius-topleft:5px;-webkit-border-radius:5px;-moz-border-radius-topright:5px;-moz-border-radius-bottomleft:5px;-moz-border-radius-bottomright:5px;float:right;margin:5px 0 0;padding:5px}#expoNewTagForm .inputCancel{border:0}.innerTag{float:left;background-color:#F60;padding:3px;height:14px;position:relative;line-height:100%;top:-23px;left:0;font-size:12px;color:#fff;-moz-border-radius-topleft:5px;-webkit-border-top-left-radius:5px;-moz-border-radius-topright:5px;-webkit-border-top-right-radius:5px}.c-select-box.places .csb-title ul.ui-autocomplete{background:#FFF;border:1px solid #CCC;margin-left:0;z-index:1020}.c-select-box.places .csb-title ul.ui-autocomplete li{margin-bottom:5px}.places-list ul li a:before,.topics-list ul li a:before{content:"";display:block;height:8px;left:-12px;position:absolute;top:50%;margin-top:-4px;width:8px;z-index:1;background:url(../img/sprites.png) -83px -16px no-repeat}.level2.active>a:before,.places-list>ul>li.active>a:before,.topics-list>ul>li.active>a:before{content:"";display:block;height:8px;left:-12px;position:absolute;top:3px;width:8px;z-index:1;background:url(../img/sprites.png) -86px -24px no-repeat;margin-top:2px}.c-select-box-wrap .custom-radio-check:before{content:'';width:13px;height:13px;display:block;position:absolute;top:50%;margin-top:-5px;left:-16px;z-index:1;background:url(../img/sprites.png) -345px -135px no-repeat}.c-select-box-wrap .custom-radio-check.active:before{content:'';width:13px;height:13px;display:block;position:absolute;top:50%;margin-top:-6px;left:-17px;z-index:1;background:url(../img/sprites.png) -46px -16px no-repeat}.ac-custom-message{background:#FFF;border:1px solid #CCCCDC;border-radius:5px;padding:5px 10px 5px 25px;position:absolute;z-index:1415;display:none}.ac-custom-message span:before{background:url(../img/sprites.png) -106px -16px no-repeat #FFF;content:"";display:block;height:10px;left:7px;position:absolute;top:19px;width:13px;z-index:1416}.select2-container{position:relative;display:inline-block;vertical-align:middle;margin:0;word-spacing:normal}.mf-field .select2-container{width:100%}.select2-container ul,.select2-drop ul{margin:0;padding:0;list-style:none}.select2-container,.select2-drop,.select2-search,.select2-search input{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.select2-container .select2-choice,.select2-container .select2-choices{position:relative;display:block;border:1px solid #bdbdbd;background:#fff;width:100%;padding-right:30px;font-family:dindisplay_pro,sans-serif;font-size:15px;line-height:19px;text-decoration:none;overflow:hidden;white-space:nowrap;color:#464646;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 2px 2px -2px #aaa;-moz-box-shadow:inset 0 2px 2px -2px #aaa;box-shadow:inset 0 2px 2px -2px #aaa;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}.select2-container .select2-choices{height:auto;min-height:40px;cursor:text}.select2-container-active .select2-choice,.select2-container-active .select2-choices{outline:0;padding-right:29px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-radius:4px}.select2-dropdown-open .select2-choice,.select2-dropdown-open .select2-choices{border:2px solid #f60;padding-right:29px;border-bottom:none;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0}.select2-dropdown-open.select2-drop-above .select2-choice,.select2-dropdown-open.select2-drop-above .select2-choices{padding:6px 26px 1px 2px;border-bottom:2px solid #f60;border-top:none;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.select2-container-multi .select2-choices:after{content:" ";display:block;width:8px;height:5px;overflow:hidden;background:url(../img/sprites.png) -86px -27px no-repeat;position:absolute;right:12px;top:17px}.select2-container-multi.select2-container-active .select2-choices:after{right:11px;top:16px}.select2-dropdown-open.select2-drop-above .select2-choices:after{right:11px;top:18px}.select2-container-multi.select2-container-disabled .select2-choices{background:#fff;cursor:default}.select2-container.select2-allowclear .select2-choice .select2-chosen{margin-right:30px}.select2-container .select2-choice>.select2-chosen{display:block;padding:7px 0 6px 16px;margin-right:0;line-height:15px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;float:none;width:auto}.select2-search-choice-close{display:block;position:absolute;right:0;top:0;width:25px;height:0;padding-top:26px;overflow:hidden;background:0 0;outline:0}.select2-container-multi .select2-search-choice-close{left:auto}.select2-search-choice-close:before{content:'';display:inline-block;width:8px;height:8px;background:url(../img/sprites.png) -134px -16px no-repeat;position:absolute;left:50%;top:50%;margin:-3px 0 0 -4px}.select2-container .select2-choice abbr{display:none;width:30px;height:38px;padding-top:0;position:absolute;right:30px;top:0;font-size:1px;text-decoration:none;border:0;background:0 0;cursor:pointer;outline:0}.select2-container.select2-allowclear .select2-choice abbr{display:block}.select2-container.select2-container-active.select2-allowclear .select2-choice abbr{right:29px}.select2-dropdown-open.select2-drop-above.select2-allowclear .select2-choice abbr{margin-top:2px}.select2-container.select2-allowclear .select2-choice abbr:before{background-position:-74px -160px}.select2-container .select2-choice abbr:hover:before{background-position:-134px -16px}.select2-container .select2-choice .select2-arrow{display:block;width:29px;height:100%;position:absolute;right:0;top:0;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.select2-container.select2-container-active .select2-choice .select2-arrow{width:28px}.select2-container .select2-choice .select2-arrow b{display:block;width:8px;height:5px;overflow:hidden;background:url(../img/sprites.png) -86px -27px no-repeat;position:absolute;right:12px;top:50%;margin-top:-2px}.select2-container.select2-dropdown-open.select2-drop-above .select2-choice .select2-arrow b{top:18px}.select2-container.select2-container-active .select2-choice .select2-arrow b{right:11px;top:16px}.select2-drop-mask{position:fixed;left:0;top:0;z-index:9998;height:auto;width:auto;min-height:100%;min-width:100%;border:0;margin:0;padding:0;background-color:#fff;opacity:0;filter:alpha(opacity=0)}.select2-drop{position:absolute;top:100%;z-index:9999;width:100%;padding:0 10px 10px;background:#fff;color:#000;border:2px solid #f60;border-top:none;font-family:dindisplay_pro,sans-serif;font-size:15px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.select2-drop.select2-drop-above{padding:10px 10px 0;border-top:2px solid #f60;border-bottom:0;border-radius:4px 4px 0 0}.select2-drop-active{border-color:#f60}.select2-drop-auto-width{border-top:1px solid #aaa;width:auto}.select2-drop-auto-width .select2-search{padding-top:4px}.select2-drop-active:before{content:'';display:block;border-top:1px dotted #ccc;margin:4px 0 5px}.select2-drop.select2-drop-above.select2-drop-active:before{content:none}.select2-drop.select2-drop-above.select2-drop-active:after{content:'';display:block;border-bottom:1px dotted #ccc;margin:10px 0 4px}.select2-search{display:block;width:100%;min-height:26px;margin:0;padding:0 10px 10px;position:relative;z-index:10000;white-space:nowrap}.select2-search:after{content:'';display:block;width:100%;border-bottom:1px dotted #ccc;padding:0 10px;margin:5px -10px 0}.select2-search input[type=text]{position:relative;width:100%;height:26px;border:none;padding:0;margin:0;outline:0;font-family:dindisplay_pro,sans-serif;font-size:15px;line-height:26px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background:url(../img/select2/select2.png) 100% -22px no-repeat #fff}.select2-search input:focus{border:none}.select2-search input.select2-active{background:url(../img/select2/select2-spinner.gif) 100% no-repeat #fff}.select2-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.select2-default{color:#a2a2a2!important}.select2-results{max-height:200px;padding:0 0 0 5px;margin:5px 5px 5px 0;position:relative;overflow-x:hidden;overflow-y:auto;-webkit-tap-highlight-color:transparent}html[dir=rtl] .select2-results{padding:0 5px 0 0;margin:5px 0 5px 5px}.select2-results ul.select2-result-sub{margin:0;padding-left:0}.select2-results li{list-style:none;display:list-item;background-image:none}.select2-results li.select2-result-with-children>.select2-result-label{font-weight:700}.select2-results .select2-result-label{padding:3px 7px 4px;margin:0;cursor:pointer;min-height:1em;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.select2-results-dept-1 .select2-result-label{padding-left:20px}.select2-results-dept-2 .select2-result-label{padding-left:40px}.select2-results-dept-3 .select2-result-label{padding-left:60px}.select2-results-dept-4 .select2-result-label{padding-left:80px}.select2-results-dept-5 .select2-result-label{padding-left:100px}.select2-results-dept-6 .select2-result-label{padding-left:110px}.select2-results-dept-7 .select2-result-label{padding-left:120px}.select2-results .select2-highlighted{background:0 0;color:#f60}.select2-results li em{background:#feffde;font-style:normal}.select2-results .select2-highlighted em{background:0 0}.select2-results .select2-highlighted ul{background:#fff;color:#000}.select2-results .select2-ajax-error,.select2-results .select2-no-results,.select2-results .select2-searching,.select2-results .select2-selection-limit{background:#f4f4f4;display:list-item;padding-left:5px}.select2-results .select2-disabled.select2-highlighted{color:#666;background:#f4f4f4;display:list-item;cursor:default}.select2-results .select2-disabled{background:#f4f4f4;display:list-item;cursor:default}.select2-results .select2-selected{display:none}.select2-more-results.select2-active{background:url(../img/select2/select2-spinner.gif) 100% no-repeat #f4f4f4}.select2-results .select2-ajax-error{background:rgba(255,50,50,.2)}.select2-more-results{background:#f4f4f4;display:list-item}.select2-container.select2-container-disabled .select2-choice{background:#fff;cursor:default}.select2-container.select2-container-disabled .select2-choice .select2-arrow{background:0 0;border-left:0}.select2-container.select2-container-disabled .select2-choice abbr{display:none}.select2-container-multi .select2-choices .select2-search-choice{position:relative;padding:6px 25px 5px 15px;margin:0 3px 3px 0;border:1px solid #f60;line-height:15px;color:#f60;cursor:default;background:#fff;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.select2-locked{padding:3px 5px!important}.select2-container-multi .select2-choices li{float:left;list-style:none}html[dir=rtl] .select2-container-multi .select2-choices li{float:right}.select2-container-multi .select2-choices .select2-search-field{margin:0;padding:0;white-space:nowrap}.select2-container-multi .select2-choices .select2-search-field input{background:none!important;border:none;outline:0;color:#666;margin:0;padding:0 5px;height:29px;font-family:dindisplay_pro,sans-serif;line-height:27px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.select2-container-multi .select2-choices .select2-search-field:first-child input{padding:0 20px}.select2-result-selectable .select2-match,.select2-result-unselectable .select2-match{text-decoration:underline}.select2-offscreen,.select2-offscreen:focus{clip:rect(0 0 0 0)!important;width:1px!important;height:1px!important;border:0!important;margin:0!important;padding:0!important;overflow:hidden!important;position:absolute!important;outline:0!important;left:0!important;top:0!important}.select2-display-none{display:none}.select2-measure-scrollbar{position:absolute;top:-10000px;left:-10000px;width:100px;height:100px;overflow:scroll} \ No newline at end of file +* Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset,.ui-menu{margin:0;list-style:none;outline:0}.ui-helper-reset{padding:0;border:0;line-height:1.3;text-decoration:none;font-size:100%}.ui-helper-clearfix:after,.ui-helper-clearfix:before{content:"";display:table;border-collapse:collapse}.taghover:before,.tg-close:before{content:''}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}.ui-autocomplete{position:absolute;top:0;left:0;cursor:default}.ui-menu{padding:2px;display:block}.ui-menu .ui-menu{margin-top:-3px;position:absolute}.ui-menu .ui-menu-item{margin:0;padding:0;width:100%;list-style-image:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)}.ui-menu .ui-menu-divider{margin:5px -2px;height:0;font-size:0;line-height:0;border-width:1px 0 0}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:2px .4em;line-height:1.5;min-height:0;font-weight:400}.ui-menu .ui-menu-item a.ui-state-active,.ui-menu .ui-menu-item a.ui-state-focus{font-weight:400;margin:-1px}.ui-menu .ui-state-disabled{font-weight:400}.ui-menu .ui-state-disabled a{cursor:default}/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */.fancybox-image,.fancybox-inner,.fancybox-nav,.fancybox-nav span,.fancybox-outer,.fancybox-skin,.fancybox-tmp,.fancybox-wrap,.fancybox-wrap iframe,.fancybox-wrap object{padding:0;margin:0;border:0;outline:0;vertical-align:top}.fancybox-wrap{position:absolute;top:0;left:0;z-index:8020}.fancybox-inner,.fancybox-outer,.fancybox-skin{position:relative}.fancybox-skin{background:#f9f9f9;color:#444;text-shadow:none;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.fancybox-opened{z-index:8030}.fancybox-opened .fancybox-skin{-webkit-box-shadow:0 10px 25px rgba(0,0,0,.5);-moz-box-shadow:0 10px 25px rgba(0,0,0,.5);box-shadow:0 10px 25px rgba(0,0,0,.5)}.fancybox-inner{overflow:hidden}.fancybox-type-iframe .fancybox-inner{-webkit-overflow-scrolling:touch}.fancybox-error{color:#444;font:14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;margin:0;padding:15px;white-space:nowrap}.fancybox-iframe,.fancybox-image{display:block;width:100%;height:100%}.fancybox-image{max-width:100%;max-height:100%}#fancybox-loading,.fancybox-close,.fancybox-next span,.fancybox-prev span{background-image:url(fancybox_sprite.png)}#fancybox-loading{position:fixed;top:50%;left:50%;margin-top:-22px;margin-left:-22px;background-position:0 -108px;opacity:.8;cursor:pointer;z-index:8060}.fancybox-close,.fancybox-nav,.fancybox-nav span{cursor:pointer;z-index:8040;position:absolute}#fancybox-loading div{width:44px;height:44px;background:url(fancybox_loading.gif) center center no-repeat}.fancybox-close{top:-18px;right:-18px;width:36px;height:36px}.fancybox-nav{top:0;width:40%;height:100%;text-decoration:none;background:url(blank.gif)}.fancybox-prev{left:0}.fancybox-next{right:0}.fancybox-nav span{top:50%;width:36px;height:34px;margin-top:-18px;visibility:hidden}.fancybox-prev span{left:10px;background-position:0 -36px}.fancybox-next span{right:10px;background-position:0 -72px}.fancybox-nav:hover span{visibility:visible}.fancybox-tmp{position:absolute;top:-99999px;left:-99999px;visibility:hidden;max-width:99999px;max-height:99999px;overflow:visible!important}.fancybox-lock,.fancybox-lock body{overflow:hidden!important}.fancybox-lock{width:auto}.fancybox-lock-test{overflow-y:hidden!important}.fancybox-overlay{position:absolute;top:0;left:0;overflow:hidden;display:none;z-index:8010;background:url(../lib/fancybox/fancybox_overlay.png)}.fancybox-overlay-fixed{position:fixed;bottom:0;right:0}.fancybox-lock .fancybox-overlay{overflow:auto;overflow-y:scroll}#expoNewTagForm,.photoTag-tag,.photoTag-wrap{overflow:hidden}.fancybox-title{visibility:hidden;font:400 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;position:relative;text-shadow:none;z-index:8050}.fancybox-opened .fancybox-title{visibility:visible}.fancybox-title-float-wrap{position:absolute;bottom:0;right:50%;margin-bottom:-35px;z-index:8050;text-align:center}.fancybox-title-float-wrap .child{display:inline-block;margin-right:-100%;padding:2px 20px;background:0 0;background:rgba(0,0,0,.8);-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;text-shadow:0 1px 2px #222;color:#FFF;font-weight:700;line-height:24px;white-space:nowrap}.fancybox-title-outside-wrap{position:relative;margin-top:10px;color:#fff}.fancybox-title-inside-wrap{padding-top:10px}.fancybox-title-over-wrap{position:absolute;bottom:0;left:0;color:#fff;padding:10px;background:#000;background:rgba(0,0,0,.8)}@media only screen and (-webkit-min-device-pixel-ratio:1.5),only screen and (min--moz-device-pixel-ratio:1.5),only screen and (min-device-pixel-ratio:1.5){#fancybox-loading,.fancybox-close,.fancybox-next span,.fancybox-prev span{background-image:url(fancybox_sprite@2x.png);background-size:44px 152px}#fancybox-loading div{background-image:url(fancybox_loading@2x.gif);background-size:24px 24px}}.ui-resizable-e,.ui-resizable-n,.ui-resizable-s{height:9px;background:rgba(255,255,255,.5)}.ui-resizable{position:relative}.ui-resizable-handle{position:absolute;font-size:.1px;z-index:99999;display:block}.ui-resizable-autohide .ui-resizable-handle,.ui-resizable-disabled .ui-resizable-handle{display:none}.ui-resizable-n{cursor:n-resize;width:9px;top:-5px;left:50%;margin-left:-4px}.ui-resizable-e,.ui-resizable-w{width:9px;top:50%;margin-top:-4px}.ui-resizable-s{cursor:s-resize;width:9px;bottom:-5px;left:50%;margin-left:-4px}.ui-resizable-e{cursor:e-resize;right:-5px}.ui-resizable-w{cursor:w-resize;left:-5px;height:9px;background:rgba(255,255,255,.5)}.ui-resizable-ne,.ui-resizable-nw{width:9px;height:9px;top:-5px;background:rgba(255,255,255,.5)}.ui-resizable-se{cursor:se-resize;width:9px;height:9px;right:-5px;bottom:-5px;background:rgba(255,255,255,.5)}.ui-resizable-sw{cursor:sw-resize;width:9px;height:9px;left:-5px;bottom:-5px;background:rgba(255,255,255,.5)}.ui-resizable-nw{cursor:nw-resize;left:-5px}.ui-resizable-ne{cursor:ne-resize;right:-5px}.photoTag-taglist{list-style:none;padding:0}.photoTag-taglist li{margin-left:0;display:inline;padding:0}.taghover:before,.tg-close,.tg-close:before{display:block;position:absolute}.tg-close{right:0;top:0;width:32px;height:32px;cursor:pointer;z-index:100}.tg-close:before{width:10px;height:10px;background:url(../img/sprites.png) -227px -149px no-repeat;left:50%;top:50%;margin:-5px 0 0 -5px}.taghover:before{width:100%;height:100%;left:0;top:0}.taghover .tg-close{width:18px;height:18px}.taghover .tg-close:before{background:url(static/img/x.png) no-repeat;left:8px;top:9px}.taghover .tg-close:hover:before{background-position:0 -32px}.tg-close:hover:before{background-position:-227px -160px}.photoTag-taglist a.tg-close{display:inline;margin:0;padding:0 5px 0 3px;text-decoration:none;position:relative}.utag-left,.utag-right{width:2000px;background:rgba(0,0,0,.5);position:absolute;top:0}.utag-left{left:-2000px}.utag-bot,.utag-top{width:4000px;background:rgba(0,0,0,.5);position:absolute;height:2000px;left:-2000px}.utag-top{top:-2000px}.taghover{width:100%;height:100%;position:absolute;top:0;left:0;z-index:3014;background-color:rgba(255,255,255,.01)}#expoNewTagForm{background-color:#FFF;padding:10px;position:absolute;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;line-height:100%;z-index:1039}#expoNewTagForm button{padding:0 27px;margin:10px 0 0}.ptListHolder ul{position:relative;display:block;min-height:24px;width:120px;background:#fff}.ptListHolder ul li{padding:0;margin:0;border-bottom:1px solid #DDD}.ptListHolder ul li a{padding:10px 5px!important;text-align:left;display:block!important}.photoTag-tag{border:1px solid rgba(255,255,255,.7);background-color:transparent;z-index:1021}#photoTag-tag_expo{overflow:visible}.photoTag-tag .photoTag-delete{background:url(/x2.png) no-repeat;width:25px;height:29px;display:inline;z-index:3200;position:absolute;right:-22px;cursor:pointer;opacity:.8}#expoNewTagForm input{display:block}#expoNewTagForm input[type=text]{padding:0 5px;font-size:14px;height:36px}#expoNewTagForm label{width:auto;float:left;color:#F60;text-align:left;line-height:21px}#expoNewTagForm .inputSubmit{color:#F60;background-color:#fff;border:1px solid #fff;-moz-border-radius-topleft:5px;-moz-border-radius-topright:5px;-moz-border-radius-bottomleft:5px;-moz-border-radius-bottomright:5px;-webkit-border-radius:5px;float:right;margin:5px 0 0;padding:5px}#expoNewTagForm .inputCancel{border:0}.innerTag{float:left;background-color:#F60;padding:3px;height:14px;position:relative;line-height:100%;top:-23px;left:0;font-size:12px;color:#fff;-moz-border-radius-topleft:5px;-webkit-border-top-left-radius:5px;-moz-border-radius-topright:5px;-webkit-border-top-right-radius:5px}.c-select-box.places .csb-title ul.ui-autocomplete{background:#FFF;border:1px solid #CCC;margin-left:0;z-index:1020}.c-select-box.places .csb-title ul.ui-autocomplete li{margin-bottom:5px}.places-list ul li a:before,.topics-list ul li a:before{content:"";display:block;height:8px;left:-12px;position:absolute;top:50%;margin-top:-4px;width:8px;z-index:1;background:url(../img/sprites.png) -83px -16px no-repeat}.level2.active>a:before,.places-list>ul>li.active>a:before,.topics-list>ul>li.active>a:before{content:"";display:block;height:8px;left:-12px;position:absolute;top:3px;width:8px;z-index:1;background:url(../img/sprites.png) -86px -24px no-repeat;margin-top:2px}.c-select-box-wrap .custom-radio-check.active:before,.c-select-box-wrap .custom-radio-check:before{content:'';height:13px;display:block;top:50%;z-index:1;position:absolute}.c-select-box-wrap .custom-radio-check:before{width:13px;margin-top:-5px;left:-16px;background:url(../img/sprites.png) -345px -135px no-repeat}.c-select-box-wrap .custom-radio-check.active:before{width:13px;margin-top:-6px;left:-17px;background:url(../img/sprites.png) -46px -16px no-repeat}.ac-custom-message{background:#FFF;border:1px solid #CCCCDC;border-radius:5px;padding:5px 10px 5px 25px;position:absolute;z-index:1415;display:none}.ac-custom-message span:before{background:url(../img/sprites.png) -106px -16px no-repeat #FFF;content:"";display:block;height:10px;left:7px;position:absolute;top:19px;width:13px;z-index:1416}.select2-container{position:relative;display:inline-block;vertical-align:middle;margin:0;word-spacing:normal}.mf-field .select2-container{width:100%}.select2-container ul,.select2-drop ul{margin:0;padding:0;list-style:none}.select2-container,.select2-drop,.select2-search,.select2-search input{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.select2-container .select2-choice,.select2-container .select2-choices{position:relative;display:block;border:1px solid #bdbdbd;background:#fff;width:100%;padding-right:30px;font-family:dindisplay_pro,sans-serif;font-size:15px;line-height:19px;text-decoration:none;overflow:hidden;white-space:nowrap;color:#464646;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 2px 2px -2px #aaa;-moz-box-shadow:inset 0 2px 2px -2px #aaa;box-shadow:inset 0 2px 2px -2px #aaa;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:none;-moz-transition:none;-ms-transition:none;-o-transition:none;transition:none}.select2-container .select2-choices{height:auto;min-height:40px;cursor:text}.select2-container-active .select2-choice,.select2-container-active .select2-choices{outline:0;padding-right:29px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;border-radius:4px}.select2-dropdown-open .select2-choice,.select2-dropdown-open .select2-choices{border:2px solid #f60;padding-right:29px;border-bottom:none;-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0}.select2-dropdown-open.select2-drop-above .select2-choice,.select2-dropdown-open.select2-drop-above .select2-choices{padding:6px 26px 1px 2px;border-bottom:2px solid #f60;border-top:none;-webkit-border-radius:0 0 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.select2-container-multi .select2-choices:after{content:" ";display:block;width:8px;height:5px;overflow:hidden;background:url(../img/sprites.png) -86px -27px no-repeat;position:absolute;right:12px;top:17px}.select2-container-multi.select2-container-active .select2-choices:after{right:11px;top:16px}.select2-dropdown-open.select2-drop-above .select2-choices:after{right:11px;top:18px}.select2-container-multi.select2-container-disabled .select2-choices{background:#fff;cursor:default}.select2-container.select2-allowclear .select2-choice .select2-chosen{margin-right:30px}.select2-container .select2-choice>.select2-chosen{display:block;padding:7px 0 6px 16px;margin-right:0;line-height:15px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;float:none;width:auto}.select2-search-choice-close{display:block;position:absolute;right:0;top:0;width:25px;height:0;padding-top:26px;overflow:hidden;background:0 0;outline:0}.select2-container-multi .select2-search-choice-close{left:auto}.select2-search-choice-close:before{content:'';display:inline-block;width:8px;height:8px;background:url(../img/sprites.png) -134px -16px no-repeat;position:absolute;left:50%;top:50%;margin:-3px 0 0 -4px}.select2-container .select2-choice abbr{display:none;width:30px;height:38px;padding-top:0;position:absolute;right:30px;top:0;font-size:1px;text-decoration:none;border:0;background:0 0;cursor:pointer;outline:0}.select2-container.select2-allowclear .select2-choice abbr{display:block}.select2-container.select2-container-active.select2-allowclear .select2-choice abbr{right:29px}.select2-dropdown-open.select2-drop-above.select2-allowclear .select2-choice abbr{margin-top:2px}.select2-container.select2-allowclear .select2-choice abbr:before{background-position:-74px -160px}.select2-container .select2-choice abbr:hover:before{background-position:-134px -16px}.select2-container .select2-choice .select2-arrow{display:block;width:29px;height:100%;position:absolute;right:0;top:0;-webkit-border-radius:0 3px 3px 0;-moz-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}.select2-container.select2-container-active .select2-choice .select2-arrow{width:28px}.select2-container .select2-choice .select2-arrow b{display:block;width:8px;height:5px;overflow:hidden;background:url(../img/sprites.png) -86px -27px no-repeat;position:absolute;right:12px;top:50%;margin-top:-2px}.select2-container.select2-dropdown-open.select2-drop-above .select2-choice .select2-arrow b{top:18px}.select2-container.select2-container-active .select2-choice .select2-arrow b{right:11px;top:16px}.select2-drop-mask{position:fixed;left:0;top:0;z-index:9998;height:auto;width:auto;min-height:100%;min-width:100%;border:0;margin:0;padding:0;background-color:#fff;opacity:0;filter:alpha(opacity=0)}.select2-drop{position:absolute;top:100%;z-index:9999;width:100%;padding:0 10px 10px;background:#fff;color:#000;border:2px solid #f60;border-top:none;font-family:dindisplay_pro,sans-serif;font-size:15px;-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.select2-drop.select2-drop-above{padding:10px 10px 0;border-top:2px solid #f60;border-bottom:0;border-radius:4px 4px 0 0}.select2-drop-active{border-color:#f60}.select2-drop-auto-width{border-top:1px solid #aaa;width:auto}.select2-drop-auto-width .select2-search{padding-top:4px}.select2-drop-active:before{content:'';display:block;border-top:1px dotted #ccc;margin:4px 0 5px}.select2-drop.select2-drop-above.select2-drop-active:before{content:none}.select2-drop.select2-drop-above.select2-drop-active:after,.select2-search:after{content:'';display:block;border-bottom:1px dotted #ccc}.select2-drop.select2-drop-above.select2-drop-active:after{margin:10px 0 4px}.select2-search{display:block;width:100%;min-height:26px;margin:0;padding:0 10px 10px;position:relative;z-index:10000;white-space:nowrap}.select2-search:after{width:100%;padding:0 10px;margin:5px -10px 0}.select2-search input[type=text]{position:relative;width:100%;height:26px;border:none;padding:0;margin:0;outline:0;font-family:dindisplay_pro,sans-serif;font-size:15px;line-height:26px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;background:url(../img/select2/select2.png) 100% -22px no-repeat #fff}.select2-search input:focus{border:none}.select2-search input.select2-active{background:url(../img/select2/select2-spinner.gif) 100% no-repeat #fff}.select2-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.select2-default{color:#a2a2a2!important}.select2-results{max-height:200px;padding:0 0 0 5px;margin:5px 5px 5px 0;position:relative;overflow-x:hidden;overflow-y:auto}html[dir=rtl] .select2-results{padding:0 5px 0 0;margin:5px 0 5px 5px}.select2-results ul.select2-result-sub{margin:0;padding-left:0}.select2-results li{list-style:none;display:list-item;background-image:none}.select2-results li.select2-result-with-children>.select2-result-label{font-weight:700}.select2-results .select2-result-label{padding:3px 7px 4px;margin:0;cursor:pointer;min-height:1em;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.select2-results-dept-1 .select2-result-label{padding-left:20px}.select2-results-dept-2 .select2-result-label{padding-left:40px}.select2-results-dept-3 .select2-result-label{padding-left:60px}.select2-results-dept-4 .select2-result-label{padding-left:80px}.select2-results-dept-5 .select2-result-label{padding-left:100px}.select2-results-dept-6 .select2-result-label{padding-left:110px}.select2-results-dept-7 .select2-result-label{padding-left:120px}.select2-results .select2-highlighted{background:0 0;color:#f60}.select2-results li em{background:#feffde;font-style:normal}.select2-results .select2-highlighted em{background:0 0}.select2-results .select2-highlighted ul{background:#fff;color:#000}.select2-results .select2-ajax-error,.select2-results .select2-no-results,.select2-results .select2-searching,.select2-results .select2-selection-limit{background:#f4f4f4;display:list-item;padding-left:5px}.select2-results .select2-disabled.select2-highlighted{color:#666;background:#f4f4f4;display:list-item;cursor:default}.select2-results .select2-disabled{background:#f4f4f4;display:list-item;cursor:default}.select2-results .select2-selected{display:none}.select2-more-results.select2-active{background:url(../img/select2/select2-spinner.gif) 100% no-repeat #f4f4f4}.select2-results .select2-ajax-error{background:rgba(255,50,50,.2)}.select2-more-results{background:#f4f4f4;display:list-item}.select2-container.select2-container-disabled .select2-choice abbr,.select2-display-none{display:none}.select2-container.select2-container-disabled .select2-choice{background:#fff;cursor:default}.select2-container.select2-container-disabled .select2-choice .select2-arrow{background:0 0;border-left:0}.select2-container-multi .select2-choices .select2-search-choice{position:relative;padding:6px 25px 5px 15px;margin:0 3px 3px 0;border:1px solid #f60;line-height:15px;color:#f60;cursor:default;background:#fff;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.select2-locked{padding:3px 5px!important}.select2-container-multi .select2-choices li{float:left;list-style:none}html[dir=rtl] .select2-container-multi .select2-choices li{float:right}.select2-container-multi .select2-choices .select2-search-field{margin:0;padding:0;white-space:nowrap}.select2-container-multi .select2-choices .select2-search-field input{background:0 0!important;border:none;outline:0;color:#666;margin:0;padding:0 5px;height:29px;font-family:dindisplay_pro,sans-serif;line-height:27px;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.select2-container-multi .select2-choices .select2-search-field:first-child input{padding:0 20px}.select2-result-selectable .select2-match,.select2-result-unselectable .select2-match{text-decoration:underline}.select2-offscreen,.select2-offscreen:focus{clip:rect(0 0 0 0)!important;width:1px!important;height:1px!important;border:0!important;margin:0!important;padding:0!important;overflow:hidden!important;position:absolute!important;outline:0!important;left:0!important;top:0!important}.select2-measure-scrollbar{position:absolute;top:-10000px;left:-10000px;width:100px;height:100px;overflow:scroll} \ No newline at end of file diff --git a/templates/client/static_client/img/exporating_logo.png b/templates/client/static_client/img/exporating_logo.png new file mode 100644 index 0000000000000000000000000000000000000000..9169d1de0c56bb50ab752ab03cea33ef0d2bb242 GIT binary patch literal 31635 zcmV)EK)}C=P)KLZ*U+IBfRsybQWXdwQbLP>6pAqfylh#{fb6;Z(vMMVS~$e@S=j*ftg6;Uhf59&ghTmgWD0l;*T zI709Y^p6lP1rIRMx#05C~cW=H_Aw*bJ-5DT&Z2n+x)QHX^p z00esgV8|mQcmRZ%02D^@S3L16t`O%c004NIvOKvYIYoh62rY33S640`D9%Y2D-rV&neh&#Q1i z007~1e$oCcFS8neI|hJl{-P!B1ZZ9hpmq0)X0i`JwE&>$+E?>%_LC6RbVIkUx0b+_+BaR3cnT7Zv!AJxW zizFb)h!jyGOOZ85F;a?DAXP{m@;!0_IfqH8(HlgRxt7s3}k3K`kFu>>-2Q$QMFfPW!La{h336o>X zu_CMttHv6zR;&ZNiS=X8v3CR#fknUxHUxJ0uoBa_M6WNWeqIg~6QE69c9o#eyhGvpiOA@W-aonk<7r1(?fC{oI5N*U!4 zfg=2N-7=cNnjjOr{yriy6mMFgG#l znCF=fnQv8CDz++o6_Lscl}eQ+l^ZHARH>?_s@|##Rr6KLRFA1%Q+=*RRWnoLsR`7U zt5vFIcfW3@?wFpwUVxrVZ>QdQz32KIeJ}k~{cZZE^+ya? z2D1z#2HOnI7(B%_ac?{wFUQ;QQA1tBKtrWrm0_3Rgps+?Jfqb{jYbcQX~taRB;#$y zZN{S}1|}gUOHJxc?wV3fxuz+mJ4`!F$IZ;mqRrNsHJd##*D~ju=bP7?-?v~|cv>vB zsJ6IeNwVZxrdjT`yl#bBIa#GxRa#xMMy;K#CDyyGyQdMSxlWT#tDe?p!?5wT$+oGt z8L;Kp2HUQ-ZMJ=3XJQv;x5ci*?vuTfeY$;({XGW_huIFR9a(?@3)XSs8O^N5RyOM=TTmp(3=8^+zpz2r)C z^>JO{deZfso3oq3?Wo(Y?l$ge?uXo;%ru`Vo>?<<(8I_>;8Eq#KMS9gFl*neeosSB zfoHYnBQIkwkyowPu(zdms`p{<7e4kra-ZWq<2*OsGTvEV%s0Td$hXT+!*8Bnh2KMe zBmZRodjHV?r+_5^X9J0WL4jKW`}lf%A-|44I@@LTvf1rHjG(ze6+w@Jt%Bvjts!X0 z?2xS?_ve_-kiKB_KiJlZ$9G`c^=E@oNG)mWWaNo-3TIW8)$Hg0Ub-~8?KhvJ>$ z3*&nim@mj(aCxE5!t{lw7O5^0EIO7zOo&c6l<+|iDySBWCGrz@C5{St!X3hAA}`T4 z(TLbXTq+(;@<=L8dXnssyft|w#WSTW<++3>sgS%(4NTpeI-VAqb|7ssJvzNHgOZVu zaYCvgO_R1~>SyL=cFU|~g|hy|Zi}}s9+d~lYqOB71z9Z$wnC=pR9Yz4DhIM>Wmjgu z&56o6maCpC&F##y%G;1PobR9i?GnNg;gYtchD%p19a!eQtZF&3JaKv33gZ<8D~47E ztUS1iwkmDaPpj=$m#%)jCVEY4fnLGNg2A-`YwHVD3gv};>)hAvT~AmqS>Lr``i7kw zJ{5_It`yrBmlc25DBO7E8;5VoznR>Ww5hAaxn$2~(q`%A-YuS64wkBy=9dm`4cXeX z4c}I@?e+FW+b@^RDBHV(wnMq2zdX3SWv9u`%{xC-q*U}&`cyXV(%rRT*Z6MH?i+i& z_B8C(+grT%{XWUQ+f@NoP1R=AW&26{v-dx)iK^-Nmiuj8txj!m?Z*Ss1N{dh4z}01 z)YTo*JycSU)+_5r4#yw9{+;i4Ee$peRgIj+;v;ZGdF1K$3E%e~4LaI(jC-u%2h$&R z9cLXcYC@Xwnns&bn)_Q~Te?roKGD|d-g^8;+aC{{G(1^(O7m37Y1-+6)01cN&y1aw zoqc{T`P^XJqPBbIW6s}d4{z_f5Om?vMgNQEJG?v2T=KYd^0M3I6IZxbny)%vZR&LD zJpPl@Psh8QyPB@KTx+@RdcC!KX7}kEo;S|j^u2lU7XQ}Oo;f|;z4Ll+_r>@1-xl3| zawq-H%e&ckC+@AhPrP6BKT#_XdT7&;F71j}Joy zkC~6lh7E@6o;W@^IpRNZ{ptLtL(gQ-CY~4mqW;US7Zxvm_|@yz&e53Bp_lTPlfP|z zrTyx_>lv@x#=^!PzR7qqF<$gm`|ZJZ+;<)Cqu&ot2z=0000WV@Og>004R=004l4008;_004mL004C`008P>0026e000+nl3&F} z003~lNkls$1t0~JM*s`*ecZDd3AXVQ62}Y(Vg+xU$;yp@$C?VUNf+R+wycn)4k!ee!>d*raEr@~T z$Dim3z6>{Z5sCFjG(HT;`ndoIMB;OK>7pUi4sBci_8|}wL;#ZnlyNcv#(0SU@{Khx zM13E?tc;QXK!5>AIPeYBHz=o|bY$7kW1ZTiPkWvh1z4c_;3)_1S^wT7W`bk^Vka{jSRq5v375+qo?EQ1AuwM!@8xeMjAd@~IU)&Cxl#t;Ap0?ed-Qy>~I zi4h4nA_B1QNn-_F3(0Ym(FrhoZwNTP!AkNyCxjniNce9;3V<9C5#R|x2>(77{`I5` zn4o`GT}_@j-~b7b1ArX=!x4dm|DOH#!0=qR7&#j6rgG!6yW7u4L`aH6>eF?tZ#l*B zM?v%s32LT@`1dzb0AMeTMA<|LBBW|x2Z`wCV5lsE=uPGXN`mi=1eqW%Dab-X?~1ht zC38Q6K-lq~-zOg^ei%eXfNAfz8T1E=JNP@>>37=cG+5Qr#nSSmeWW2$6~Pg>?EjIjkq zss9z^8>D_V|1|(2hO#B&Ks%TS$)GUPZaeRS2s|sPT$_zsWds+gpZ<`_)d}PfGA*g8 z+?1T^6vobl5Vu9U6g=i6qUnFRzQ&jGrVO>mM8ta@uC8qPnZ24|WvVLV+rE`LI$RKw zDnGPqC3C;!A58=%oxLhAX^H3yu9R-jFBB?LjPwz{IH+c*Qr3WI>`*@H9$YUR@{uI8zf&pP+h(3&C3{0JHp$%05 z<;)a#P2)|4IjE%nMx8~nysb9&;JNLzAaH<$uu<#sjPgT22N^Hy$MX!BRbDE=VAf{F zfeDjT1||dJG@+j1>HBR%RL1OCo>dydXLy2vC?VO@e#Ex7*Z#Aurg5x@M*jVb)Q4(Z zM9an?-unoUP*@;|PvJ|Mi8dMuW2mhD4ZNH-Hle&CS@#QNP!xLG+5>|T^59{k4GdMN zG=f6uB!|L1*@YOJG6z8$A^c_kUviMlY6JA&h_vpLV3lh!7*bdUX{P{Scq)Ij6Nb)= zmZAd5J#7PaEZF=?wly`z*$+egUt**>N6jMI;~>N;rT|iQIPstOOBs_k5FrtSY|cv! zOjuWkPQrwA(jd6>p9?a`EraI^QbS=CS%GJ_iz^>vB}t|@hs+E8K6Yf;BnO8D7H|)% zpd#yM3UX27R|zI;d%}Z+ga;3vRa8kK;R)aKdL;dytpba!FP#P;O2}q&6+1rM@^b5r z#sMNC_UZKeFEY{~M~#*rglMnB!JZpb*Pr+cLFXt4>Q-*3dgMB%RNW(!bLx<88MAL} zWO-hwA`9Wd$odMxx^1XI5fs8w5u^qb@~r-o2*?0GwTzQZUaIm-1l4;Txhy3@N-&dY}#0(*+etAPS_~Q@xhYUhsHZLu(O;AU%eZd;f~yf8mW~4zZr& zK}5)Ge+MKYpPZDULp3B=f$#c6OKG)XNSdpfWzb==@yd{A=Ae!z6_$;`DvztPN8gJo ze3Mx{20;3`x9M2v^j9jF%0ffgs`mZjKj;(@0g`0Y{9uRC@9w&)xq@BlU4q7qOn> z0A^%s-cxZqh6%&Hf!e=jgzVMTaT?T2tyX(bb?(`0=fAB5LMkG@!>pPeZ5LIRL1Gz9Fw9w`G< zK)!hoWMv#g3Qv%Mp$A!xstFk)E>ORI`$dI4ik|H`tm-u{>;AhLsm@Vzh*cg00KTE> z2K4@Rozwvq%0rr*P7=uUuB|qX$um1?v07;Ys{}%KoJbP9_9hn6wuOj>}C<`c_0V^nQiX?LUSiSK1n4*%}^fA z3fHV#u|$S20_D9(Q=Ihk==_eu&&pPV)f7cml@80O*>*F4;e#3vsqBtIu1xjsnS-8u zUZzUQvob{BOo3E;reFzlVgThoURtg|gWgQr(X-QJJW5wY{ zrG*S2ul1?_6DD6ZZB(h!1QrN0pp*eh_KPkR>a~9)4su}%rOKSg4v+yM#u$s@$4ce+ zt=v+*tP0^A7`MqigGPYw2Vo~Z$`l?!|96(e4NmmGj z48lK2_+)2OJc)3nVPUg6th1B=3%^)nMJbd42P^nL<+Vo<;scWMykzRCfYD`B`1F_z zY$qSeN%K80Svf8``O=|Xy~`-jSle)3*UHj+rR-Sg{~H-;0QkpxjRhFUR)1(%^B?6& z?a<5|r0TlmC@oH<=5PiTyiG^8D0&>`ba)ixsPM>mO_RUsu&>_(D-Np7bV9g2@8how z$&^RU3z)5}FBZ$|8E%yxjnSlS4i|t@k0RI}H1EO;!ado|u>chaK~)I6a}cyZF~W{b zTMzEqt8_p?m!d6-2mbGBq&i2E*Az2&Ivdoqv&Nyopwnf;to=cCL9 z^CRVNgR^fB;MuKE9WpHg^vHyDmNxhwj)xkK60i|~pbnxuWI`yyvi4AZ`ogxU2DzmE z;~+K%b6a`&Dw~m*a5~e$GqRmVQwOgJ^SFYrtbA45dpgq|$)uCti55g>d9L^GZ=}AV z<`C^Q5^!S3Y@F{$eLc&Q2XL^;OLdvUCa$r;Af+-~w#G3+69a@0hALIK)M`< z5C;G$b8zwvPOiMI@8KxO{){&as2`e`BBby`w1Tqqc(R7P*yadW<#PzGmBATjHqBZ{ zhC(!bPcE3@sUn7mp|MEjd@3~gxvn5Us7r{#jMPw0yY~#=20c3cU7HPSiam#sNhJrn zUNQbpg!_EJKiYdJSW09!FZHJ-MS!vRL>~(BNaH1~Mx$y$N^3YSBv-&XZwuO^LU(o$ zct$WGTGq>VZ_?tZN@0xCbg8VOiwr+hwFfN3AYV2?cfRblmS8^;6!a)V*~Ej@`wUmx zUd}}>okr8vZD`!G1uO(u87o`1X*FLhM@xGL_>h;IQXU^h9UnoA=EhxRB|W+pIFU%o z)`R#rH&P2n?K1)ZA+vEYC^Rpnd-vJ^lntr&q7I+TY;wPRkDv{UNJCfo)I9Y%k~r5; z%RZPN2tkl%226aOsxd$c=9!pGH6F_6V0+UbQ6)2%q}(w}BzknuR335o&3kc$5dgi| z^TsuA+csjutFL1B=FP^da%eI&i1OZEJgY(KRPT$(D!SO7fDPuYl5I^1Cn^SJ(y3K! zb)WuE7%2d7E{(*H@sRCJ$nDqyibO4V$59v}2g7IV8!hX0BL@w{{7GU)7;LwRB>@Cv zb*wzf^ODxoC{qaHvI~`f?98Dm+CCB1jCIfZX;i2x;ahl@YSrF*X9I4U|KcY1s!^CxjJ-$ssT5 z3p1#8sHX_kdR|J}%u=h&HZ@N`<{-P`w*x9`t^gZ^Lf0^?@=*vTQvG@%Bs|#>Ltgdd zQ<+#%(c^=^dgAP1(`Wo8n{GdI`-cmFXv92U*bkCv43O0XAT`xWh96*8Q^BY;aWD}i z1f#WS_W`xrw&4F;(&1!m8Id8r(AED~*og$)>T{<&nUZ>a8$Cy*F38EtPquX}z>Or{@g zToqGrHEY);ITT$(HlmX-CaY+$AtM;_v?iS>j8vc9JZJ_1OvJj|Wqnk#x?3EGRIn=g zU_F&j=#o|j=s)g|2XYu`Dg2x}5<^jC844=Oz@CTQ8`osJ^zQe^qVlqPQ_XvVsy{!| zpuFL1D}WdZqhW;wT-5OJfb#HBio*FaRrf^TY_`m8X{{0wN6owkMoRS2MoN1%Qtn`+ zEG5W^HgdAP+UZ^nD(nK;-fCD=dIFOr^1?b>XN1E;nZzAtnoPtuBPFm4Cv-XTcy4|3 z^$_GlGDtmGT5(VY6cuKD!mayse(Yx$(5h2RY{)XEKcw1L`8lHliMWvP1i_2tkV-Wm zxv9?NkYxu9pIuVkW$gMCsa%+Xid`QL-!O$i?Sy@~a9GiW;Q_+^ z@)#*O0&ZjD_gm&K_@xt%`Uh1>*N_N4JO$(K>R{`!Vh&(C;*Rc3Q-+u!Js0tTL!JWR zJDkm`>1YRrvBYET*Tg8)~F(|o41mh*d!Y5nXJb*9@Flg$i6D{p3nM^Y&2&xLD2vAKGV2L}VNlX%M zEQ45-P*&9!r2~e6oTwjCh``c|?p*PH1myWsy83m5HPKIGQ35#x`U^GgqN#j_o1iWv zU-D9ie2KEkK4~ZFK+65B?lTfdh)%i>pHfPy-DW7fTat>QL@4ALv>`jntLnJNp@POg z>#BcmSnbN28Sz@HN|v1@p4OGk`2tOx2S>40xgrRK<~8&47wuI!uQ0MPSqj%~x(uTH zz+oRB3VzlyKWs%DCWaTysdNZ%2uL+-MxGr*j_Ta_EI(;N zxbBlkldG~(CM3mbMTZ6inbM)Sq)SaM+Yafu`)8z0Sw?A$5EGxSupetxTIRe?hJ`yC z77qoQQ2OYr%20D2O*mt+8j{>`G?_!woTdZRpwoSz!Ca2^xhwPdysQC5cLaRGl z#gx(y%@Yjkc%V72at=bNHUXkUJEY(J9xQ>CxVYb^ogwSkx2)~5Ua$?ijvGYPZOoWRivL$Pn zI{*jBbGpQoSNd88?-9ro6!MW0#0Cc9yxw@8tJXbuyA5MsT>hWcT@1^-ofwTaOB_ zdwJg#@kD(8jZ}Zerkq5#sQ63_)r>%p)e6j)QnY8`4NxiUR*y1vWw0{ONbE1Em60tk zn^!mmz`AX;wr`*?Pc8Hw?YvaqCs2Ick<|LyKP;Cg2sT-|gJvUJK)fD8y}M@H?*5t_)<^t!#nwH*W=rNt|?h0&xi z`DHj24Kh&H`MQB)2}IH-i%`Dj4Gt#%EXju*_Cn9@m!{5 zS9vbmeo!{m_VrArrAoviMs7#f4Z2Zauv%fM4veh$ecV&>SoFP*l=&=kf*5 zvYn6aHw2{(wIwIfB`Of5f6-9cu3h~qPk_w_4L(6&Ak|BSGanrq%p&i5rTe7w zPZ_TAHN3;NFc~@;rwR3J&%oQIH-ltERrnFh`HBF7BF-}|J!~w(YJyfT(HyG0&`o-V zD0G4QZZ^}r8}S|$m8~`F9+T`vqyX9*w)!e1st|%hh(sMo3W_BXR?l5nWHLJdkRswx zSTur}f;`n~Oqev*A(WQ)U%b11V}~px@=3g(Hq@?Bfe8KU9+j=Uk4=|F1h%Mie%%k& zc@9|x4LZr?q{V#5D~wn=V5t@-NXO(f6f~Ct&&UX=AaMRTCBguH2lj<_=!#gvQiO@a z(g}mFP_mBXW4V4+?gi~y`wFy2TWks)b>a{7hY^gTeg~8!cUMPbwq3oJfKb|^4hfYB zg&Qj*e6Ourpt^L(&qa;vwA52HH$w3VpUS(BmRUR^AFA53Z5a-jL<>kCy z!d|UJue)IRjvDE8I~li)cKGWG5OH1opcDOlJO1 z9W@bjs7&)jz%)-Z1Sk|BLOKWTcug9^6lCIowLn76SOM_d90m+MY zu0(NU{|(hN>lFH{1+i3v$RM3$b(4(2av&3<+mXSFn;`B491#lVrg>`2TG)X?c1-U!-5ZTQG2{Q9lW@=MmoyFNFBpVL(lb5~-b4=33Q778~Fr-^&K-zxo>1_=RuKGB}eK1rbKVM{_ScFNeV+ zjz`zhzJK1eb5*DI^Dp=AH8hlTB?=<~5!xTXpF+kO6eVn$Lu8HH5{Ho@3MqEj983|e zaxD)QgnD6ENvsMdVhi{;u#=Y6vB@QQo-y?L9AKr$8%34^k;)zfxiP%u#18jn^9P${ z7RD({0FE#OY!0cWQHKsaESg{_jkZxdLMU?SN}Y+r^(I;T)I85@(g3aOVuAL0@Q=w- z7Sy<@>Ua+ve#~1WocA)R#!ju|Qz4jWkD7EDg%R3MkLu5t+XI56@=)4m}VRXS}P#I)F1lv^11;Z8xPpVmX z#}|WQ8SZ?kaTc~FQbDj!1&+xcc-d@Qw=y~P>Llk^CRwJ^PEx$tCKt?p(hiwPB9 z!fK?LhF{P~AkrNq|HErBUd@8iQvy02U^k1gQ!i((n<!o|M^4W0DW%Tci-F!Fro&XAj6B z5Na^I4GJZEx}y>z)5x&Ad5|s$Ybqd*PO7QJOo2eJ^ucd4ASgsIPED|cCX}bN6rEv& z*sSe*mJ&<;s!HQ!+2Z&h=-so$C(wmj;Ec&%Dr^y?nE}sDVf5sSQCdFq(#HC=bsuLT zpBd@dHq?*WF~tl>sWmp0$}n5YUx@-3$)2*X6*)p98{DxOr^2@`keID*lN|=7)#}u= zzx;~Bsv3k{Tv?uw%mtE9eeSSl4|?VaYP|x;;;@phq-WMGQrP1fPn&1NelAEMat@Qh zlkAcHP);wkfs+-V?eT(u{ga1XcO=6IGmfJuh3XhfFNZ;+zK(uFj{Rd>bIqepB>u6s z^qDjBvmPTRs8js_4tce_cBTyS&VUd_Auae&l3{jhig3?ezn07=n7|S_qLAPbTRWNb zJd&AJq5x__zATP5P8OZ@eyto>ShP7?W>PCn>5U-TPDGx5y=NqOn1WCrqQHTaoVaHY zbS*XMLqHDO4H8?Z!4`htke{Ru9yTP=P93R&LRt+5nM2i}BQR{jna_}Lu3}BQ{GyGN z0c0g3=5(%Y$M8L;lw`UWCV)tbv|#SH6g=!AnuWD-gF2{xbYN^7C1wC#SlT8S=g6nt zS#mmgeR_iqgd$}CQWEFo!{%br8=RFXurQq%Jw2~AOMQmBXV3v=f+S(F#{%8|5Cj!6 zWYUs4*5*<&>L?5u=CtOGBr7?Bym2yxw<0fx*XKw|Na^8#G2g-gW54rvB09Zk*ZPbT zN$isieQq;OImw8Kj{OH#z`fM!azqxVIatfBwKMbiK4yoK(EzpBHyl<^X3J}{As~~_ zE0+lETMCLPgl3z_J^`F3qmv)?tOAPjNiHE+$x$JlK_o)Tcv87qsf#6Mf0dVckA8tA z6|6zZ=(WKHMj13KD35O-Z8<&FvXrK1)3{Ms<6kQ}+b|o4_L2Dad7gw5jbrrTm!Pu$ z2o7>y((Bul-Pxm%C`jBo+~UzXsdyQ zgdRA$kPff|=y0vu zaC+8D=h-$b&Uj(6Dtlp(Vkl@{sGK$w=0gYvcVL>a-MS4`succSCnnNEMZbv{a?qLC z!jj4#Z(9D;?YV5q5|DW%t-akv$|>8t4X!MKnsE~0m4&sFbkd`5mfkrW*x$9 zK%Jo5MT;uVn8Th@87>*FX=n?xO~1>7oVb(REFXj9yal^HmIm3BCesKHy>|d`0QT|# zdb{Elwg9;4u4&IJH4RQ1rheA8>HJk}Gf6Ti1B?1r0`2&a|n7ax^ z9*Q;=mQELnE`y%5d{GBC~3M=v+rYojJ_WC2J%;Ee~ff;mv#NUS^Q8&nLLmpjYMGK{;KIOd?BjsGvWX=}u4$2M zqbx*z2(RD z4Xe6WV3dVV5(`sp8;q1m8HEb%dURQ;_b-%}g(4NRR7im|;U4C5LP1cX;J1UT>?cZd;z-&OK|kKlk1f%;w*I)VtuxhNkw=j z9DbUYbIr+;40zVUEK&!=5B0$!S|Z!aQfMKpR?D!B!3?SyFDHy~2D%Pxq0S5(~WEo^O2Ds&5`4d@8E9OpN{d9YCBH7Y#SxNT+mwRqz|BbYFpB~4| zpS!GUF6JAl|Anxj3O_T7lAj;=M(G=DgxEJs^|OG_f^tZ$<%U0wz}Xz4#YNLhwQZeq zPi=jZs*6Kpk&h{_H_x_dSVOZmk-?m95p+M)8X69_L{+HNEG#zMQdqNoj`@a47ZdpEcT1G9;v*h`ImgpsDDQ*{W1w48j0p_u8;s+_G6wF8Su#@!9rnS z`td5I!Fw=>!h(wq3ExHjE%I~!O||Ebdx|p8KWwQNQHfC^Qcjj zCY>jDlz#}Mi0te3-FNRfmL*{pt2}rV10fx0GR#-5UWuPj| zOD1Bo*n#qVod0G$D3XlT+Vn#^8>E44dW%G8i(HU?s?HiR%^(+QrOdK zcCyYX%}9g2Zd?Y%p~oof*&F2}$F??CZ+_XzF)IzAoK%0W|5gGn2riR)4u)qv?n-qZ11`h=JxRguNZ&h473w@4 z@~qG4vH$$qlS^q8a?J2JESM&Uq52ci}n6w56QJ+AUZ67Z&aFS48hiXGxGESOcR4Sfv>O zR9;Hu172uJpzl3h1z)kH-)=S}u@B^%_N4L}5(HOgYHZ0jaG-B#R>@dil&s(J$+i9} zZxBPMl1*9=mMU#SA>Lec>?0N)2RW~13)#}Ab}3*#78G;=uDf@Llsmsyc~&C=Xd64T zRcMkKZ?+eX`MIP}OJ#+r*roQgdd)fn+*B6Z-u-8~;=s`l#!E`C%B0#rEER`W&pBCw z8A2G}>}w4r^c5^E@hFKP+4iiT zJ@$=Lg5YYe2Fr5-@Fc@!HXcrY?=dOEW(&(>NM_0@kC|g2$AlacTrgZ9@TSVUxf15f z|JnDVt^{)Mw`#bO;7awn%DcK8o~2`>+Ua{oPeEb+`xM4wN~zy_kZ0-WVtZ$^56MKJ zyxBbq4bZD_0(61%sB!`P#D)Z7jkh51+R}PH8PXH5UqhHmo+03-b8sS2#JhC;(~#q* zx67>Odrwad1!_;Ii7L`j-qrV%tRL52*ArmR@ja##N^nCMFYEul0HlLVdoqzrr)H3F z@(4eB|B3_$OtWcZ7?ihjJFQp5KEu(~Nv+Di9PJ@lW0$0;#bmr!cvG+ccR8hzJ1r=*Hzpln97^tx z#<2Lp2+!~{ah_idh||)lrwzl1tc7Morac-|*TQr?*yO~*zsf|=u<$*gM5d)3)eAn@ z(R0LzJEDapSLU*51AqAq05t?iL2<}N`&3#Quxzcwu(Yd8NZ{}=r3ChD+wwp0MAyHP z<9N)xZ-tW#g*K%<$(Fnyhx04PlJo;9<5bV%sL&r&>ZCTZQ3tQ1|3-T{O+FD8V6SU* zVdlEY(DU?to|@4Y2u5Z@My*?+N<+?vz0_+0@MQRR*^;3&8qAWE#7tm70wR#C)aGK1 z>{3YTG$L%T{FO97 zcvWK<(hp9jmseDIuqG5Nf|Mk(JiULcq{VDv5Lg61`}-l(WhCL}rfS;Dqz-EM&`Y@h z1h&1uptkq;@h@$DcmCHsFRS23M~$UwELah#_3CkTiAvb&Q*7q$&9XLIyGpC*DMC$h zPvie9?%wNlDS4l8QsYStVk#+E{bwOBp5^wz99lIk6!5Ng%fSJeHl_gkc^#v}Y5|6y zhiWiiZ>rF(O;T-HQt*?b`}ITyw$gk9VeLNFd*JOc9qmOu)#dUO^yV4^B#Zhf6n;vf zQEB7dl_-KxF2b|P8di2GtZQDfJtSZegiY$eMq5oI3i^*di^~}T`c zq0RsWh7Aa0+R`X=CCC8^%gX+zV$^{rRWDrRh^Xp%k+8zQV}*6LsDnX$p~FT<4Uog6 zUbZF_>NjopN|&B}4=5}x+i2_Kcg}($zY7!EPt3kAl$t)ID_$eg?}xsKzNRdtG<({| zglYh;^!5_&fgH187zxXR>b%m&O)0cBSlC9angL{JefnRY10YmE>RBBHmkq>4o>uB( zYrRX}9Gb>C4TnYV8nsB+WRYO>$?|Na8)hH>mjS7kJ6yP=ciMHxSv7am5Slnx)2%T{ zX*{ZW-18@Ip;-D_;EA&m>;ciD1a>T4v8vBO2Q91qV9|KiYAVV=ZNXe=@z;#^Bo3Hk zq46EdjFmkFJXC>9YbKIxZ2C#}zJo6Da@l^dvV9|<$xm;+{8xT#~)(} z4;V^|D8YFJlY#a_>&`7gw1{JObx*=h;koQKt)3NiaG!uf-2BwW(Pt9Og01( z{OlWxFfCOF!M;vnohlI7;Y#C{t_+NglmUqR6R*9pwcA}^0QtG9un+gThg-r*v{$6`lsT;5|AQuN7Um2>UUTk(ySsf>t2l5*tI5RKAUSmeBt6sEhs7NT}!1Qs2DVl|p0{HokWF*=0t zg2BcQzn$tAM~)85o$x|k>F0i-u8X1`W*HEYEHCIoQBK|lM*)PZeA{R#G)dpVXjwHA zWPVpkVX#6?0%%VyElA0MZtePBQ0Jxg#y2B0%K`tvlu@kP%L-WtZ*4M$1qwtf4bxr$ z-r5LZ?QxROd{LO<$d9U;Yaj!7iWLV|w=$WKZAu~DGv{9foP1pArh$kYkcy4dbGy+%?gMhmFEEzzM zDh{M!o3T>-V8etI#w$8xcZOS5uXLIkKI~SN)a09pg==`DeP6vcs84YOR9^)e6Lvu|-f1bbx6?X6To|kh!A}7^G zN=m`kh*C<6eJzY4ngE-eQYsvjHFb{>G7epMxNL*eY#8Ex-`_V7*l-iEB9I6x$L!b= zB@G=>&;ZcIlAQ|p`6wF?>Zvxa#!Sf~)CdIcN9&&I3xNXyu_Xo(R%6l^5ZNgV>Fyo- z-78DI(>3eLt^7Z$brujscRfXUmS} zfm0{k5iKbGg_q6xMz3;OyGYVuo-Lg#X-}7iWH{}nL;yvZ3(*y*Tf60FiIT2gm!7wG z2+Fhx)%2Qxo&XRAau9mtA{cB4OSBjfSgpepgnm-Rk!v*$gf-uk1HnD2BQxd>mcF@~>{MNq&^9x5B@3HHZ$`s~(NWjl&y$u2fek?^mQ#)c zqaeGrX>nIcH4N;5y-=ZK!%!A++R>gQpywe6Ag8>V3s%4Hhh$A~acmVH-O1uG*;*Jx zg98r=TLsXsf&~Yj+e0u0q#0RkjRKQVa%PKiCj&)iOGMYsX&G9JG$?}E?C%UlW!Pd= zWn0q7wP%bMT=&L;tyN=(KDzw*cg~icr{0pmZ|OWcS%!O^1WEb;8OI zoencaL2+dNZ1|=fs(&^Bzpl)M&IMJs#!x;2Wnvuq?|!UwK|rDrv(! zG2{?{uOom>+;N#qhf1nq%*@bQ)0;ul1g7HyMyOA&rzMP`s%;-k`Sd*sX>XY>rUw*u z?*=CpF{w>qS=Zn8J$Tev8|N)05fN61r(hiq+x!A6Gi45I3Ty7E-i8g!p0xKBQS4l` z<*Zmy(J!57q>b~sP!Yp?VhZU_YLFFOWk6J05MD$Dl}_nYP*UVkf=Gu5f|OFyASKd` z(hVZg-5t^`-67p2E#3WQf2s)g&YAgYjw^rZT)@QJWz$Du_j`MqHVhmsov}xXW4l z*@Vkk%bkZ&b@r2I<;HCXhi@MXj3rjL_{z&!Or$BNCTo)8O-##!C6k9wsV`?_&Ywvo z<9>FZPZxj-rJKZZ8((L2?-r7M`75+z;p%pje4U4{2C=r2o?2^6Q_f@4$)trvX>YE} zB3wR`>H3=5Qi~xH0iVOVsqX4{_JcRL_~kIS#ImOEIh75Be=mrjx{;=F?@5_QQ&efXurq=fK~&8+?x z$=KbmjRDqrdAa64%+pHD*7WKUG-m8P<8R-|e@hlPhVH)5785tj7RCQq?@?^iYsNJx zNevmP0EQ&0iUszW`}&*LwE>D(k-D!4+8HyAg7h$Hy$wI+pSh|@Qr}KfYtsHIdq?;- zU++7ms`AX+tp935XrLuA*0XH$tMj7{uANXBs45+%nlL>spC=j5OB>Szy)6Qy-_3CL-J3dCM z4*bLrW|=xT_g*eUxCC4>9|RI0^sv?@b1~}M^-@2)dzP|;Dd2rvlk4h&*>TT03nP!< zyL^R%pM$)6m4_y?wQHA9!o0r5V5Q5+e=`>zJOusCX-N`=vJzVXDwx;IY4 z|ZlbykJl3b0^F&P4x2+D=F7#v!8@8MQTp52PFxQaZA|?BY7_f5#d0$4Q~Rf;vZAs3 zG5WO*XY6+pM+Rrd@bY&V*;U)S1~KF1o<;GK6lLUcIKB|{g(cR3D3B!P?#pWLVX2RLefJbWX{Rx~=UEi7L@Vbo zBP=iSgSX_^I_42B4Obm25o({1JvxrjT=;DXM!ht|+u^#?V@n3P>chm7y6DfevIE_Q zPL8iUolcaknl#(Vd**$-`g)W_5HeV#CNZuGTt#DMgWrtsdVJY07X9<6sRdX_J6x=a z&;!3Qg)ANB;XDto0PDDW?>1_$sFDDM8P_cW>F(Zb?XE z`3YCP^>A|RBDAeedE#oST_E%!?W>bV>vyG=_YUcgXK%Nra!B9C2~xamN`!ux$IR*9 zNJD7w>)&YUV=+eYJB!)`F|Rn9o$)C6pFE$>;3qg)`*zvoIOMchahS-yTX1so^E52B zH`?XyLXZjac9L2>zz8(1&-*zlj=ad+Jf1<%)^A zlFMe6MswP+@$jAr=i?TNqNxI|?3S*vg%am^u(2^%=BM7A}TWeTJTdY0KiFURT=R3kNLl6TAN5179w~24haEc1pDXxuawPtF^6&N~?un3@R5qU{ z?K%uOl@Lf(g~t&frb`3#-jRCgdr=5qFA@`3@a}p(E6jIv+PY^xTBew4Ml3zwr#H!C zktj7AW25FbF#i2>k?xzVznZD%l+*boQ{N;Tvv9Si4D(B-T{-%DEWrq=NKcLzkr z25FC%19&>#siC5-jpk0tT?DSXO`o4|q2neGIQBRXVPLRnxy|{b+rC3TR*&+Zq#+=Eq`YN$G&h`j-}|c zqa^=|sXOKF=9Pw2PjmKHQ<=Z}$J&JT*#}d8d2L9qK!QCHw@Uw96QLzPt7^l*u5#_d z^?DBL2dB`L(D2CDY{Om=poxir~Y;UK9=lR_F2S zCt=dnw0I#&zvMC3rS+`vTJ;}=Cj6U!%f&ifqBpJ54w1Fp7UN7m_Fi&Nnvukhu{Jrg zh+{1NcNgy;6@A&Retus%z?G1MHzh@X<%uqiA0I^^b6y>8A17nlJvj<&qXgWVgqBK6 zrThepPw(V7a&oHwb6NUP>?s)i^5nKOio^XMG+F+6Ck%{lsVMnN3}3%~M=Il) zL!;l3p>as1Im;Dv5JX8K{{29ypt*2p@5GGxeN9Nycl(SyE$)Jcn&w4A{@Tl1sXRL; z*-KKtYGjk6MkesM?n{fBU8rRx`e_N3zrg^$#0KE*RQQ{48!%OG;NhU0?=LsQriE zi2bs8tWjXTWOLmN$*I>A?GV3!gfW!kfUwVbfA>OT|P^&^8dfm-KV?t-qe zg$+7(Hbd!7`0C#aT2>xSg}zx8c2YYM;x}FSjf=2DeR#=Rr-jz|rj(6?fr>R7h40=v zm0hZfGc*5!9M#!L{MJZn$hqds0?)0Q&8cEt6FOR4G!LIhIs>nl8~=8UskBhf9#B*^ zU!;Y+;PS+Z<$G~Kh9y?oS7)4g9e{#MBZ@y*mw@v#FrTU1?o-<2)Xx((5&5xOlF^Zs zd-V?8a$hc{RsLSC9xvD8;z~M~Y*8m3y}4XHyj)dQRYh;N43&9=@;OuUFrfCTJ^Y&L zBw^5q09)Xk`e&Yc;NX&Y>gzNn@56^A8^t&6k~dZtIv9$*-$%A5zB*A>KlnJ`_$>A9 zTs=Ok1F$Bgm3$juUHCB)7RB%<@D9j1}`&+_m)VeWac4X9F?(+8;I>{$&{jA;kTJg#0 z>EVTXna4raITZg*jeS&Uw*B$*NZi3eP*nGx)##!h6pMhzL^4T(C)PpP!$Qxm!Ojlj}F+&+JL&EqkyP{n$QEq_0<}KVinm!eVEa zJAW%5;hr%nt~bs3;d}3zf_&OX!mq3;7|;AgQc@%F=r516aDG1v$0)=PSs}|rm8;G& zDQNZSCe~hB!IU%{V%!`>rSl>8-J@fmCJNG)yI?IfoVqL%p)w?={id;1_VJj#RwqwR zxTr6TI{72hD@XFURG0n3Tf(=e5YZ$G(&#iembAX2w4ce*qD@!AiDkniZwsUI$P#2L zl6{|2*6rUW{SkR0VSFOpqT@9$E5JlU)cdhNA>OyOnwE$Oh4C&ew7@q>>ToH#h)*8W z)Uih+qbY-oalRf+qR$qKAM&sNK2Vo@azeT7iAv*nHWNb;yZ1L-PN%&<=^;-Rm29-- zV{dE{Om}L56Wu09xV24Gnqf<~s{aZH9?F%Hc>R)nbhka#TdiWPI0Qnrg^sD7_RK48^@=YzqDzfATXf{%#FGU^f;T9p-fGlg z*4XZ}Wrd}_jNj1oiISF;Z^b@w~dT5^RoU0{vp|hFJfZPy0pW{!DUu&pqvYKvnE`^eK?!1?iPO;r0G}eiZxhTW8%i zW675L5x>!{NQG{ztb|Her0`B4R193OU-f0;#R%9Nh1JM2O23^a(6zHd#w!O0Em7KA zckU4vKMd{Nz+onc!r=UGM7#65o6ca07!?1-_fGn>ACE_jOiYA0CW2>bDs+xw^i_-Z zQPYN43(hBwa0q->rBH<>Xanz1^|g8j<;p9ndv3&RF*1_-$Ngyx=_EEsWkzqx=clduM2v;(L~%W6+UV(Hrr<*k zR19^O+JYFjESY1}Vg@HCzZr3Q>pk_G)F`X3PTU_w-~_b2B#TodGhvNv8)addU-`i9 zc*yu))1Z``>T>j;5ft(Mc9RU(7)O< z2ir57zbuq}MBaYlyQfMXZA8AVe!tVSWN72^S9P(TXdL=|ygR<4DZBiBlJp%^y2U)S zVd(s}gBx5TMIHd>z7Kz|CUNKtKE&JelqRI$k)=P)lfBJqCsXrsD0PRS9ZQ|tByexY zQ`K6Qkz7259WBE^vQO0uZR^0wxb*ij{p2sF(1Q|btoZA6&b42kp54d0*djUd%4zU* zj*>ygB^D-FbGF}UH@YFc!`s({U$x7*(C}eq&UVU7Oz?66`(o<>*Ix(9s)CwX8;!9( zOW%$;vb1)4LF`6B(T-%dnZiL=5|!JHuTD!#23X={GwH%Q3PfoK%PST)tPZ~Q7#SOX zUE+Dn5Y(!pT4TEv^`FTo|8}*x&e{HQWH6QBb-F3n)PnQMmnyk0^n1oQ%EA%_m6fNA zv@t<_(K^Xfy9>>cRJP;V?^N^U!yw?)X4!*q9wGxM6Uz{mF<($U5cL$RTK2)w#^S?caAJ828OF9#|*UMUdsUqLl z*chm>voNA#W@T;r)&KJ1Vy4Cp8_ga2<>`Dyr{153PoC3-NhVcSlfHTLCWCj+YcUNK z4U4?B=fb-4W<#anX*|33H#If22mJ>)0j&e+uZjOnSK*`H#dwwY(j~O}tX8!D;J7B` zlGdVF6(d^4Ad&V}p=O=*(w;rHa%Xv8q57EE*?|!iH-;@es6pjie+yvx0dtF z_)t1B`uqD|o1LHZ1lsf0_s=TMRa>u@IPA{LTTLs67X;CE=kl_0ll?TLPlA3(&? z6vu0IZPNAQ$;t8hkYRe?0e^q95E@0PmhoL&n#gXNXc^Le4K1yZZ{Kbys;JzU_Qw2& zpPQ4T5UJ(LD|o(^8pUVxw4i$9DLvjj0s?}l4L-^cEvs3FRi)gxb3dq+5vRXc0MP=x z{&UTvfZDD9N_WPKbs604tScDinEIlgq2e>hw*2i3#|>zmuikd0_{(IP4IZw5@@WfTtAFS?ROfiqRBAlbqon@!t-C!x<$b|;p=U3*B^g;+y;mJ1>G6`M zrG4@w=~E6=(Ga}Bpz`HKQwOhdIFEdSTXm?Zb_s;hRaWDvmfzs}-7cB<=X#hbRap>V zK2yE0mKq|?xnbwJUA3A}A@}m^@B4^|hz5Al)&v2kU`z6L=b!a17b$6JEq}N8X5O}U zp}Z1C=cWwt`A}5N9-%->6rep_Y01dOCShh~CM$q_vme>;m*lwtHJ%@6=gI!ukb4Gw zargQUkc0f==TBE=jPx7jM5;Szju$b8n^w%8)CRVmIGW5vOV9}bLmwJkubxbmn_UpW z0?T|Rlh*ijcOmM9oq303cUM=abUJ4qZuASg?U1R-$*wO|>fOtcTGwRlmT9XFIKoNU z+4tbtscBo5EdPxcr|z$3Cf4^H)OHLci$wOt@gC6V7s=}CE_qg0R~MR3lq?UJa;eFR z-a{O2*X(2f8kV^Xj0ZD%S?u{6+gYv z*I$l@0lS%2t3Q&e&BmIWskUkM#w08H`1=;35zgy+vc_&_)5OH&4zA5anF%pRGzO3m ze1!okeY@qr@Gz&%a#uv==*S4g@a(Lnu&B;NiGK9)@o_JJhaE97al@wre!?G|d+~O& zXSU2l2R~WVlykm}cDy%?|Bs0>Oq35(K|@{&gz^h^y|KF9ZhBJ=vbY=Q5w>Nv*BDY)=&r zs!j$<`(0PJ3Vnlw!l;uux0^9CF4HI-!O_V{{|F`(S=F*nBgQW0hYpKr;j-u2%tX06 zd2glZ@j8~jTxbNf>pVN$nj&6m4?)9SXvP*i{A6N6f~dCLdRi6+EszW%cHNq^`zOoA zB$CIP&8EsJVsD&#dwWkoz`PYY(+%hldKYTIs36LpUD)^J{Bs!{*dMMbL={p8nn# z$(5V^Whl3~6e4&%R%NxSS!6mQO?OM zf`h1buZ_%(RjdB;-{n%3^Vz;-cO=`*W5ne=nqVV|Vcb_q`fsp(s>Pom&MSicZ(hn( z&TooP(ex9%IqQc?MK}R$)oZAz*e$ZT?mghY+-;5wqIh9@{Nu^HSz{9u5hwNHr|76OeZ)HjcbFcHNDYG;r4eiNr!9F(;s>I z1e5cY%)ucKPEV^tjj;tA9FI2Es~-buVmy8Nw8-_!aoY7_D^y_-p5nY0*?O~C@~N|3 z2EQKiSu^?v1cZSg{AJKv?XvzS-4L}A>9X+U_;Ee%VhW3hpw2pOvM}}|2iRK#Tj1~$ zVhizdJU6WR!kwz_WY+0)%fc-H=8!a&+alqpnd*9X7mdpK^Ep6*Wjlo(|CdG-v_KXn zCX+x>T1FO@R(O8~WG{@FR2uwAlOhHbyt#t+zJ;*f9L;~b%0H%V)jI{ir-uG9WIs>9 z?X;OH*yZ|cHKcO4>4Ch8ick9M$XQNMj$Sae=MsGJT48r1~BOG$1w*Y+1%6~!iF1^&ome~MU}so}2Qk0`v{iZ)CTVkQ!K{rbV= z)Rd4Y&&}llF)+Y+eOgSpcN#o4;moS}_F!#-itpRMvUzJ76 zJSGWfWj7r!GK4y*puFNZI9%?IBvw{d?t1^rKp^~tYsYmtLZ$X-b8J)hQ9k+DCcTYi z#KPNm?}iRRS}X#;v;k18ps3!ZzLRt_)^L6FE|_=ap^gC(yKXQavd`zMv--$9_5keV zo^w9%1Rwv8A8}fEbIvwxJ@h6(r+B;@!G)T|zZz#1OfKkpSsbZhOG4>-y08z@Z1JF9 z@FoGyypC8Fc_4=m*lKro;%#d#3#m|5_dv&fZ1Kg7;xZ$JY`}gUbOnzC{Kia$>BJv9 zV8*ez&&`-~bHGwuW|Q=;2eEVfp4T~BJ}>Lv#UKA$-4)Sgti0HBakRD^@<-R+kEQi7HLO1k~a zO(zuoOins7x^t@(Y6bxyH0hE_6l|0q2NNG6lf!zlD=*nTeHb6F(uja#| zR!;u2dpS;>bv0kJj#NxcY#cz!p}N~<#%8RJGN9EU&UVr``{z%hACZwuzI4Hr*WX{W zo(;i_TX#aE?tu=_aA~^7FpVG5K6UIrusvP%i_N{zdf(=j`%=TzmWAA(1`tl_hnr*A zn`4D@e9ou4JF_tJ2zMyO&f=6s!&Ts)KMKNuAWEt41<2unQ#0G5W?~v z1neC?`grRa_V?Ao6Bx!>_3`ekjj5ODb%y*`S61;~|BNV;X2rNRtEFfbmi01Yf;EG;zGqWu>pi^Wl16l>`Mg=^jM;nt(>o$J< zJ+KmIEUSrb*EygCQtIm|wXQZ)XgnLi60)0&<|zT&vhP%sm)mxMSMpP{s3Uwp%*v@f zY2F0`^xt8>+ciF0{b`C2leOxMmeJbqJ2{u!*O9FFVB7X3Y-|J_4~>5O_(4q+aAiDM zYWyCdT4Am+=Coavd3Zc!Apx}-sB^M21yx9kfRpx4{}DM0LzWGNNs$Pl=<$?dqw>%sb0G|E$5j_5QHVaI5Q&pUM|`(V)fXNt5%@NpNmD(0@o zQA=SEFi1FV1KLTjMm8hqrR6s;0I$1LPS&|JD40zFr(@409=hDz+yEtg)m5H8_^=@} z5hW!;Fs2I*ln~jD=Dqhox>aNc9)Y^iiWPKwIScr(lpzzXKpxOK`7e|$T~tU21+eL5 ziF;0Ap&TMA)QuU0gMsso)7+H0qN4Q#Qb$aO(ug$n-2FxVOy{;I4kQ~wpp$W}6l0%v z^@Pn`ZQBh#@8`Gj7~x+_kj)J1)GN|yy^lf8^SN-x?E3Ny%uf`D{(TUsmwu$=$c#b2 zhx|)NK}rhk;m#aYYin!e&GiLMddnN`nIHd#GW*RDb>QiqgT*gE3dRC!K1`+OKNx!i z)U>o3%94{&^!4?5=G{@*bz0EDjvyOzD|jgnjs0u%GZ+{oyXL!zA0KgqL zXyElCromNgOTrG+vd_`I(X=*VFe z#JnamBV!{_u|H6W+dq`a68#6Z+tYrj!F>0@O(EQYn#MeF!qa|?mzzxq0nCARdZn$s zpcpU9fam801gRoREFg>?2S3|aJQbWt?(z6RF#mo>Ifxcwi^R6B(dZ1xnOVV9+snma?3+8E}3Nf;1-*LNfN*gi;01>c(aa;3)22h^@0YBtuW?{kI zpTEG`ZV6Oo^%uMk!_IV-RTE@C;|=NQ>1s|+PC@{$zk#lmerRR!279<@zppzQRRc$W z{nFBqois=sC8@5C0x7GYQx>WVr2G){`TUxtrKR)GlHxEZ>_!7g7>K<0zaA@SX=#1g z$j&r?KnC&Tk*4#WnDx#q1-yIIb3<7>FLz`Cjkf-zch6e=$ycjjz5O{Kb8&l1Szi9@ z;-b#Mf=Yq<1lOnGtY7Ap3*M1^FLr9PyuTp%Dt*xC(6Fqm3_7L~sNwhwQFpoDty-+( zwQhBDm?@}{h64Y>^iK}p8HIv0vu3URkL%bVm`NvioIve+H0-XI_RtYSLKkQKZV4Ok z2wVs{jj>k1-u8ym#ejn?{Pk*9aJzm0Z!Yvy3t6ebISs&G7RrKH37p1%s-7G4BmopD z_r(0S*@k4t%`iz%o8-UM=2?D&qoc~_*B3keA0TeH;~>LiOO6KJ3yY0$07!=IHES;R z(?a%EQ+KVdU4^$aw`KYFL@~&?Fp!Y$21$m}@W==+VB(9+oScmeuLs17K+IxXv0^Z{ zkjZ7#9Z#BEq09rwhP}&_)lgSZD6yj>6mBtNcLQLJZ(_M~=g#R!p{o~+4!ovEfZ25A z-Vv0z;1;`b;#$R=>qPfKWKGxq1w($dFgNrxLF55PT1aK%DGD4DJhbnIkiYC3#( zdW4T=i!ZYji(Y-~zqX9?x%~4z%{s@3jsAi6?f+8EF)=Y~%XS0DMA;UzNAndg^@5c*9D}SIpDAl1jV~BZ3E!vRIg+|0X379!y z)xn%AwznQ?T@1%3u%~bO=-sT4bmkD!s67MINDk&Wgv#M>m``u~3u3{GiGBkL%NE=( zVD7Oi3#Jx%WG~_S@w$S^vNQbk{+4?;YmMn|fK={Gg=`lxD&D2Q=es}v(N7iUGUO72 zfx&f}JntD5uk^i^mPW2T5?z6&gUag$;rpB&0G{qvpYb6@y^t#q=truPcS~>aBUFP%gf8i+}wM!8XP&S z;(%TAtCxSOZSV8TAz7k%G+!-DlD-I>H&SNL%#M%y!uJUz=fy*MiSaQiAPqpt#vbHS z2I-{1Zc0rKV1c)IGnDbB`E+mTnd{{#A)jDwcJ_K?uR*dOIgq?3)-&kacFqlxFukJXnzId(adbYd~{oHUA zUtSl|kCkxJo@edk9`ED?2(K`Voyrbtc4CqLP=f?>I}a>D{>l@R<9w&HFVQ*%huVI0C2FPoZ`g$@{vOy`)1 z0$|EFEg&j>lqwO@27ZdC0gN)k?3Zp9h2@_N{RsjW(_LNC;Dfb6m{L7(!JyzHNLbZ| z*IJuv5QHkTTg=uj9WFr>e`=_$O@qb1`wD}S|1@!OceOA6h2`2n@*XrQ4P}Tf=)zro zY_$q=F~|&H1?gqV<#Y=9fIkXsnflF`*x0lNAuWPDFr~C~_!T46sNqBE*47rVm_67i zu6WBf5<7C+sKQ$ZZDbbeMc|MZ&QC|i#!^AX3HuHr-hTMtulUsFDg?63z|HCm-Xg<( z$}3HNCQNN7O=AmB93>;9#1`kLZ0B8#JE$UAhjg~cWQ-LV;uCAyFLam`)|H=vjBW%& z2QeJeGswA^Ka`>a;#-3fK5n3bphnB-biv1B1Rq26FpN3t?VPj4U0B=1#Kg$F*oPeA z$_*KjE!^ieWoBWyngw=L(E{&kcXJ*vQ?0TaIrE8@YB*vTaDlOT41lGKlYb~MwnEvu!?&CP?gEL#af8X)2bFDpLT7}*3v zD4wQ}JrKE_ztewc4AL5~Jgj?p7jpb^xp=;#Ou_5D5SyX-P)sr|XS2T@VUP`>k&=?K z+iVO6@!iBfH|+awQocp!837?74Fs;UfGtzVc}~dCG6Z731Hjb+MiSDW!9p!T7*rCp zUyuZ@L8_ycF62zx1TOY2ApyZWbjFQ3zcCQMFFLR~DwpZ_fQpdzra81V(qJFuBCU}Y zDF1(%4JUOw`7^KtLAq8#CgqRNQE=JhL?Zs=_%AX?krF)pjg586=<~a041Z7!q@k#Y zh{y@}oK?0S84(|>RtSU6PhpCvLfV&%%*a&74|=nf(ZlEMW!)?-24iAnC^tK+44N z6t96EfSgNQU;hyV{@|1!zlj;P9@DTp$}cP=M&=|3Ac6YDX~RyD{J|UB8(a&?oP=yF zmsvk@ditj&VZFirdH$756uVIE_4%g#ekX%vH%o;K#WS6j2S62xD(dQ&FL9Ah@HGqW zGUseT@e)>=;gfV-!q+Z{!?P@IcF+shse@~3&;o;6my5(Fg}|Zch+5F9PI!JTZcriw zqN}?b*H09gyq*}soNR*itlmiWp=`2&=T&iVILiR7Q%@AqF4F4>jEAKTfxZ}5QlSOV z|KkD(XI21U600F^b~NMvz-|Iinhi`Ee+IiRL8q;JHJ1IrPct=upviu9Vz4UcV=cRPwszAtE?PX+#>z-Cma)Svvv`5yz>o6 zS6s*fvrnhyuHhkwHLNXJBf~+~SAp@g(=ajF9Drr!0|)>GNE-(cNuAVlH`gb72Z=Y% z{cw)b#LTL%rYbB7fy#v8z+n-CWD!^-TDWYg^;3YjNrm9;4O05^yYHP}*=|in;QO^? zAye~rkb0YPnWPwVL|d0kFav%Gad1S-wB!hp*H8}Pif76Lvj#5~e_uV@FtD+)dB|_i z4q^-Nb2Z8w(+)&)1UYbgPIE^f$0Ml7U_eVri!$Kz!%T6;eLGH+42p3*>$iVVGx zN!H9o-YR-SYc7M{8Jl1|2{nV zAOyWgRU5@?Wl$oQ__Fu)Pv+m942glTw8&pCYR2;Tfd@o2TWqtb49bo!wwE@tdjTdR z2egFMV;o%QAX^BIVt$xH!ey{OY)K9*QFRQJpn^LKm3BL`+3_#z7U7bT*JkzU64edQ zVuI7QrTSPaY|sLlnuPOIi*G@fz{Xla2Lx8L-M{f?5b){)3>Aj^yw39M0+~HpnCYvlxQ- z8D!+3b2RY)rB(&9*T5NmSchZ%#|s!fO4#U@TO38;PNrO-9zCo}4V=w%=QD}>l2w(u z6g^%i?jRAuEde?q09uQ-PvB(w03n0I-cVkC%;s2cid?N17NQ~IzH~jgLQ!W*Cr^E8 z#pHg5*gl0NVR16-;6WMl{0$X(icl~3Fe5iIG6J_mmSvKWd&X3Rto5ghDu}f7A82~NCbnTo zApt++AB3Q2+YL9apb{mQrZL^ly0so}4^d{;#V0{Tg^x@Z2P-VJhMHl2pOurtF&pJu z1g-$bSe1nrG zp_aOs3JDM`usWEwTxv_s&&NDEIyzMe91doNrKkifMMWqIpx0ssjc5VXIL@Vn(IJ$K zYL6muJ0D6!0$h1H7aSY~E@C!2GocIVxJ*o%?=i%=!@dC&4{|TSb3Cq#`La&Gn`n)| z1Xeka!uWP7EpQ<#{8CS#m|s~ns$t8Yl991OH;6$i zEF~qi#=ogc7$go7ECiy16fhvj7Q}~D=h-oG!a!EttbnAi{RBC2N}(7XkzA zvm#&obst1VJoAeIYD%Iv?gL7zX4i>DtTpgk0+8(y9?GOpcYib6=u0tE{6J%v)3xN-L z6si8_9M%VOYt^i|L{2i!lq$-!VXr_9^HXx$uYzjwMz&CgkMpsuT7#J+Ib_~Sz<*J}A@)D49hWH1dP;jmHEMQSx?|uKzK(P7NL}7w zyU(Ojz<;Ol35@aq+y=P-q)UZ(fVC1)UccgIu61d4alB=LMapT^ zR_kzZy$^x;p(8AJkXt3#Pxf>!e|Z$VG!G5k44wFST-!$*;-Pidt8)$1`4x3mwDa$N zfg0HJI$oV`?i3vhW}eP%DBqhmL16jJ-N{u{twKv8y7oP+LCoGRlD-+dp+dBNvgJT2 U3H=5C>mfo)Ojfi&_~W<#0giZsV*mgE literal 0 HcmV?d00001 diff --git a/templates/client/static_client/img/rsva.jpg b/templates/client/static_client/img/rsva.jpg new file mode 100644 index 0000000000000000000000000000000000000000..7088941e1ba1fcbd314af27ecb1fbc44d05ee098 GIT binary patch literal 4303 zcma)=WfQvie)_baePAI@*01Elb=?JBTo_0DKD3pc{M)wyO zBaHqO7$YOoUl^I0Sy-5v+5W=uUqCc8G%y&9m64H^gN23Vzxw}sa?%UHVSq7U1p&bU zFdPJdgH8s3LI8jO5D*A-YV?1hrGwJIz#s_dU;Y2CfFU5-Q`f8j2nvEgz)%P+-M{-z zgP}CE0Gv&TolZ{262ZZFTVD4Y`r&I~k)}~Ammmc_Yd8RcfFV!@2mprsdkzSIgM}b+ zI&9x8N1?aT4>Oxye?hR*Jd@XrZ5IArJ___r%cq}^7t}+~m7k)bN z$i9U@sl~>VvR2*(vS&g)>*%`{k|o41rn8z?U^MT3YZw2rnr96kl&XJ~AH?qGgT*#_ zuOz-s2x52e5mRO{N}=uCcg6n$%e0EBZT2sJYHc&_>ES-9GaoJ*Q5uICAX237BbASu zf^0{p(>0135>oN~8Ow;eh)Y7cC0NqSYq8lxY!YcVBU5AMN^ijK0-OH(9}gIRKIw$u z*$W1bx_{Dhtbd+S$Uxb?O(ZLtuq3J4ahg0Pi?Ji4sM2xYKG@eXg|RPh==~%5WfkvQ za;Jb~_D_i`$jf*Tw(F}gTLNZq5XRZ62w$X2#%%Gt_>J8xx|YUvY$`Cem=Gm3C6u`R zxzzKkSF?BZRKd~yrL|>-9Q)C;+&9qB97Y#Tn^|KHV@*p-%gD+X7Yp(fC1PUFN~Ps` zD+=+kroxOPO7F-w-_^LncDwe{;aqd5$eqqho^X8|^S%du7I85$IUr8vpI0gw#NQ5W z_)}7?Dhx)HF~(*oOg8(2lRH}%e1a4Ev-1zQ;#De9x#a3g367C!rnbD!FTt{EBe)9p zrrZ2dkHU;Y&|l@~DC{x(p;{7#GxVJ5Q~8ZYE$T!eH{_45E+cWa1%SfuZ{%_aZzXn6 z0_V}ONz&)eE4t6CXJSK?D9A+^UW}AdcRp(k2kbaGgM?~E@4S-t9L}a6mjmcrv!94) z3z<#*Hrgppn;&dW7qyv-6eU$g`6W+l>$?(na^h>i$;>IiYvq)-2q#mwF=5Fe)8==Q zUlo%pKZOh^Cl({XfYo-$Cw*c!s*ulfPF&^b`O&%)l1AY(BAm`P1A4l=ts&!n$&LW#|D2i zugD@RPFMo0k_FP|5CLZ}2E%(c9Ali>Xtvgv1?B5>hC?ac*~v{j+w(Qy@ebBS)-T$w zqqF>`5Oz~09R7~HPjK9rH-4PqYBPtMSdn5LIEY@RG<1ZK(~e+d8PJ-P`Hayz#|>4G zrs|V3TX-3DjdN{m0uGzR>zE;FP^!Fsjp?1fMV{J3ZKjVVR|Sw;f{r(m^5uUk`yADm zs$J)5v<MOlLHkD*t?3`(_~;_rSF! zRBAY-k-NfXa>*Y1J~LBgM9k5<_XRQo*AE3b@NB*Mu{-D9JD0@LGWR+4yOpfoXz0=n z6~FkUjMTH(xYQgqLcp}07QB3j2K{r^=`oEa3KgOrI+6&eUhE8#P0C3DI%VFJ-s~c6 z6`Js#v9X!h2Ov_cc*OoeLIG1eVuX&5Z-HSI}l|KMt>T6NTY!KAm}L+kt2xJZK`N2!#SX6D{8 zN~aPCbGUbH*jbmml~blQAvrwn-X{c=tv-m~-mHYd^EfA8w6e(kjlVn*fBv!exad1% zHnm<6?0>Jj-k|o8(XFgZY44_mB_{o+`pbNkCV~oi1fO$n%fGu(=pR_`PjhLnN~Bb? z(ID9CaohzV?Wk~hzJ5AdI-ZH}%$2E+C8qRlXxoaZOnW}oDnZMcg-?*z6R+C4|MBm8 z+XM5osGdVNuR;vfg~AWX{QaUQW&vl?EX*RM-xuYEJlU!s$FkN8MvYQ_<7J4>=G z>VBFWh^&c!Uy@%`0A+5HkSKPe1_Ovd?Tk4Nvm0l4GP_(o-Ovb)+Gk-1SNK`y5!YF>@0^s5-TNm1k?|n< za07SvM^_oK+;S!DMPGCknN*NhFb4TPX1g)0bveAu<=xvfYtkK|0koDa`w39{3VhA& z_{#2&o#TXQ?{MvL1uFOGArAXtN}7Rs`EKqgXH$HaFdEbs9RIse28%`_d22m^WLh9tNUn|B~1yWDUQamU9* zIF;dQq1@~twDrksM?Fagb$giiE|W3nooI9NIy$dVt%im7S|IjK=RAM*?E{~%v8ROR z?>(ZAF>HpOPVycK=!g5y&fMi!M4wH9@mdKS)SyvOk9Bn|y_Ly-OwKDIW7ks_nev=( zF3$QOn#oejQ;qmO;X!b)D=Y?hjwws#hVeT79R6j#*LG-K4;a&aMNh2pOh; z3v!>PvqE^b%hCpFjzT<70BYpo7g2@ZY0s%S8c}{)&c1<^*~ zUV#-+;-7hw;WPQ!3`Xnucf*tYY8?~Dwyei4R!doTU9Q9=#qz zdztb?7YyCXmA3U&Hj?P77*Vfzv|=_?6}ZQUuz$PkBlPJ(83x9 z)~dRWfCrWjw2FT0&eq|K<9TzbE2`5$--6S0g4y>~o!xWW-9{455=sKi)lXAdE`u9w zVRHi1@gKLNHbx7`O>U14f9-@2=szt-#JDU++zoUm|8UiiD37biTb@pls;Kd$qn!&* z4w4g?azkw#Wsf^LEwT$&$lffsXJZBHQzs>yQsrVNR@%&T7~$`$W+=zRFGR0KhCcOF zQucK21y{e6O}Q2$BL2<<1do`>qXgSO>^EgP%pQCk|Ksa|EZ2@|eLR5@A!rMTk3tPa z8j&2wgktZ@CxAcU1Q?KT=x_a%vsaB3{}{P2zS5)e#&~|h@Xoa%k1WiN!4^hx6N`-u z%4Ja3`?F}~Jb7D)GPi0|Weg$D=j;UYrHk2($1B{U@_kpa$)-OT^C_4A={L+_VC_5T zdHNc939QjFC&#}z8=4DY!O>pB>`YYY4YL?qa#uN-h~^Q% zox%hahA~pEpD9N{ot|j6!$k6hjaQ_dfTJs6Rn~i-Tz3`4e!GPoHeBAiU$t;y>D826 z_o(8p6j@Ra#TCWYM(R3TrT);@)3$X)&hk*5s~=QYFJJR7y4kd}<;^B$eBmYPepT_S z@&QA;#3~w-&hnuYW z`kFoMrCNzgUpu04H3lGfB_MmlTjYwv%ele0}3&>tI114AcpmeC{n*Y&1R~&YR5*?(y+joE@Vz zwC8G?%E2L;KX-P$iS7h(4&0jc@M)U%xRG2fyux36>kFD%jd{_2-sPrLGpWtZG!9Qd zf2^Om&X1(;lZf#y6R$cvvrt5Mo_UA?$ zX{@AFpO{+9+Abi=r#po0wd_s`5;644L>sQVD<;N?(rDS}o7aqg_k4Q5lbEd&E93$% z%m8>@!m#XciYHCwLr^1<6=aqP*K7l$daZDh9u{vC&>t^hU8kzGvd%Tzd!HfeDVO@U z)yRs-QjJqOR7US@@3DEcEOgaZpY>ULRUul^Y^PihEut2#B{t+@l;lo*#7nj?j_ST3 zz!d0q2fxt`_pQHpy{&6^dAF00%hVS8C0OC;_EbK{jP`!|M!&b@jL*P7un&(tbxWvi zVJiOml7xR){+=GcTN_;8?MnlZ-)(@H&bO|AuKJIJ> zZMV-GKRK?_%0Ad;T1P7IO!}=Ky&Pba9PtrPJ1YFuCqZ_)-pI)FyotVDAZJ5&t%F#S z=BM~>z@t0#puD4;UmC>w+*u|ovYObG^0U;XXf!FkF~}hTPg>@T|2f{%ElnCYdk_&R z(~R{Fdh$H+DojO&v-7?rT1_d$td_mf)RQU;&vnxGb0w%6nCU!io6~z!#H&fx0YeuQ8$Xc*7Ry~JI6Gm3cQHP(HD=$d@?jqi`aw?he z^o~4;M4O0hyMM0U!NG6ZxyfoZhwPg_b4puiayN=Tppuw<$DsK}q3+u6UphLZjTU8| zm)Puj5vZ)kjvtgwd>Fm<3Oca4cK=JJyH#JmDgl)*ebY66Y{>7SNIIC0Pe{b`=zVgQ zkc!7*MQj6_*Qwx=a15DPfzUS>Cs~=Np4M@~x@LewKFr49z23CnU{F|)^IfzFdaK1EHjdY|Ytx=#BnNKz+6eZKYUFy=(({452gI`D5HDda zpFX=%z4TcdkHySc>nWXjTDj^PKZK=T!;Qhqf5t{?7|8e-?_m*WATSleF#L+LO?-%7Qkw`;^fJH;)g^S$mx1z*+*zDc zCb^)xLNBDuG8SJ?>WBez_f9{zF_W(HW!=#~zbeqD)++PrSNX1JOlf)cO5URQ%1X9# z@c;pLshG+NQ}H=@=9t+cS?}edJ;l|(sq#M+pYE#e!On-cpSr9?r}f|88-PD!JR$!F D;5E!N literal 0 HcmV?d00001 diff --git a/templates/client/static_client/js/_modules/block.common.js b/templates/client/static_client/js/_modules/block.common.js index 9dad6235..7c1becea 100644 --- a/templates/client/static_client/js/_modules/block.common.js +++ b/templates/client/static_client/js/_modules/block.common.js @@ -179,12 +179,20 @@ if (EXPO.common){ e.preventDefault(); var $form = $(this), url = $form.attr('action'), + id = $form.attr('id'), formData = $(this).serialize(), method = $form.attr("method"), callback = function (data) { if (data.success){ + if (id == "advertise-form"){ + dataLayer.push({'event': 'advertisingform'}); + } + if (id == "callback-form"){ + dataLayer.push({'event': 'callbackform'}); + } $.fancybox.close(); + $(".error", $form).remove(); $(".required.err", $form).removeClass("required err"); $("input:text", $form).val(''); @@ -223,7 +231,7 @@ if (EXPO.common){ callback = function (data) { if (data.success){ - + dataLayer.push({'event': 'regform'}); $(".error", $form).remove(); $(".required.err", $form).removeClass("required err"); diff --git a/templates/client/static_client/js/_modules/page.exposition.object.js b/templates/client/static_client/js/_modules/page.exposition.object.js index e613a08f..bfd2dfed 100644 --- a/templates/client/static_client/js/_modules/page.exposition.object.js +++ b/templates/client/static_client/js/_modules/page.exposition.object.js @@ -134,6 +134,7 @@ if (EXPO.exposition.object){ }else{ clearValue(); + dataLayer.push({'event': 'advmemberform'}); $('input:text',$form).val(''); $.fancybox.close(); diff --git a/templates/client/static_client/js/vendor.js b/templates/client/static_client/js/vendor.js index 2b8799dc..3342562d 100644 --- a/templates/client/static_client/js/vendor.js +++ b/templates/client/static_client/js/vendor.js @@ -3407,7 +3407,7 @@ function placeInput(width){ mode:'horizontal', loop: false, simulateTouch: false, - autoplay:6200, + autoplay:4200, onInit: function () { $recPrev.addClass('disabled'); }, diff --git a/templates/client/static_client/js_min/_modules/block.common.min.js b/templates/client/static_client/js_min/_modules/block.common.min.js index ec08a27c..338162e4 100644 --- a/templates/client/static_client/js_min/_modules/block.common.min.js +++ b/templates/client/static_client/js_min/_modules/block.common.min.js @@ -1 +1 @@ -var EXPO=EXPO||{};EXPO.common?console.warn("WARNING: EXPO.common is already defined!"):EXPO.common=function(){var e,t={},s=function(e,t){return(e.matches||e.matchesSelector||e.msMatchesSelector||e.mozMatchesSelector||e.webkitMatchesSelector||e.oMatchesSelector).call(e,t)};t.opt={};var r=function(e){this.fields=[],this.allIsClear=!1,this.ajaxUrl=e.getAttribute("action"),this.DOM=e,this._initFields(),this._eventController()};return r.prototype={_eventController:function(){var e=this;this.DOM.addEventListener?this.DOM.addEventListener("submit",function(t){return e.validate(),t.preventDefault(),!1},!1):this.DOM.attachEvent&&this.DOM.attachEvent("onsubmit",function(t){return e.validate(),t.preventDefault(),!1})},_initFields:function(){},validate:function(){var t,s=this,r=$(s.DOM).serialize(),o={},a="err-message-box",i=s.DOM.querySelector("."+a),n=i.innerHTML,l=function(r){var a,l;if(t=r,s.unHighlightFields(),t.success)i&&EXPO.common.removeClass(i,"active"),$(s.DOM).attr("id")==EXPO.common.opt.registerFormId?(a=$("#"+EXPO.common.opt.successRegisterId),l=$.trim($("#id_email",s.DOM).val()),$("."+EXPO.common.opt.resendLetterClass,a).attr("data-email",l),$.fancybox.close(!0),$.fancybox("#"+EXPO.common.opt.successRegisterId)):window.location.reload();else{EXPO.common.removeClass(i,"active"),o={},s.fields=[];for(var c in t.errors)t.errors.hasOwnProperty(c)&&("__all__"!=c?(o={name:c,id:"id_"+c,errorText:t.errors[c]},s.fields.push(o)):i&&(EXPO.common.addClass(i,"active"),n.indexOf(t.errors[c])<0&&i.insertAdjacentHTML("beforeend",t.errors[c]+" ")));s.highliteFields()}e.hide()};s.unHighlightFields(),e.show(),EXPO.common.postRequest(r,s.ajaxUrl,l)},highliteFields:function(){for(var e,t,s=0;s").attr("class","error").append(s);r.parent().addClass("required err").prepend(o)}))};"post"==o?$.post(s,r,a):$.get(s,r,a)}),$("form.simple-validate-register").on("submit",function(e){e.preventDefault();var t=$(this),s=t.attr("action"),r=$(this).serialize(),o=t.attr("method"),a=$("#pw-reg-complete"),i=$(".resend-letter",a),n=$.trim($("#id_email",t).val()),l=function(e){e.success?($(".error",t).remove(),$(".required.err",t).removeClass("required err"),$("input:text",t).val(""),$(".pwf-line .msg-help",t).each(function(){var e=$(this),t=e.attr("data-default");""!=$.trim(t)&&e.html("").text(t)}),i.attr("data-email",n),$.fancybox.close(!0),$.fancybox("#pw-reg-complete")):($(".error",t).remove(),$(".required.err",t).removeClass("required err"),$(".pwf-line .msg-help",t).each(function(){var e=$(this),t=e.attr("data-default");""!=$.trim(t)&&e.html("").text(t)}),$.each(e.errors,function(e,s){var r=$("#id_"+e,t),o=$("
      ").attr("class","error").append(s),a=r.closest(".pwf-line").find(".msg-help");r.parent().addClass("required err"),a.attr("data-default",a.text()),a.text("").prepend(o)}))};"post"==o?$.post(s,r,l):$.get(s,r,l)})}),$(function(){$.fancybox.helpers.overlay.overlay=$('
      ').appendTo("body"),$.fn.customRadioCheck=function(){return $(this).each(function(){function e(){if("radio"==s){var e=t.attr("name"),r=$('input[type="radio"]').filter('[name="'+e+'"]');r.each(function(){var e=$(this).closest(".custom-radio");e.removeClass("checked"),$(this).is(":checked")&&e.addClass("checked")})}else t.prop("checked")?o.addClass("checked"):o.removeClass("checked");t.trigger("blur")}var t=$(this),s=t.attr("type"),r=t.closest("label"),o=t.wrap("").parent();r.addClass("custom-radio-check"),e(),t.on("change",e)})},$("input[type='checkbox'], input[type='radio']").customRadioCheck()}),function(e){e.fn.inlineStyle=function(t){var s,r=this.attr("style");return r&&r.split(";").forEach(function(r){var o=r.split(":");e.trim(o[0])===t&&(s=o[1])}),s}}(jQuery),t.init=function(t){$.extend(this.opt,t);{var s,r=this,o=this.opt.addCalendarClass,a=this.opt.removeCalendarClass,i=this.opt.addCalendarText,n=this.opt.removeCalendarText,l=r.opt.staticValidation.errorClass,c=r.opt.staticValidation.containerClass;r.opt.staticValidation.blobClass}$(function(){s=$("."+l),e=$("#wait-ajax:not(.absolute)").css({"z-index":"8031"}),$("body").on("click","."+o+", ."+a,function(e){i=r.opt.addCalendarText,n=r.opt.removeCalendarText,e.preventDefault();var t=$(this),s=t.attr("href");$.get(s,function(e){e.not_authorized?$.fancybox.open("#"+r.opt.loginModalId):e.success&&(e.in?t.removeClass(o).addClass(a).text(n):t.removeClass(a).addClass(o).text(i))})}),s.length&&s.find("input:text").on("keyup",function(){""!=$.trim($(this).val())?$(this).closest("."+l).removeClass(l):$(this).closest("."+c).addClass(l)});for(var t=0;t=0;)r=r.replace(" "+s+" "," ");e.className=r.replace(/^\s+|\s+$/g," ")}return e},t.closest=function(e,s){for(var r=function(s){return t.hasClass(e,s)};e;){if(r(s))return e;e=e.parentNode}},t.children=function(e,t){for(var r,o=[],r=0,a=e.childNodes.length;a>r;++r)s(e.childNodes[r],t)&&o.push(e.childNodes[r]);return o},t.postRequest=function(e,t,s){e||(e=""),$.ajax({type:"POST",url:t,data:e,success:function(e){return"function"!=typeof s?e:(console.log("data recieved:"),console.log(e),console.log(JSON.stringify(e)),s(e),void 0)}})},t.getRequest=function(e,t,s){e||(e=""),$.ajax({type:"GET",url:t,data:e,success:function(e){return"function"!=typeof s?e:(console.log("data recieved:"),console.log(e),console.log(JSON.stringify(e)),s(e),void 0)}})},t.Modal=function(e){var t=this;this.id,this.opt=e,this.DOMwrap=document.getElementById(e.id),this.DOM=this.DOMwrap.querySelector("."+e.wrapClass),$(".modal-close",this.DOM).on("click",function(){t.close()}),$(".modals > *").on("click",function(e){$(e.target.parentNode).find(t.DOMwrap).length&&t.close()})},t.Modal.prototype={pullData:function(e){this.id=e.substr(1),$(e).show().siblings().hide(),this.refresh()},open:function(){$(this.DOMwrap).fadeIn(),t.addClass(document.body,"ov-hidden")},close:function(){$(this.DOMwrap).fadeOut(),t.removeClass(document.body,"ov-hidden")},refresh:function(){var e=this;e.DOM.style.width=e.opt.size[e.id].width+"px",e.DOM.style.minHeight=e.opt.size[e.id].height+"px",e.DOM.style.marginLeft=-(e.opt.size[e.id].width/2)+"px",e.DOM.style.marginTop=-(e.opt.size[e.id].height/2)+"px"}},t.SEOhide={seoContent:{},seoHrefs:{},decode:function(e){for(var t=$("["+e+"]"),s=0,r=t.length;r>s;s++){var o=t.eq(s),a=o.attr("data-hash");switch(o.data("type")){case"href":o.attr("href",Base64.decode(this.seoHrefs[a]));break;case"content":o.replaceWith(Base64.decode(this.seoContent[a]))}}}},t.nl2br=function(e,t){var s=t||"undefined"==typeof t?"
      ":"
      ";return(e+"").replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g,"$1"+s+"$2")},t}(); \ No newline at end of file +var EXPO=EXPO||{};EXPO.common?console.warn("WARNING: EXPO.common is already defined!"):EXPO.common=function(){var e,t={},s=function(e,t){return(e.matches||e.matchesSelector||e.msMatchesSelector||e.mozMatchesSelector||e.webkitMatchesSelector||e.oMatchesSelector).call(e,t)};t.opt={};var r=function(e){this.fields=[],this.allIsClear=!1,this.ajaxUrl=e.getAttribute("action"),this.DOM=e,this._initFields(),this._eventController()};return r.prototype={_eventController:function(){var e=this;this.DOM.addEventListener?this.DOM.addEventListener("submit",function(t){return e.validate(),t.preventDefault(),!1},!1):this.DOM.attachEvent&&this.DOM.attachEvent("onsubmit",function(t){return e.validate(),t.preventDefault(),!1})},_initFields:function(){},validate:function(){var t,s=this,r=$(s.DOM).serialize(),a={},o="err-message-box",i=s.DOM.querySelector("."+o),n=i.innerHTML,l=function(r){var o,l;if(t=r,s.unHighlightFields(),t.success)i&&EXPO.common.removeClass(i,"active"),$(s.DOM).attr("id")==EXPO.common.opt.registerFormId?(o=$("#"+EXPO.common.opt.successRegisterId),l=$.trim($("#id_email",s.DOM).val()),$("."+EXPO.common.opt.resendLetterClass,o).attr("data-email",l),$.fancybox.close(!0),$.fancybox("#"+EXPO.common.opt.successRegisterId)):window.location.reload();else{EXPO.common.removeClass(i,"active"),a={},s.fields=[];for(var c in t.errors)t.errors.hasOwnProperty(c)&&("__all__"!=c?(a={name:c,id:"id_"+c,errorText:t.errors[c]},s.fields.push(a)):i&&(EXPO.common.addClass(i,"active"),n.indexOf(t.errors[c])<0&&i.insertAdjacentHTML("beforeend",t.errors[c]+" ")));s.highliteFields()}e.hide()};s.unHighlightFields(),e.show(),EXPO.common.postRequest(r,s.ajaxUrl,l)},highliteFields:function(){for(var e,t,s=0;s").attr("class","error").append(s);r.parent().addClass("required err").prepend(a)}))};"post"==o?$.post(s,a,i):$.get(s,a,i)}),$("form.simple-validate-register").on("submit",function(e){e.preventDefault();var t=$(this),s=t.attr("action"),r=$(this).serialize(),a=t.attr("method"),o=$("#pw-reg-complete"),i=$(".resend-letter",o),n=$.trim($("#id_email",t).val()),l=function(e){e.success?(dataLayer.push({event:"regform"}),$(".error",t).remove(),$(".required.err",t).removeClass("required err"),$("input:text",t).val(""),$(".pwf-line .msg-help",t).each(function(){var e=$(this),t=e.attr("data-default");""!=$.trim(t)&&e.html("").text(t)}),i.attr("data-email",n),$.fancybox.close(!0),$.fancybox("#pw-reg-complete")):($(".error",t).remove(),$(".required.err",t).removeClass("required err"),$(".pwf-line .msg-help",t).each(function(){var e=$(this),t=e.attr("data-default");""!=$.trim(t)&&e.html("").text(t)}),$.each(e.errors,function(e,s){var r=$("#id_"+e,t),a=$("
      ").attr("class","error").append(s),o=r.closest(".pwf-line").find(".msg-help");r.parent().addClass("required err"),o.attr("data-default",o.text()),o.text("").prepend(a)}))};"post"==a?$.post(s,r,l):$.get(s,r,l)})}),$(function(){$.fancybox.helpers.overlay.overlay=$('
      ').appendTo("body"),$.fn.customRadioCheck=function(){return $(this).each(function(){function e(){if("radio"==s){var e=t.attr("name"),r=$('input[type="radio"]').filter('[name="'+e+'"]');r.each(function(){var e=$(this).closest(".custom-radio");e.removeClass("checked"),$(this).is(":checked")&&e.addClass("checked")})}else t.prop("checked")?a.addClass("checked"):a.removeClass("checked");t.trigger("blur")}var t=$(this),s=t.attr("type"),r=t.closest("label"),a=t.wrap("").parent();r.addClass("custom-radio-check"),e(),t.on("change",e)})},$("input[type='checkbox'], input[type='radio']").customRadioCheck()}),function(e){e.fn.inlineStyle=function(t){var s,r=this.attr("style");return r&&r.split(";").forEach(function(r){var a=r.split(":");e.trim(a[0])===t&&(s=a[1])}),s}}(jQuery),t.init=function(t){$.extend(this.opt,t);var s,r=this,a=this.opt.addCalendarClass,o=this.opt.removeCalendarClass,i=this.opt.addCalendarText,n=this.opt.removeCalendarText,l=r.opt.staticValidation.errorClass,c=r.opt.staticValidation.containerClass;r.opt.staticValidation.blobClass;$(function(){s=$("."+l),e=$("#wait-ajax:not(.absolute)").css({"z-index":"8031"}),$("body").on("click","."+a+", ."+o,function(e){i=r.opt.addCalendarText,n=r.opt.removeCalendarText,e.preventDefault();var t=$(this),s=t.attr("href");$.get(s,function(e){e.not_authorized?$.fancybox.open("#"+r.opt.loginModalId):e.success&&(e["in"]?t.removeClass(a).addClass(o).text(n):t.removeClass(o).addClass(a).text(i))})}),s.length&&s.find("input:text").on("keyup",function(){""!=$.trim($(this).val())?$(this).closest("."+l).removeClass(l):$(this).closest("."+c).addClass(l)});for(var t=0;t=0;)r=r.replace(" "+s+" "," ");e.className=r.replace(/^\s+|\s+$/g," ")}return e},t.closest=function(e,s){for(var r=function(s){return t.hasClass(e,s)};e;){if(r(s))return e;e=e.parentNode}},t.children=function(e,t){for(var r,a=[],r=0,o=e.childNodes.length;o>r;++r)s(e.childNodes[r],t)&&a.push(e.childNodes[r]);return a},t.postRequest=function(e,t,s){e||(e=""),$.ajax({type:"POST",url:t,data:e,success:function(e){return"function"!=typeof s?e:(console.log("data recieved:"),console.log(e),console.log(JSON.stringify(e)),s(e),void 0)}})},t.getRequest=function(e,t,s){e||(e=""),$.ajax({type:"GET",url:t,data:e,success:function(e){return"function"!=typeof s?e:(console.log("data recieved:"),console.log(e),console.log(JSON.stringify(e)),s(e),void 0)}})},t.Modal=function(e){var t=this;this.id,this.opt=e,this.DOMwrap=document.getElementById(e.id),this.DOM=this.DOMwrap.querySelector("."+e.wrapClass),$(".modal-close",this.DOM).on("click",function(){t.close()}),$(".modals > *").on("click",function(e){$(e.target.parentNode).find(t.DOMwrap).length&&t.close()})},t.Modal.prototype={pullData:function(e){this.id=e.substr(1),$(e).show().siblings().hide(),this.refresh()},open:function(){$(this.DOMwrap).fadeIn(),t.addClass(document.body,"ov-hidden")},close:function(){$(this.DOMwrap).fadeOut(),t.removeClass(document.body,"ov-hidden")},refresh:function(){var e=this;e.DOM.style.width=e.opt.size[e.id].width+"px",e.DOM.style.minHeight=e.opt.size[e.id].height+"px",e.DOM.style.marginLeft=-(e.opt.size[e.id].width/2)+"px",e.DOM.style.marginTop=-(e.opt.size[e.id].height/2)+"px"}},t.SEOhide={seoContent:{},seoHrefs:{},decode:function(e){for(var t=$("["+e+"]"),s=0,r=t.length;r>s;s++){var a=t.eq(s),o=a.attr("data-hash");switch(a.data("type")){case"href":a.attr("href",Base64.decode(this.seoHrefs[o]));break;case"content":a.replaceWith(Base64.decode(this.seoContent[o]))}}}},t.nl2br=function(e,t){var s=t||"undefined"==typeof t?"
      ":"
      ";return(e+"").replace(/([^>\r\n]?)(\r\n|\n\r|\r|\n)/g,"$1"+s+"$2")},t}(); \ No newline at end of file diff --git a/templates/client/static_client/js_min/_modules/block.newsFilter.min.js b/templates/client/static_client/js_min/_modules/block.newsFilter.min.js index 0c1273d5..3ce1edf5 100644 --- a/templates/client/static_client/js_min/_modules/block.newsFilter.min.js +++ b/templates/client/static_client/js_min/_modules/block.newsFilter.min.js @@ -1 +1 @@ -var EXPO=EXPO||{};EXPO.newsFilter?console.warn("WARNING: EXPO.newsFilter is already defined!"):EXPO.newsFilter=function(){var t={};t.opt={};EXPO.common;return t.init=function(t){$.extend(this.opt,t);var e=this;$(function(){var t=$(".news-filter-block"),i=$(".custom-select.theme select",t),a=$(".custom-select.tags input",t),l=t.children("form");i.attr("multiple","multiple"),i.select2({placeholder:e.opt.theme.placeholder,width:"368px",maximumSelectionSize:3}),a.val("0"),a.select2({placeholder:e.opt.tags.placeholder,width:"368px",multiple:!0,maximumSelectionSize:5,ajax:{url:e.opt.tags.url,dataType:"json",quietMillis:200,data:function(t,e){var a=i.val();return a||(a=[]),{term:t,page:e,themes:a}},results:function(t){var e=[];return $.each(t,function(t,i){e.push({id:i.id,text:i.label})}),{results:e}}},initSelection:function(t,i){var a;t.val(""),""!=$.trim(t.attr("data-predifined"))&&"[]"!=$.trim(t.attr("data-predifined"))?(a=JSON.parse(t.attr("data-predifined")),i(a)):$(" .custom-select.tags .select2-input").width(336).addClass("select2-default").val(e.opt.tags.placeholder)}}),a.on("change",function(){l.submit()}),i.on("change",function(){l.submit()})})},t}(); \ No newline at end of file +var EXPO=EXPO||{};EXPO.newsFilter?console.warn("WARNING: EXPO.newsFilter is already defined!"):EXPO.newsFilter=function(){var t={};t.opt={};EXPO.common;return t.init=function(t){$.extend(this.opt,t);var e=this;$(function(){var t=$(".news-filter-block"),i=$(".custom-select.theme select",t),a=$(".custom-select.tags input",t),l=t.children("form");i.attr("multiple","multiple"),i.select2({placeholder:e.opt.theme.placeholder,width:"368px",maximumSelectionSize:3}),a.val("0"),a.select2({placeholder:e.opt.tags.placeholder,width:"368px",multiple:!0,maximumSelectionSize:5,ajax:{url:e.opt.tags.url,dataType:"json",quietMillis:200,data:function(t,e){var a=i.val();return a||(a=[]),{term:t,page:e,themes:a}},results:function(t){var e=[];return $.each(t,function(t,i){e.push({id:i.id,text:i.label})}),{results:e}}},initSelection:function(t,i){var a;t.val(""),""!=$.trim(t.attr("data-predifined"))&&"[]"!=$.trim(t.attr("data-predifined"))?(a=JSON.parse(t.attr("data-predifined")),i(a)):$(" .custom-select.tags .select2-input").width(336).addClass("select2-default").val(e.opt.tags.placeholder)}}),a.on("change",function(t){l.submit()}),i.on("change",function(t){l.submit()})})},t}(); \ No newline at end of file diff --git a/templates/client/static_client/js_min/_modules/block.search.min.js b/templates/client/static_client/js_min/_modules/block.search.min.js index 865c2afe..8b9d7516 100644 --- a/templates/client/static_client/js_min/_modules/block.search.min.js +++ b/templates/client/static_client/js_min/_modules/block.search.min.js @@ -1 +1 @@ -var EXPO=EXPO||{};EXPO.searchBlock?console.warn("WARNING: EXPO.searchBlock is already defined!"):EXPO.searchBlock=function(){var e={};e.settings={place:{id:"pw-place",selectedItemTemplate:"csb-selected",ajaxUrl:"http://hit.expomap.ru/search-form/"},subject:{id:"pw-subj",ajaxUrl:"http://hit.expomap.ru/search-form/"}},e.lang={};var t=EXPO.common,i=function(e){var t=Object.keys(e).map(function(t){return encodeURIComponent(t)+"="+encodeURIComponent(e[t])}).join("&");return"?"+t},n=function(e,t,i){e||(e=""),$.ajax({type:"GET",url:t,data:e,success:function(e){return"function"!=typeof i?e:void i(e)}})},a=function(e,t,i){return e.hasOwnProperty(t)&&(e[i]=e[t]),this},s=function(e){var t,i=0;for(t in e)e.hasOwnProperty(t)&&i++;return i},l=function(e,t){var i=$("#"+e),n="",a=EXPO.searchBlock.settings.closerText,s=EXPO.searchBlock.settings.closerTextSingle,l="";return $element=i.find(".csbs-text"),$element.length>2?$element.eq(0).text().length2&&d?l.timeout=setTimeout(function(){n({term:t,form:c},l.opt.autoCompleteUrl,u),d=!1},1e3):0!=t.length||d||l.$inputFilter.hasClass("ui-autocomplete-input")&&(l.$inputFilter.placeComplete("destroy"),d=!0),!1}).click(function(){return!1})},_renderSublist:function(e,t,i){var n=this,a=0,s=t+"-sub",l=function(e){if(e.length){for(n.sublist[s]={},a;aS;S++)for(p=y[S],I=0;w>I;I++)p==_[I]&&D(r[I]);for(S=0;x>S;S++)p=y[S],p==T&&D(i);k.querySelectorAll(".final-tire")&&$("."+e+"."+a,k.querySelectorAll(".final-tire")).each(function(){D($("."+l,this)[0])})}else for(S=0;x>S;S++)p=y[S],p==T&&D(T)},D=function(e){var t=e.getAttribute("id");i._destroyTag(t),q()},P=function(e){var a=t.closest(e,n),s=a.querySelector("."+u),l=s.innerHTML,r=e.getAttribute("id"),c={id:r,text:l};i._addTag(r,c),q()},q=function(){c.find("."+h).length&&"~~id~~"!=c.find("."+h)[0].getAttribute(m)?c.addClass("visible"):c.removeClass("visible")},E=function(t){var i=$(t).children("li").children("."+e).find("."+l+":checked");i.each(function(){P(this)})},j=function(){var t=$(k).children("li").children("."+e).find("."+l+":checked");t.each(function(){D(this)})};i.strictMode?this.checked?(I(this),O(this),P(this)):(B(this),O(this),D(this)):this.checked?($(C).find("."+l)[0]&&C&&"~~id~~"!=$(C).find("."+l)[0].value&&O(this),F()?(T(this),I(this),O(v),P(v),j(k),v.getAttribute("id")!=_.getAttribute("id")||_.checked?M()&&(I(_),O(_),P(_)):(I(_),O(_),P(_))):(I(this),O(this),P(this)),C&&x(this)):(A()?(S(this),B(this),O(v),D(v),E(k),_.checked&&(B(_),D(_),E(y))):(B(this),O(this),D(this)),C&&(w(this),O(this))),p()}),$(".csbs-del",c).on("click",function(){var e=$(this).attr("data-checkbox-id"),t=$("#"+e);return t.prop("checked",!1),t.trigger("change"),dna.destroy(i.itemsSelected[e]),c.children(".dna-clone").length||c.removeClass("visible"),!1}),$(".modal-clear",a).on("click",function(){return i.resetList(),!1}),$(".q-sel a",a).on("click",function(){var e=$(this),t=e.attr("data-name"),a=e.attr("data-id"),s={name:t,id:a},l=function(e){i._loadParentTree(e,function(){i._checkCheckBox(a)})};return $("#id_"+a).length?$("#id_"+a).prop("checked",!0).trigger("change"):n(s,i.opt.getParentUrl,l),!1}),$("."+h,a).on("click",function(){return i.applyHandler(this),!1}),d.siblings("."+i.opt.clearAllButtonClass).on("click",function(){i.resetList(),EXPO.searchBlock.placesField.clearValue()})})};o.prototype={_getAjax:function(e,t){var i=this;e||(e=""),$.ajax({type:"GET",url:i.opt.ajaxUrl,data:e,success:function(e){return"function"!=typeof t?(i.rawData=e,e):(i.rawData=e,void t(e))}})},_renderSublist:function(e,t,i){var n=this,a=0,s=t+"-sub",l=function(e){if(e.length){for(n.curDNA[s]={},a;a2&&c?s.timeout=setTimeout(function(){n({term:t,form:l},s.opt.autoCompleteUrl,d),c=!1},1e3):0!=t.length||c||s.$inputFilter.hasClass("ui-autocomplete-input")&&(s.$inputFilter.autocomplete("destroy"),c=!0),!1}).click(function(){return!1})},_loadParentTree:function(e,t,i){var n,a,l,c,o=this,d=e,h=$("#id_"+d.id),u=function(e){var n=$("#id_"+d.id),h=0,u=function(e){r.hide(),h++,h==e&&(i||0===i?t(i):t())};r.hide(),n.length&&s(o.curDNA[a+"-sub"])==e&&(l={name:d.name,id:d.id},r.show(),c=$("#id_"+d.id).closest(".level").children(".trigger").attr("data-template-id"),o._renderNested(l,u,c,d.id))},p=function(){r.hide(),i||0===i?t(i):t()};r.show(),d.hasOwnProperty("parent")?h.length?(l={name:d.name,id:d.id},c=h.closest(".level").children(".trigger").attr("data-template-id"),o._renderNested(l,function(){r.hide(),t()},c,d.id)):(n={name:d.parent.name,id:d.parent.id},a=$("#id_"+d.parent.id).closest(".level").children(".trigger").attr("data-template-id"),o._renderSublist(n,a,u)):(n={name:d.name,id:d.id},a=$("#id_"+d.id).closest(".level").children(".trigger").attr("data-template-id"),o._renderSublist(n,a,p))},applyHandler:function(){console.log(this)},_refreshText:function(){var e,t=$("#"+this.opt.modalTrigger),i=16;e=l(this.opt.selectedItemsContainer,i),e&&"~~text~~"!=e&&"~~text~~..."!=e?(t.text(e),t.siblings("."+this.opt.clearAllButtonClass).addClass("active")):(t.text(t.data("default")),t.siblings("."+this.opt.clearAllButtonClass).removeClass("active"))}};var d=function(e){this.opt=e;var t,i=this,n=$("#"+i.opt.dateFrom),a=$("#"+i.opt.dateTo),s=$("#"+i.opt.id),l=$("#"+i.opt.modalTrigger),r=i.opt.applyBtnClass,c=function(){var e="",t=l.data("lng-to"),i=l.data("lng-from"),s=$.trim(a.val()),r=$.trim(n.val());return""!=s&&""!=r?e=$(window).width()<1086?i+": "+r+"
      "+t+": "+s+".":i+": "+r+" "+t+": "+s+".":""!=s&&""==r?e=t+": "+s+".":""==s&&""!=r&&(e=i+": "+r+"."),e},o=function(e){var t=24;$(window).width()<1086&&(t=6),""!=e?(l.html(e).siblings(".trigger-label").addClass("hidden"),l.siblings("."+i.opt.clearAllButtonClass).addClass("active")):(l.html(l.data("default")).siblings(".trigger-label").removeClass("hidden"),l.siblings("."+i.opt.clearAllButtonClass).removeClass("active"))},d=function(e){var t,s,l,r,c=e.getAttribute("id"),o=e.value,d=Date.parse(o);i.validate()&&($(e).parent(".pwf-field").removeClass("err"),c==i.opt.dateFrom?(t=a[0].getAttribute("id"),s=a[0].value):(t=n[0].getAttribute("id"),s=n[0].value),l=Date.parse(s),d>l&&c==i.opt.dateFrom?(r=document.getElementById(c).value,document.getElementById(c).value=document.getElementById(t).value,document.getElementById(t).value=r):l>d&&c==i.opt.dateTo&&(r=document.getElementById(t).value,document.getElementById(t).value=document.getElementById(c).value,document.getElementById(c).value=r))};this.$dateFrom=n,this.$dateTo=a,this.$modalTrigger=l,$(function(){$.datepicker.setDefaults($.datepicker.regional.ru),n.datepicker({dateFormat:"dd.mm.yy",showOn:"button",showOtherMonths:!0,constrainInput:!0,onClose:function(e){a.datepicker("option","minDate",e)}}).inputmask("99.99.9999",{showMaskOnHover:!1,insertMode:!1,oncomplete:function(){t=this}}),a.datepicker({dateFormat:"dd.mm.yy",showOn:"button",showOtherMonths:!0,constrainInput:!0,onClose:function(e){n.datepicker("option","maxDate",e)}}).inputmask("99.99.9999",{showMaskOnHover:!1,insertMode:!1,oncomplete:function(){t=this}}),$('input[type="text"]',s).on("change",function(){var e=c();i.validate()&&o(e)}),$("."+r,s).on("click",function(){return t&&d(t),i.applyHandler(this),!1}),l.siblings("."+i.opt.clearAllButtonClass).on("click",function(){$(this).removeClass("active"),i.resetList()})})};d.prototype={resetList:function(){this.$dateFrom.val(""),this.$dateTo.val(""),this.$modalTrigger.text(this.$modalTrigger.attr("data-default"))},validate:function(){var e=this.$dateTo.val(),t=this.$dateFrom.val(),i=e.split("."),n=t.split("."),a=[],s=!0;return a[0]=Date.parse(i[1]+"."+i[0]+"."+i[2]),a[1]=Date.parse(n[1]+"."+n[0]+"."+n[2]),a[0]||""==$.trim(e)?this.$dateTo.parent(".pwf-field").removeClass("err"):(this.$dateTo.parent(".pwf-field").addClass("err"),s=!1),a[1]||""==$.trim(t)?this.$dateFrom.parent(".pwf-field").removeClass("err"):(this.$dateFrom.parent(".pwf-field").addClass("err"),s=!1),s},applyHandler:function(){}};var h=function(e){this.opt=e,this.opt.anyChar=!1;var i=this,s=!0;this.$field=$("#"+i.opt.id),this.DOMcompleteWrap=document.getElementById(i.opt.autoCompleteWrapId),this.afterClear,this.rawData={items:[],set:function(e){this.items=e,this._rawDataChange()},get:function(){return this.items},_rawDataChange:function(){var e,t=this;for(e=0;e2?i.timeout=setTimeout(function(){n(a,i.opt.autoCompleteUrl,function(e){i.$field.hasClass("ui-autocomplete-input")&&i.$field[i.completeName]("destroy"),i.rawData.set(e),i._initAutoComplete(),i.showList("")})},1e3):0===text.length&&i.$field.hasClass("ui-autocomplete-input")&&(i.$field[i.completeName]("destroy"),t.removeClass(i.DOMcompleteWrap,"full-visible"),i._resetmodals(i.afterClear)):text.length>2&&s?i.timeout=setTimeout(function(){n(a,i.opt.autoCompleteUrl,function(e){i.rawData.set(e),i._initAutoComplete(),i.showList("")}),s=!1},1e3):0!=text.length||s?i.$field.hasClass("ui-autocomplete-input")&&i.showList(text):i.$field.hasClass("ui-autocomplete-input")&&(i.$field[i.completeName]("destroy"),t.removeClass(i.DOMcompleteWrap,"full-visible"),i._resetmodals(i.afterClear),s=!0),!1}).click(function(){return!1})};return h.prototype={_initAutoComplete:function(){var e=this;e.$field[e.completeName]({source:e.rawData.get(),minLength:0,appendTo:e.DOMcompleteWrap,select:function(t,i){e._afterSelect(t,i)},close:function(){t.removeClass(e.DOMcompleteWrap,"full-visible")},open:function(){t.addClass(e.DOMcompleteWrap,"full-visible")}})},_afterSelect:function(e,t){var i=this;e.preventDefault(),t.item.url?window.location=t.item.url:t.item.label.length&&(i.$field[0].value=t.item.label,i.selectCheckBoxes(t.item.id,t.item.name))},_resetmodals:function(e){return e?void e():0},selectHandler:function(){},selectCheckBoxes:function(){},showList:function(e){self=this,this.$field[self.completeName]("search",e)},pullData:function(){},clearValue:function(){this.$field.val("")}},e.init=function(e){$.extend(this.lang,e.lang),e.lang=null,$.extend(this.settings,e);var i=this,a=function(){$(i.DOMform).find('input[name="~~name~~"]').remove()};"None"!=this.settings.searchData&&this.settings.searchData&&(this.previousSearch=JSON.parse(this.settings.searchData)),this.DOMform=document.getElementById(this.settings.formId),$(this.DOMform).on("submit",function(){a()}),$.widget("custom.exibitionComplete",$.ui.autocomplete,{_renderMenu:function(e,t){var i=this,n="";$.each(t,function(t,a){a.cat!=n&&a.cat&&(e.append("
    • "+a.cat+"
    • "),n=a.cat),i._renderItemData(e,a)})}}),$.widget("custom.exibitionComplete",$.ui.autocomplete,{_renderMenu:function(e,t){var i=this,n="";$.each(t,function(t,a){a.cat!=n&&a.cat&&(e.append("
    • "+a.cat+"
    • "),n=a.cat),i._renderItemData(e,a)})}}),$.widget("custom.placeComplete",$.ui.autocomplete,{_renderItem:function(e,t){return $("
    • ").append($("").text(t.label)).append(' ('+t.cat+")").appendTo(e)}}),this.exhibitionField=new h(i.settings.firstField),this.exhibitionField.completeName="exibitionComplete",this.exhibitionField.opt.anyChar=!0,this.placesModal=new o(i.settings.place),this.subjModal=new c(i.settings.subject),this.periodModal=new d(i.settings.period),this.exhibitionField.selectCheckBoxes=function(e,t){var i,a,s=this,l=t;"th"==t?i=document.getElementById(s.opt.prefix+e):"tg"==t&&(i=document.getElementById(s.opt.prefixInner+e),l="th"),r.show(),i?(r.hide(),EXPO.searchBlock.subjModal.resetList(),$(i).prop("checked",!0),$(i).trigger("change")):(a={name:t,id:e},EXPO.searchBlock.subjModal.resetList(),n(a,EXPO.searchBlock.subjModal.opt.getParentUrl,function(i){EXPO.searchBlock.subjModal._loadParentTree(i,function(){EXPO.searchBlock.subjModal._checkCheckBox(e,t)})}))},this.placesField=new h(i.settings.placeField),this.placesField.dataForm=EXPO.searchBlock.placesModal.$inputFilter.attr("data-form"),this.placesField.selectCheckBoxes=function(e,t){var i,a,s=this;i=document.getElementById(s.opt.prefix+e),i?(r.hide(),EXPO.searchBlock.placesModal.resetList(),$(i).prop("checked",!0),$(i).trigger("change")):(a={name:t,id:e},EXPO.searchBlock.placesModal.resetList(),n(a,EXPO.searchBlock.placesModal.opt.getParentUrl,function(t){EXPO.searchBlock.placesModal._loadParentTree(t,function(){EXPO.searchBlock.placesModal._checkCheckBox(e,!0)})}))},this.exhibitionField.afterClear=function(){i.subjModal.resetList()},this.placesField.afterClear=function(){i.placesModal.resetList()},this.modalWindow=new t.Modal(i.settings.modal),this.periodModal.applyHandler=function(){this.validate()&&(r.show(),$(i.DOMform).submit())},this.placesModal.applyHandler=function(){r.show(),$(i.DOMform).submit()},this.subjModal.applyHandler=function(){r.show(),$(i.DOMform).submit()},$("."+i.settings.modalTriggerClass).on("click",function(e){return e.preventDefault(),i.modalWindow.pullData(this.getAttribute("href")),i.modalWindow.open(),!1}),$(function(){if(i.previousSearch)for(var e=0;e2?$element.eq(0).text().length2&&d?l.timeout=setTimeout(function(){n({term:t,form:c},l.opt.autoCompleteUrl,u),d=!1},1e3):0!=t.length||d||l.$inputFilter.hasClass("ui-autocomplete-input")&&(l.$inputFilter.placeComplete("destroy"),d=!0),!1}).click(function(){return!1})},_renderSublist:function(e,t,i){var n=this,a=0,s=t+"-sub",l=function(e){if(e.length){for(n.sublist[s]={},a;aS;S++)for(c=y[S],I=0;w>I;I++)c==_[I]&&q(i[I]);for(S=0;x>S;S++)c=y[S],c==T&&q(e);k.querySelectorAll(".final-tire")&&$("."+a+"."+l,k.querySelectorAll(".final-tire")).each(function(){q($("."+d,this)[0])})}else for(S=0;x>S;S++)c=y[S],c==T&&q(T)},q=function(e){var t=e.getAttribute("id");i._destroyTag(t),j()},E=function(e){var n=t.closest(e,s),a=n.querySelector("."+f),l=a.innerHTML,r=e.getAttribute("id"),c={id:r,text:l};i._addTag(r,c),j()},j=function(){c.find("."+m).length&&"~~id~~"!=c.find("."+m)[0].getAttribute(g)?c.addClass("visible"):c.removeClass("visible")},N=function(e){var t=$(e).children("li").children("."+a).find("."+d+":checked");t.each(function(){E(this)})},L=function(){var e=$(b).children("li").children("."+a).find("."+d+":checked");e.each(function(){q(this)})};i.strictMode?this.checked?(F(this),P(this),E(this)):(M(this),P(this),q(this)):this.checked?($(_).find("."+d)[0]&&_&&"~~id~~"!=$(_).find("."+d)[0].value&&P(this),A()?(I(this),F(this),P(C),E(C),L(b),C.getAttribute("id")!=x.getAttribute("id")||x.checked?O()&&(F(x),P(x),E(x)):(F(x),P(x),E(x))):(F(this),P(this),E(this)),_&&T(this)):(D()?(B(this),M(this),P(C),q(C),N(b),x.checked&&(M(x),q(x),N(w))):(M(this),P(this),q(this)),_&&(S(this),P(this))),p()}),$(".csbs-del",c).on("click",function(){var e=$(this).attr("data-checkbox-id"),t=$("#"+e);return t.prop("checked",!1),t.trigger("change"),dna.destroy(i.itemsSelected[e]),c.children(".dna-clone").length||c.removeClass("visible"),!1}),$(".modal-clear",a).on("click",function(){return i.resetList(),!1}),$(".q-sel a",a).on("click",function(){var e=$(this),t=e.attr("data-name"),a=e.attr("data-id"),s={name:t,id:a},l=function(e){i._loadParentTree(e,function(){i._checkCheckBox(a)})};return $("#id_"+a).length?$("#id_"+a).prop("checked",!0).trigger("change"):n(s,i.opt.getParentUrl,l),!1}),$("."+h,a).on("click",function(){return i.applyHandler(this),!1}),d.siblings("."+i.opt.clearAllButtonClass).on("click",function(){i.resetList(),EXPO.searchBlock.placesField.clearValue()})})};o.prototype={_getAjax:function(e,t){var i=this;e||(e=""),$.ajax({type:"GET",url:i.opt.ajaxUrl,data:e,success:function(e){return"function"!=typeof t?(i.rawData=e,e):(i.rawData=e,void t(e))}})},_renderSublist:function(e,t,i){var n=this,a=0,s=t+"-sub",l=function(e){if(e.length){for(n.curDNA[s]={},a;a2&&c?s.timeout=setTimeout(function(){n({term:t,form:l},s.opt.autoCompleteUrl,d),c=!1},1e3):0!=t.length||c||s.$inputFilter.hasClass("ui-autocomplete-input")&&(s.$inputFilter.autocomplete("destroy"),c=!0),!1}).click(function(){return!1})},_loadParentTree:function(e,t,i){var n,a,l,c,o=this,d=e,h=$("#id_"+d.id),u=function(e){var n=$("#id_"+d.id),h=0,u=function(e){r.hide(),h++,h==e&&(i||0===i?t(i):t())};r.hide(),n.length&&s(o.curDNA[a+"-sub"])==e&&(l={name:d.name,id:d.id},r.show(),c=$("#id_"+d.id).closest(".level").children(".trigger").attr("data-template-id"),o._renderNested(l,u,c,d.id))},p=function(){r.hide(),i||0===i?t(i):t()};r.show(),d.hasOwnProperty("parent")?h.length?(l={name:d.name,id:d.id},c=h.closest(".level").children(".trigger").attr("data-template-id"),o._renderNested(l,function(){r.hide(),t()},c,d.id)):(n={name:d.parent.name,id:d.parent.id},a=$("#id_"+d.parent.id).closest(".level").children(".trigger").attr("data-template-id"),o._renderSublist(n,a,u)):(n={name:d.name,id:d.id},a=$("#id_"+d.id).closest(".level").children(".trigger").attr("data-template-id"),o._renderSublist(n,a,p))},applyHandler:function(e){console.log(this)},_refreshText:function(){var e,t=$("#"+this.opt.modalTrigger),i=16;e=l(this.opt.selectedItemsContainer,i),e&&"~~text~~"!=e&&"~~text~~..."!=e?(t.text(e),t.siblings("."+this.opt.clearAllButtonClass).addClass("active")):(t.text(t.data("default")),t.siblings("."+this.opt.clearAllButtonClass).removeClass("active"))}};var d=function(e){this.opt=e;var t,i=this,n=$("#"+i.opt.dateFrom),a=$("#"+i.opt.dateTo),s=$("#"+i.opt.id),l=$("#"+i.opt.modalTrigger),r=i.opt.applyBtnClass,c=function(){var e="",t=l.data("lng-to"),i=l.data("lng-from"),s=$.trim(a.val()),r=$.trim(n.val());return""!=s&&""!=r?e=$(window).width()<1086?i+": "+r+"
      "+t+": "+s+".":i+": "+r+" "+t+": "+s+".":""!=s&&""==r?e=t+": "+s+".":""==s&&""!=r&&(e=i+": "+r+"."),e},o=function(e){var t=24;$(window).width()<1086&&(t=6),""!=e?(l.html(e).siblings(".trigger-label").addClass("hidden"),l.siblings("."+i.opt.clearAllButtonClass).addClass("active")):(l.html(l.data("default")).siblings(".trigger-label").removeClass("hidden"),l.siblings("."+i.opt.clearAllButtonClass).removeClass("active"))},d=function(e){var t,s,l,r,c=e.getAttribute("id"),o=e.value,d=Date.parse(o);i.validate()&&($(e).parent(".pwf-field").removeClass("err"),c==i.opt.dateFrom?(t=a[0].getAttribute("id"),s=a[0].value):(t=n[0].getAttribute("id"),s=n[0].value),l=Date.parse(s),d>l&&c==i.opt.dateFrom?(r=document.getElementById(c).value,document.getElementById(c).value=document.getElementById(t).value,document.getElementById(t).value=r):l>d&&c==i.opt.dateTo&&(r=document.getElementById(t).value,document.getElementById(t).value=document.getElementById(c).value,document.getElementById(c).value=r))};this.$dateFrom=n,this.$dateTo=a,this.$modalTrigger=l,$(function(){$.datepicker.setDefaults($.datepicker.regional.ru),n.datepicker({dateFormat:"dd.mm.yy",showOn:"button",showOtherMonths:!0,constrainInput:!0,onClose:function(e){a.datepicker("option","minDate",e)}}).inputmask("99.99.9999",{showMaskOnHover:!1,insertMode:!1,oncomplete:function(){t=this}}),a.datepicker({dateFormat:"dd.mm.yy",showOn:"button",showOtherMonths:!0,constrainInput:!0,onClose:function(e){n.datepicker("option","maxDate",e)}}).inputmask("99.99.9999",{showMaskOnHover:!1,insertMode:!1,oncomplete:function(){t=this}}),$('input[type="text"]',s).on("change",function(){var e=c();i.validate()&&o(e)}),$("."+r,s).on("click",function(){return t&&d(t),i.applyHandler(this),!1}),l.siblings("."+i.opt.clearAllButtonClass).on("click",function(){$(this).removeClass("active"),i.resetList()})})};d.prototype={resetList:function(){this.$dateFrom.val(""),this.$dateTo.val(""),this.$modalTrigger.text(this.$modalTrigger.attr("data-default"))},validate:function(){var e=this.$dateTo.val(),t=this.$dateFrom.val(),i=e.split("."),n=t.split("."),a=[],s=!0;return a[0]=Date.parse(i[1]+"."+i[0]+"."+i[2]),a[1]=Date.parse(n[1]+"."+n[0]+"."+n[2]),a[0]||""==$.trim(e)?this.$dateTo.parent(".pwf-field").removeClass("err"):(this.$dateTo.parent(".pwf-field").addClass("err"),s=!1),a[1]||""==$.trim(t)?this.$dateFrom.parent(".pwf-field").removeClass("err"):(this.$dateFrom.parent(".pwf-field").addClass("err"),s=!1),s},applyHandler:function(e){}};var h=function(e){this.opt=e,this.opt.anyChar=!1;var i=this,s=!0;this.$field=$("#"+i.opt.id),this.DOMcompleteWrap=document.getElementById(i.opt.autoCompleteWrapId),this.afterClear,this.rawData={items:[],set:function(e){this.items=e,this._rawDataChange()},get:function(){return this.items},_rawDataChange:function(e){var t,i=this;for(t=0;t2?i.timeout=setTimeout(function(){n(a,i.opt.autoCompleteUrl,function(e){i.$field.hasClass("ui-autocomplete-input")&&i.$field[i.completeName]("destroy"),i.rawData.set(e),i._initAutoComplete(),i.showList("")})},1e3):0===text.length&&i.$field.hasClass("ui-autocomplete-input")&&(i.$field[i.completeName]("destroy"),t.removeClass(i.DOMcompleteWrap,"full-visible"),i._resetmodals(i.afterClear)):text.length>2&&s?i.timeout=setTimeout(function(){n(a,i.opt.autoCompleteUrl,function(e){i.rawData.set(e),i._initAutoComplete(),i.showList("")}),s=!1},1e3):0!=text.length||s?i.$field.hasClass("ui-autocomplete-input")&&i.showList(text):i.$field.hasClass("ui-autocomplete-input")&&(i.$field[i.completeName]("destroy"),t.removeClass(i.DOMcompleteWrap,"full-visible"),i._resetmodals(i.afterClear),s=!0),!1}).click(function(){return!1})};return h.prototype={_initAutoComplete:function(){var e=this;e.$field[e.completeName]({source:e.rawData.get(),minLength:0,appendTo:e.DOMcompleteWrap,select:function(t,i){e._afterSelect(t,i)},close:function(){t.removeClass(e.DOMcompleteWrap,"full-visible")},open:function(){t.addClass(e.DOMcompleteWrap,"full-visible")}})},_afterSelect:function(e,t){var i=this;e.preventDefault(),t.item.url?window.location=t.item.url:t.item.label.length&&(i.$field[0].value=t.item.label,i.selectCheckBoxes(t.item.id,t.item.name))},_resetmodals:function(e){return e?void e():0},selectHandler:function(){},selectCheckBoxes:function(e,t){},showList:function(e){self=this,this.$field[self.completeName]("search",e)},pullData:function(e){},clearValue:function(){this.$field.val("")}},e.init=function(e){$.extend(this.lang,e.lang),e.lang=null,$.extend(this.settings,e);var i=this,a=function(){$(i.DOMform).find('input[name="~~name~~"]').remove()};"None"!=this.settings.searchData&&this.settings.searchData&&(this.previousSearch=JSON.parse(this.settings.searchData)),this.DOMform=document.getElementById(this.settings.formId),$(this.DOMform).on("submit",function(){a()}),$.widget("custom.exibitionComplete",$.ui.autocomplete,{_renderMenu:function(e,t){var i=this,n="";$.each(t,function(t,a){a.cat!=n&&a.cat&&(e.append("
    • "+a.cat+"
    • "),n=a.cat),i._renderItemData(e,a)})}}),$.widget("custom.exibitionComplete",$.ui.autocomplete,{_renderMenu:function(e,t){var i=this,n="";$.each(t,function(t,a){a.cat!=n&&a.cat&&(e.append("
    • "+a.cat+"
    • "),n=a.cat),i._renderItemData(e,a)})}}),$.widget("custom.placeComplete",$.ui.autocomplete,{_renderItem:function(e,t){return $("
    • ").append($("").text(t.label)).append(' ('+t.cat+")").appendTo(e)}}),this.exhibitionField=new h(i.settings.firstField),this.exhibitionField.completeName="exibitionComplete",this.exhibitionField.opt.anyChar=!0,this.placesModal=new o(i.settings.place),this.subjModal=new c(i.settings.subject),this.periodModal=new d(i.settings.period),this.exhibitionField.selectCheckBoxes=function(e,t){var i,a,s=this,l=t;"th"==t?i=document.getElementById(s.opt.prefix+e):"tg"==t&&(i=document.getElementById(s.opt.prefixInner+e),l="th"),r.show(),i?(r.hide(),EXPO.searchBlock.subjModal.resetList(),$(i).prop("checked",!0),$(i).trigger("change")):(a={name:t,id:e},EXPO.searchBlock.subjModal.resetList(),n(a,EXPO.searchBlock.subjModal.opt.getParentUrl,function(i){EXPO.searchBlock.subjModal._loadParentTree(i,function(){EXPO.searchBlock.subjModal._checkCheckBox(e,t)})}))},this.placesField=new h(i.settings.placeField),this.placesField.dataForm=EXPO.searchBlock.placesModal.$inputFilter.attr("data-form"),this.placesField.selectCheckBoxes=function(e,t){var i,a,s=this;i=document.getElementById(s.opt.prefix+e),i?(r.hide(),EXPO.searchBlock.placesModal.resetList(),$(i).prop("checked",!0),$(i).trigger("change")):(a={name:t,id:e},EXPO.searchBlock.placesModal.resetList(),n(a,EXPO.searchBlock.placesModal.opt.getParentUrl,function(t){EXPO.searchBlock.placesModal._loadParentTree(t,function(){EXPO.searchBlock.placesModal._checkCheckBox(e,!0)})}))},this.exhibitionField.afterClear=function(){i.subjModal.resetList()},this.placesField.afterClear=function(){i.placesModal.resetList()},this.modalWindow=new t.Modal(i.settings.modal),this.periodModal.applyHandler=function(){this.validate()&&(r.show(),$(i.DOMform).submit())},this.placesModal.applyHandler=function(){r.show(),$(i.DOMform).submit()},this.subjModal.applyHandler=function(){r.show(),$(i.DOMform).submit()},$("."+i.settings.modalTriggerClass).on("click",function(e){return e.preventDefault(),i.modalWindow.pullData(this.getAttribute("href")),i.modalWindow.open(),!1}),$(function(){if(i.previousSearch)for(var e=0;e')))):s.length&&(e=$("#img-"+r),e.parent("a").length&&(a=e.attr("src").replace(".png","_hover.png"),e.attr("src",a),e.unwrap()));$(".p-editable").removeClass("pe-current")}else for(r in t.errors)s=$("#id_"+r),s.parent(".required").addClass("err"),s.blur(function(){s.parent(".required").removeClass("err"),o.$form.submit()});o.refreshHTML()},this.beforeSubmitHandler=function(t,e){var a=$("#"+e).serialize();return JSON.parse('{"'+decodeURI(a).replace(/"/g,'\\"').replace(/&/g,'","').replace(/=/g,'":"')+'"}')},this.refreshHTML=function(){console.log(this);var t=!0;$("input:text",this.$form).each(function(){""==$.trim($(this).val())&&(t=!1)}),t?($(".full-complete",this.$description).removeClass("hidden"),$(".not-complete",this.$description).addClass("hidden")):($(".full-complete",this.$description).addClass("hidden"),$(".not-complete",this.$description).removeClass("hidden"))},this.ajaxPath=t},e.phone_form=function(t){var e=this;this.afterSubmitHandler=function(t){t.success&&($("#static-phone-value").text($("#id_phone")[0].value),$(".p-editable").removeClass("pe-current"),e.refreshHTML())},this.ajaxPath=t},e.email_form=function(t){var e,a=this;this.afterSubmitHandler=function(t){t.success?(e=$("#id_email").val(),$("#static-email-value").attr("href","mailto:"+e).text(e),$(".p-editable").removeClass("pe-current"),a.refreshHTML()):this.$editable.addClass("err")},this.ajaxPath=t},e.web_page_form=function(t){var e,a=this;this.afterSubmitHandler=function(t){t.success&&(e=$("#id_web_page").val(),$("#static-web-page-value").attr("href",e).text(e),$(".p-editable").removeClass("pe-current"),a.refreshHTML())},this.ajaxPath=t},e.home_form=function(t){var e=this;this.afterSubmitHandler=function(t){if(t.success){var a=$("#s2id_id_country").find(".select2-chosen").text(),s=$("#s2id_id_city").find(".select2-chosen").text();$("#static-home-country").text(a),$("#static-home-city").text(s),$(".p-editable").removeClass("pe-current"),e.refreshHTML()}},this.ajaxPath=t},e.found_form=function(t){var e,a,s=this;this.afterSubmitHandler=function(t){if(t.success){var i=$(".full-complete",this.$staticValue);a=$("#id_foundation"),e=$.trim(a.val()),i.text(e),$(".p-editable").removeClass("pe-current"),s.refreshHTML()}},this.ajaxPath=t,this.refreshHTML=function(){var t=$(".full-complete",this.$staticValue),e=$(".not-complete",this.$staticValue);return""==$.trim(t.text())?(t.addClass("hidden"),e.removeClass("hidden")):(t.removeClass("hidden"),e.addClass("hidden")),!1}},e.staff_form=function(t){var e,a,s=this;this.afterSubmitHandler=function(t){if(t.success){var i=$(".full-complete",this.$staticValue);a=$("#id_staff_number"),e=$.trim(a.val()),i.text(e),$(".p-editable").removeClass("pe-current"),s.refreshHTML()}},this.ajaxPath=t,this.refreshHTML=function(){var t=$(".full-complete",this.$staticValue),e=$(".not-complete",this.$staticValue);return""==$.trim(t.text())?(t.addClass("hidden"),e.removeClass("hidden")):(t.removeClass("hidden"),e.addClass("hidden")),!1}},e.description_form=function(t){var e,a=$("#id_description"),s=this;this.afterSubmitHandler=function(t){if(t.success){var r=$(".full-complete",this.$staticValue);e=$.trim(a.val()),r.html(i.nl2br(e)),$(".p-editable").removeClass("pe-current"),s.refreshHTML()}},this.ajaxPath=t,this.refreshHTML=function(){var t=$(".full-complete",this.$staticValue),e=$(".not-complete",this.$staticValue);return""==$.trim(t.text())?(t.addClass("hidden"),e.removeClass("hidden")):(t.removeClass("hidden"),e.addClass("hidden")),!1}},e.avatar_form=function(t){var e,a=this,s=$("#id_avatar"),i=($("#pic-edit-photo"),$("#pick-block")),r=$("img",i);this.afterSubmitHandler=function(t){t.success&&r.length&&(r.attr("src",t.url),a.refreshHTML())},this.beforeSubmitHandsler=function(t){"string"!=typeof t?(a.submit(t),$("#wait-ajax").show()):(e=$("#"+a.formId),e.off("submit"),e.trigger("submit"))},s.on("change",function(){$(this).parents("form").submit()}),this.ajaxPath=t,this.refreshHTML=function(){$.trim(this.$image.attr("src"))==this.noImageSrc?(this.$editable.addClass("hidden"),this.$description.removeClass("hidden")):(this.$editable.removeClass("hidden"),this.$description.addClass("hidden"))}},e.tag_form=function(t){var e=this;this.afterSubmitHandler=function(t){var a=", ";if(t.success){this.$staticValue.html("");for(var s=0;s"+t.tags[s].text+"")),s!=t.tags.length-1&&this.$staticValue.append($(a));e.refreshHTML()}},this.ajaxPath=t,this.$input=$("#id_tag"),this.refreshHTML=function(){this.$label=$(".label",this.$editable),this.$initial=$(".initial-position",this.$wrapper),this.formId=this.$form.attr("id"),""==$.trim(this.$input.val())?(this.$form.detach().appendTo(this.$editable),this.$label.detach().appendTo(this.$editable),this.$initial.removeClass("hidden"),this.$description.addClass("hidden")):($("#"+this.formId,this.$editable).length<0&&(this.$form.detach().appendTo(this.$editable),this.$label.detach().appendTo(this.$editable)),this.$editable.addClass("hidden"),this.$initial.addClass("hidden"),this.$description.removeClass("hidden"))}};var r=function(t){this.opt=t;var e=this,a=(this.opt.canvasId,function(){var t=document.getElementById(e.opt.canvasId),a=document.getElementById(e.opt.autocompleteId);e.mapOptions={zoom:e.opt.zoom.country},e.map=new google.maps.Map(t,e.mapOptions),e.geocoder=new google.maps.Geocoder,e.refresh();var s=new google.maps.places.Autocomplete(a);s.bindTo("bounds",e.map),google.maps.event.addListener(s,"place_changed",function(){if(!e.status.visible){var t=s.getPlace();if(!t.geometry)return;t.geometry.viewport?e.map.fitBounds(t.geometry.viewport):(e.map.setCenter(t.geometry.location),e.map.setZoom(14)),e.marker.setPosition(t.geometry.location),EXPO.company.forms.address_form.submit()}})});google.maps.event.addDomListener(window,"load",a),this.$wrapper=$(document.getElementById(this.opt.blockId)),this.$toggle=$(".map-toggle",this.$wrapper),this.$container=$(".map-wrap",this.$wrapper),this.status={visible:!1},this.$toggle.on("click",function(){return $(this).hasClass("active")?e.hideMap():(e.showMap(),google.maps.event.trigger(e.map,"resize"),e.refresh()),!1})};return r.prototype={showMap:function(){this.$toggle.addClass("active").children(".label").text(this.$toggle.attr("data-hide-text")),this.status.visible=!0,this.$container.removeClass("hidden")},hideMap:function(){this.$toggle.removeClass("active").children(".label").text(this.$toggle.attr("data-show-text")),this.status.visible=!1,this.$container.addClass("hidden")},refresh:function(){var t,e=this,a=$("#id_country option:selected").text(),s=$(document.getElementById("id_city")).attr("data-init-text"),i=$.trim(document.getElementById(e.opt.autocompleteId).value);""!=$.trim(a)?(this.status.visible=!0,this.$toggle.removeClass("hidden"),""==$.trim(s)?(t=a,e.map.set("zoom",e.opt.zoom.country)):""==$.trim(i)?(t=a+" "+s,e.map.set("zoom",e.opt.zoom.city)):(t=a+" "+s+" "+i,e.map.set("zoom",e.opt.zoom.street)),this.geocoder.geocode({address:t},function(t,a){a==google.maps.GeocoderStatus.OK?(e.map.setCenter(t[0].geometry.location),e.marker?e.marker.set("position",t[0].geometry.location):e.marker=new google.maps.Marker({map:e.map,position:t[0].geometry.location})):console.log("!ERORR: Geocode was not successful for the following reason: "+a)})):(this.$toggle.addClass("hidden"),this.status.visible=!1)}},a.init=function(a){$.extend(this.lang,a.lang),a.lang=null,$.extend(this.opt,a);var o=this,n=function(t){var e=$.masksSort($.masksLoad("/static/client/js/plugins/inputmask/phone-codes.json"),["#"],/[0-9]|#/,"mask"),a={inputmask:{definitions:{"#":{validator:"[0-9]",cardinality:1}},showMaskOnHover:!1,insertMode:!1,autoUnmask:!0},match:/[0-9]/,insertMode:!1,replace:"#",list:e,listKey:"mask",onMaskChange:function(){$(this).attr("placeholder","+_(___)___-__-__")}},s="#"+t;$(s).inputmasks(a)};this.rating=new t(this.opt.rating),this.forms={},$(function(){{var t=$("."+o.opt.editableClass),a=$("#"+o.opt.selectBox[0].id),l=$("#"+o.opt.selectBox[1].id),d=$("#"+o.opt.selectBox[3].id);$("#id_address_inf")}s=$("#wait-ajax").css({"z-index":"8012"}),o.map=new r(o.opt.map),d.select2({width:"element",placeholder:o.opt.selectBox[3].placeHolder,maximumSelectionSize:3}),d.on("change",function(){var t=$("#theme_form"),e=t.attr("action"),a=t.serialize();i.postRequest(a,e)}),a.select2({width:"element",placeholder:o.opt.selectBox[0].placeholder}),a.on("change",function(){l.val(0),l.select2("val","")}),l.on("change",function(){var t=$(this).closest(".epf-field").find(".select2-chosen").text();$(this).attr("data-init-text",t),o.forms.address_form.$form.find("input:text").val(""),o.forms.address_form.$staticValue.text(""),o.forms.address_form.refreshHTML(),o.forms.home_form.submit(),o.forms.address_form.submit(),o.map.refresh()}),a.on("change",function(){(0!=$(this).val()||""!=$(this).val())&&l.prop("disabled",!1)}),(0==a.val()||""==a.val())&&l.prop("disabled",!0),l.select2({placeholder:o.opt.selectBox[1].placeHolder,width:"element",ajax:{url:o.opt.selectBox[1].path,dataType:"json",quietMillis:200,data:function(t,e,a){var a=$("#"+o.opt.selectBox[0].id).val();return{term:t,page:e,country:a}},results:function(t){var e=[];return $.each(t,function(t,a){e.push({id:a.id,text:a.label})}),{results:e}}},initSelection:function(t,e){var a=$.trim($(t).val()),s=$(t).attr("data-init-text");e({id:a,text:s})}}),$("#"+o.opt.selectBox[2].id).val("0"),$("#"+o.opt.selectBox[2].id).select2({placeholder:o.opt.selectBox[2].placeholder,width:"368px",multiple:!0,maximumSelectionSize:5,ajax:{url:o.opt.selectBox[2].path,dataType:"json",quietMillis:200,data:function(t,e){var a=$("#theme-inf").attr("data-theme");return a=a.split(","),a.pop(),{term:t,page:e,themes:a}},results:function(t){var e=[];return $.each(t,function(t,a){e.push({id:a.id,text:a.label})}),{results:e}}},initSelection:function(t,e){var a;t.val(""),""!=$.trim(t.attr("data-predifined"))&&"[]"!=$.trim(t.attr("data-predifined"))?(a=JSON.parse(t.attr("data-predifined")),e(a)):$("#tag_form .select2-input").width(336).addClass("select2-default").val(o.opt.selectBox[2].placeholder)}}),$("#"+o.opt.selectBox[2].id).on("change",function(){var t=$("#tag_form");t.submit()}),n(o.opt.phoneBox),$("."+o.opt.updateFormClass).each(function(){var a,i=$(this).attr("id"),r=$(this).attr("action"),n=$(this).closest("."+o.opt.formWrapperClass),l=$("."+o.opt.staticValueClass,n),d=$("."+o.opt.descriptionClass,n),c=$("."+o.opt.editableClass,n),h=$("."+o.opt.closeButtonClass,n),m=$("."+o.opt.avatarImageClass,n);o.forms[i]=e.factory(i,r),o.forms[i].refrashable=$("."+o.opt.editButtonClass,n).hasClass("no-refresh")?!1:!0,o.forms[i].$form=$(this),o.forms[i].$wrapper=n,o.forms[i].$staticValue=l,o.forms[i].$description=d,o.forms[i].$editable=c,m.length&&(o.forms[i].$image=m,o.forms[i].noImageSrc=o.opt.noImageSrc),$(this).off("submit"),$(this).on("submit",function(){return s.show(),window.FormData&&"upload"in $.ajaxSettings.xhr()?(a=new FormData(this),o.forms[i].beforeSubmit(a,i)):(a=$(this).serialize(),o.forms[i].beforeSubmit(a,i)),!1}),h.on("click",function(){return c.removeClass(o.opt.formCurrentClass),o.forms[i].refreshHTML(),!1}),$("."+o.opt.avatarButtonClass,n).length?$("."+o.opt.editButtonClass+", ."+o.opt.avatarButtonClass,n).on("click",function(){var t=$("#"+o.opt.avatarInputId);return t.trigger("click"),!1}):$("."+o.opt.editButtonClass+", ."+o.opt.avatarButtonClass,n).on("click",function(){var e=$(this).closest("."+o.opt.formWrapperClass),a=e.find("."+o.opt.updateFormClass).attr("id"),s=e.find("."+o.opt.descriptionClass),r=e.find("."+o.opt.editableClass);return t.each(function(){var t=$(this).closest("."+o.opt.formWrapperClass),e=t.find("."+o.opt.updateFormClass).attr("id"),a=(t.find("."+o.opt.descriptionClass),t.find("."+o.opt.editableClass));$(this).hasClass(o.opt.formCurrentClass)&&(o.forms[e].refrashable?(o.forms[e].refreshHTML(),a.removeClass(EXPO.company.opt.formCurrentClass)):a.removeClass(o.opt.formCurrentClass))}),o.forms[a].refrashable&&(r.removeClass("hidden"),s.addClass("hidden")),r.addClass(o.opt.formCurrentClass),$(document).on("click.form",function(t){var e=$(t.target);e.parents().filter(".e-form").length<1&&(r.removeClass(o.opt.formCurrentClass),o.forms[i].refreshHTML(),$(document).off("click.form"))}),!1})}),$("#"+o.opt.previewBtnId).attr("href",window.location.href+"?logout=1")})},a}(); \ No newline at end of file +var EXPO=EXPO||{};EXPO.company?console.warn("WARNING: EXPO.company is already defined!"):EXPO.company=function(){function t(t){this.opt=t,this.$inst=$("#"+t.id),this.value=this.$inst.text}function e(){}var a={};a.opt={updateFormClass:"update-profile-form"},a.lang={};var s,i=EXPO.common;t.prototype={refresh:function(t){this.value=t,this.$inst.text(this.value)}},e.prototype={submit:function(t){var e=this;t||(t=new FormData(this.$form[0])),$.ajax({type:"POST",url:e.ajaxPath,data:t,processData:!1,contentType:!1,success:function(t){e.afterSubmit(t),t.success&&EXPO.company.rating.refresh(t.rating),$("#wait-ajax").fadeOut()}})},beforeSubmit:function(t,e){var a=this.beforeSubmitHandler,s=t;"string"!=typeof s?this.formData=s:this.formData=JSON.parse('{"'+decodeURI(s).replace(/"/g,'\\"').replace(/&/g,'","').replace(/=/g,'":"')+'"}'),this.formId=e,"function"==typeof a?(this.formData=a(t,e),this.submit(t),$("#wait-ajax").show()):(this.submit(t),$("#wait-ajax").show())},afterSubmit:function(t){var e=this.afterSubmitHandler;if("function"!=typeof e)throw{name:"Error",message:" handler function for processing response after form submit not defined, please define it!"};e(t)},refreshHTML:function(){var t=$.trim(this.$staticValue.text()).replace(/[^0-9a-zA-Zа-я\s]/g,"").replace(/(\d)\s/,"").replace(/\s+/g,"");(""==$.trim(this.$staticValue.text())||"NoneNone"==t)&&this.$wrapper.length&&this.refrashable?(this.$editable.addClass("hidden"),this.$editable.removeClass(EXPO.company.opt.formCurrentClass),this.$description.removeClass("hidden")):this.$wrapper.length&&this.refrashable&&(this.$editable.removeClass("hidden"),this.$description.addClass("hidden"))}},e.factory=function(t,a){var s,i=t;if("function"!=typeof e[i])throw{name:"Error",message:i+"doesen't exist"};return"function"!=typeof e[i].prototype.beforeSubmit&&(e[i].prototype=new e),s=new e[i](a)},e.name_form=function(t){var e=this;this.afterSubmitHandler=function(t){t.success?($("#static-name-value").text($("#id_name").val()),$(".p-editable").removeClass("pe-current"),e.refreshHTML()):this.$editable.addClass("err")},this.ajaxPath=t},e.spec_form=function(t){var e=this;this.afterSubmitHandler=function(t){t.success?($("#static-spec-value").html(i.nl2br($("#id_specialization").val())),$(".p-editable").removeClass("pe-current"),e.refreshHTML()):this.$editable.addClass("err")},this.ajaxPath=t},e.address_form=function(t){var e=this;this.afterSubmitHandler=function(t){t.success?($("#static-address-value").text($("#id_address_inf").val()),$(".p-editable").removeClass("pe-current"),e.refreshHTML()):this.$editable.addClass("err")},this.ajaxPath=t},e.social_form=function(t){var e,a,s,i,r,o=this;this.afterSubmitHandler=function(t){if(t.success){for(r in o.formData)s=$("#id_"+r),s.parent(".required").removeClass("err"),""!=$.trim(o.formData[r])&&s.length?(e=$("#img-"+r),e.length&&(i=$.trim(s.val()),e.parent("a").length?(e.parent("a").attr("href",i),a=e.attr("src").replace("_hover",""),e.attr("src",a)):(a=e.attr("src").replace("_hover",""),e.attr("src",a),e.wrap('')))):s.length&&(e=$("#img-"+r),e.parent("a").length&&(a=e.attr("src").replace(".png","_hover.png"),e.attr("src",a),e.unwrap()));$(".p-editable").removeClass("pe-current")}else for(r in t.errors)s=$("#id_"+r),s.parent(".required").addClass("err"),s.blur(function(){s.parent(".required").removeClass("err"),o.$form.submit()});o.refreshHTML()},this.beforeSubmitHandler=function(t,e){var a=$("#"+e).serialize();return JSON.parse('{"'+decodeURI(a).replace(/"/g,'\\"').replace(/&/g,'","').replace(/=/g,'":"')+'"}')},this.refreshHTML=function(){console.log(this);var t=!0;$("input:text",this.$form).each(function(){""==$.trim($(this).val())&&(t=!1)}),t?($(".full-complete",this.$description).removeClass("hidden"),$(".not-complete",this.$description).addClass("hidden")):($(".full-complete",this.$description).addClass("hidden"),$(".not-complete",this.$description).removeClass("hidden"))},this.ajaxPath=t},e.phone_form=function(t){var e=this;this.afterSubmitHandler=function(t){t.success&&($("#static-phone-value").text($("#id_phone")[0].value),$(".p-editable").removeClass("pe-current"),e.refreshHTML())},this.ajaxPath=t},e.email_form=function(t){var e,a=this;this.afterSubmitHandler=function(t){t.success?(e=$("#id_email").val(),$("#static-email-value").attr("href","mailto:"+e).text(e),$(".p-editable").removeClass("pe-current"),a.refreshHTML()):this.$editable.addClass("err")},this.ajaxPath=t},e.web_page_form=function(t){var e,a=this;this.afterSubmitHandler=function(t){t.success&&(e=$("#id_web_page").val(),$("#static-web-page-value").attr("href",e).text(e),$(".p-editable").removeClass("pe-current"),a.refreshHTML())},this.ajaxPath=t},e.home_form=function(t){var e=this;this.afterSubmitHandler=function(t){if(t.success){var a=$("#s2id_id_country").find(".select2-chosen").text(),s=$("#s2id_id_city").find(".select2-chosen").text();$("#static-home-country").text(a),$("#static-home-city").text(s),$(".p-editable").removeClass("pe-current"),e.refreshHTML()}},this.ajaxPath=t},e.found_form=function(t){var e,a,s=this;this.afterSubmitHandler=function(t){if(t.success){var i=$(".full-complete",this.$staticValue);a=$("#id_foundation"),e=$.trim(a.val()),i.text(e),$(".p-editable").removeClass("pe-current"),s.refreshHTML()}},this.ajaxPath=t,this.refreshHTML=function(){var t=$(".full-complete",this.$staticValue),e=$(".not-complete",this.$staticValue);return""==$.trim(t.text())?(t.addClass("hidden"),e.removeClass("hidden")):(t.removeClass("hidden"),e.addClass("hidden")),!1}},e.staff_form=function(t){var e,a,s=this;this.afterSubmitHandler=function(t){if(t.success){var i=$(".full-complete",this.$staticValue);a=$("#id_staff_number"),e=$.trim(a.val()),i.text(e),$(".p-editable").removeClass("pe-current"),s.refreshHTML()}},this.ajaxPath=t,this.refreshHTML=function(){var t=$(".full-complete",this.$staticValue),e=$(".not-complete",this.$staticValue);return""==$.trim(t.text())?(t.addClass("hidden"),e.removeClass("hidden")):(t.removeClass("hidden"),e.addClass("hidden")),!1}},e.description_form=function(t){var e,a=$("#id_description"),s=this;this.afterSubmitHandler=function(t){if(t.success){var r=$(".full-complete",this.$staticValue);e=$.trim(a.val()),r.html(i.nl2br(e)),$(".p-editable").removeClass("pe-current"),s.refreshHTML()}},this.ajaxPath=t,this.refreshHTML=function(){var t=$(".full-complete",this.$staticValue),e=$(".not-complete",this.$staticValue);return""==$.trim(t.text())?(t.addClass("hidden"),e.removeClass("hidden")):(t.removeClass("hidden"),e.addClass("hidden")),!1}},e.avatar_form=function(t){var e,a=this,s=$("#id_avatar"),i=($("#pic-edit-photo"),$("#pick-block")),r=$("img",i);this.afterSubmitHandler=function(t){t.success&&r.length&&(r.attr("src",t.url),a.refreshHTML())},this.beforeSubmitHandsler=function(t){"string"!=typeof t?(a.submit(t),$("#wait-ajax").show()):(e=$("#"+a.formId),e.off("submit"),e.trigger("submit"))},s.on("change",function(){$(this).parents("form").submit()}),this.ajaxPath=t,this.refreshHTML=function(){$.trim(this.$image.attr("src"))==this.noImageSrc?(this.$editable.addClass("hidden"),this.$description.removeClass("hidden")):(this.$editable.removeClass("hidden"),this.$description.addClass("hidden"))}},e.tag_form=function(t){var e=this;this.afterSubmitHandler=function(t){var a=", ";if(t.success){this.$staticValue.html("");for(var s=0;s"+t.tags[s].text+"")),s!=t.tags.length-1&&this.$staticValue.append($(a));e.refreshHTML()}},this.ajaxPath=t,this.$input=$("#id_tag"),this.refreshHTML=function(){this.$label=$(".label",this.$editable),this.$initial=$(".initial-position",this.$wrapper),this.formId=this.$form.attr("id"),""==$.trim(this.$input.val())?(this.$form.detach().appendTo(this.$editable),this.$label.detach().appendTo(this.$editable),this.$initial.removeClass("hidden"),this.$description.addClass("hidden")):($("#"+this.formId,this.$editable).length<0&&(this.$form.detach().appendTo(this.$editable),this.$label.detach().appendTo(this.$editable)),this.$editable.addClass("hidden"),this.$initial.addClass("hidden"),this.$description.removeClass("hidden"))}};var r=function(t){this.opt=t;var e=this,a=(this.opt.canvasId,function(){var t=document.getElementById(e.opt.canvasId),a=document.getElementById(e.opt.autocompleteId);e.mapOptions={zoom:e.opt.zoom.country},e.map=new google.maps.Map(t,e.mapOptions),e.geocoder=new google.maps.Geocoder,e.refresh();var s=new google.maps.places.Autocomplete(a);s.bindTo("bounds",e.map),google.maps.event.addListener(s,"place_changed",function(){if(!e.status.visible){var t=s.getPlace();if(!t.geometry)return;t.geometry.viewport?e.map.fitBounds(t.geometry.viewport):(e.map.setCenter(t.geometry.location),e.map.setZoom(14)),e.marker.setPosition(t.geometry.location),EXPO.company.forms.address_form.submit()}})});google.maps.event.addDomListener(window,"load",a),this.$wrapper=$(document.getElementById(this.opt.blockId)),this.$toggle=$(".map-toggle",this.$wrapper),this.$container=$(".map-wrap",this.$wrapper),this.status={visible:!1},this.$toggle.on("click",function(){return $(this).hasClass("active")?e.hideMap():(e.showMap(),google.maps.event.trigger(e.map,"resize"),e.refresh()),!1})};return r.prototype={showMap:function(){this.$toggle.addClass("active").children(".label").text(this.$toggle.attr("data-hide-text")),this.status.visible=!0,this.$container.removeClass("hidden")},hideMap:function(){this.$toggle.removeClass("active").children(".label").text(this.$toggle.attr("data-show-text")),this.status.visible=!1,this.$container.addClass("hidden")},refresh:function(){var t,e=this,a=$("#id_country option:selected").text(),s=$(document.getElementById("id_city")).attr("data-init-text"),i=$.trim(document.getElementById(e.opt.autocompleteId).value);""!=$.trim(a)?(this.status.visible=!0,this.$toggle.removeClass("hidden"),""==$.trim(s)?(t=a,e.map.set("zoom",e.opt.zoom.country)):""==$.trim(i)?(t=a+" "+s,e.map.set("zoom",e.opt.zoom.city)):(t=a+" "+s+" "+i,e.map.set("zoom",e.opt.zoom.street)),this.geocoder.geocode({address:t},function(t,a){a==google.maps.GeocoderStatus.OK?(e.map.setCenter(t[0].geometry.location),e.marker?e.marker.set("position",t[0].geometry.location):e.marker=new google.maps.Marker({map:e.map,position:t[0].geometry.location})):console.log("!ERORR: Geocode was not successful for the following reason: "+a)})):(this.$toggle.addClass("hidden"),this.status.visible=!1)}},a.init=function(a){$.extend(this.lang,a.lang),a.lang=null,$.extend(this.opt,a);var o=this,n=function(t){var e=$.masksSort($.masksLoad("/static/client/js/plugins/inputmask/phone-codes.json"),["#"],/[0-9]|#/,"mask"),a={inputmask:{definitions:{"#":{validator:"[0-9]",cardinality:1}},showMaskOnHover:!1,insertMode:!1,autoUnmask:!0},match:/[0-9]/,insertMode:!1,replace:"#",list:e,listKey:"mask",onMaskChange:function(){$(this).attr("placeholder","+_(___)___-__-__")}},s="#"+t;$(s).inputmasks(a)};this.rating=new t(this.opt.rating),this.forms={},$(function(){var t=$("."+o.opt.editableClass),a=$("#"+o.opt.selectBox[0].id),l=$("#"+o.opt.selectBox[1].id),d=$("#"+o.opt.selectBox[3].id);$("#id_address_inf");s=$("#wait-ajax").css({"z-index":"8012"}),o.map=new r(o.opt.map),d.select2({width:"element",placeholder:o.opt.selectBox[3].placeHolder,maximumSelectionSize:3}),d.on("change",function(){var t=$("#theme_form"),e=t.attr("action"),a=t.serialize();i.postRequest(a,e)}),a.select2({width:"element",placeholder:o.opt.selectBox[0].placeholder}),a.on("change",function(){l.val(0),l.select2("val","")}),l.on("change",function(){var t=$(this).closest(".epf-field").find(".select2-chosen").text();$(this).attr("data-init-text",t),o.forms.address_form.$form.find("input:text").val(""),o.forms.address_form.$staticValue.text(""),o.forms.address_form.refreshHTML(),o.forms.home_form.submit(),o.forms.address_form.submit(),o.map.refresh()}),a.on("change",function(){(0!=$(this).val()||""!=$(this).val())&&l.prop("disabled",!1)}),(0==a.val()||""==a.val())&&l.prop("disabled",!0),l.select2({placeholder:o.opt.selectBox[1].placeHolder,width:"element",ajax:{url:o.opt.selectBox[1].path,dataType:"json",quietMillis:200,data:function(t,e,a){var a=$("#"+o.opt.selectBox[0].id).val();return{term:t,page:e,country:a}},results:function(t){var e=[];return $.each(t,function(t,a){e.push({id:a.id,text:a.label})}),{results:e}}},initSelection:function(t,e){var a=$.trim($(t).val()),s=$(t).attr("data-init-text");e({id:a,text:s})}}),$("#"+o.opt.selectBox[2].id).val("0"),$("#"+o.opt.selectBox[2].id).select2({placeholder:o.opt.selectBox[2].placeholder,width:"368px",multiple:!0,maximumSelectionSize:5,ajax:{url:o.opt.selectBox[2].path,dataType:"json",quietMillis:200,data:function(t,e,a){var s=$("#theme-inf").attr("data-theme");return s=s.split(","),s.pop(),{term:t,page:e,themes:s}},results:function(t){var e=[];return $.each(t,function(t,a){e.push({id:a.id,text:a.label})}),{results:e}}},initSelection:function(t,e){var a;t.val(""),""!=$.trim(t.attr("data-predifined"))&&"[]"!=$.trim(t.attr("data-predifined"))?(a=JSON.parse(t.attr("data-predifined")),e(a)):$("#tag_form .select2-input").width(336).addClass("select2-default").val(o.opt.selectBox[2].placeholder)}}),$("#"+o.opt.selectBox[2].id).on("change",function(t){var e=$("#tag_form");e.submit()}),n(o.opt.phoneBox),$("."+o.opt.updateFormClass).each(function(){var a,i=$(this).attr("id"),r=$(this).attr("action"),n=$(this).closest("."+o.opt.formWrapperClass),l=$("."+o.opt.staticValueClass,n),d=$("."+o.opt.descriptionClass,n),h=$("."+o.opt.editableClass,n),c=$("."+o.opt.closeButtonClass,n),m=$("."+o.opt.avatarImageClass,n);o.forms[i]=e.factory(i,r),$("."+o.opt.editButtonClass,n).hasClass("no-refresh")?o.forms[i].refrashable=!1:o.forms[i].refrashable=!0,o.forms[i].$form=$(this),o.forms[i].$wrapper=n,o.forms[i].$staticValue=l,o.forms[i].$description=d,o.forms[i].$editable=h,m.length&&(o.forms[i].$image=m,o.forms[i].noImageSrc=o.opt.noImageSrc),$(this).off("submit"),$(this).on("submit",function(){return s.show(),window.FormData&&"upload"in $.ajaxSettings.xhr()?(a=new FormData(this),o.forms[i].beforeSubmit(a,i)):(a=$(this).serialize(),o.forms[i].beforeSubmit(a,i)),!1}),c.on("click",function(){return h.removeClass(o.opt.formCurrentClass),o.forms[i].refreshHTML(),!1}),$("."+o.opt.avatarButtonClass,n).length?$("."+o.opt.editButtonClass+", ."+o.opt.avatarButtonClass,n).on("click",function(){var t=$("#"+o.opt.avatarInputId);return t.trigger("click"),!1}):$("."+o.opt.editButtonClass+", ."+o.opt.avatarButtonClass,n).on("click",function(){var e=$(this).closest("."+o.opt.formWrapperClass),a=e.find("."+o.opt.updateFormClass).attr("id"),s=e.find("."+o.opt.descriptionClass),r=e.find("."+o.opt.editableClass);return t.each(function(){var t=$(this).closest("."+o.opt.formWrapperClass),e=t.find("."+o.opt.updateFormClass).attr("id"),a=(t.find("."+o.opt.descriptionClass),t.find("."+o.opt.editableClass));$(this).hasClass(o.opt.formCurrentClass)&&(o.forms[e].refrashable?(o.forms[e].refreshHTML(),a.removeClass(EXPO.company.opt.formCurrentClass)):a.removeClass(o.opt.formCurrentClass))}),o.forms[a].refrashable&&(r.removeClass("hidden"),s.addClass("hidden")),r.addClass(o.opt.formCurrentClass),$(document).on("click.form",function(t){var e=$(t.target);e.parents().filter(".e-form").length<1&&(r.removeClass(o.opt.formCurrentClass),o.forms[i].refreshHTML(),$(document).off("click.form"))}),!1})}),$("#"+o.opt.previewBtnId).attr("href",window.location.href+"?logout=1")})},a}(); \ No newline at end of file diff --git a/templates/client/static_client/js_min/_modules/page.events.feed.min.js b/templates/client/static_client/js_min/_modules/page.events.feed.min.js index 7936cdb9..b7575340 100644 --- a/templates/client/static_client/js_min/_modules/page.events.feed.min.js +++ b/templates/client/static_client/js_min/_modules/page.events.feed.min.js @@ -1 +1 @@ -var EXPO=EXPO||{};EXPO.events=EXPO.events||{},EXPO.events.feed?console.warn("WARNING: EXPO.eventsFeed is already defined!"):EXPO.events.feed=function(){var e={};e.opt={};var t=EXPO.common,i=function(e){this.opt=e,this.DOMbody=document.getElementById(e.bodyId)},n=function(e,t,i){e||(e=""),$.ajax({type:"GET",url:t,data:e,success:function(e){return"function"!=typeof i?e:void i(e)}})},s=function(e,t,i){return e.hasOwnProperty(t)&&(e[i]=e[t]),this},a=function(e){var t,i=0;for(t in e)e.hasOwnProperty(t)&&i++;return i},r=$(".wait-ajax.absolute"),c=function(e){var t=Object.keys(e).map(function(t){return encodeURIComponent(t)+"="+encodeURIComponent(e[t])}).join("&");return"?"+t};i.prototype={show:function(){$(this.DOMbody).slideDown()},hide:function(){$(this.DOMbody).hide()}};var o=function(e){this.opt=e;var i,n=this,s=0,a=$("#"+n.opt.subjectTriggerWrapId),r=n.opt.id,c=$("#"+r),o=$(".csb-menu-input",c),l=$("#"+this.opt.selectedItemsContainer,c),d=n.opt.defaultOn,h=n.opt.applyBtnClass,u=($("#"+n.opt.modalTrigger),document.getElementById(n.opt.bodyId),function(){p.hide()}),p=$(".wait-ajax.absolute");this.$modalInst=$("#"+r),this.itemsSelected={},this.tagsBoxItems={},this.sublist={},this.$inputFilter=$("#"+n.opt.filterInputId),this.$label=$(document.getElementById(this.opt.labelId)),this.$selectedItemsWrap=l,this.isReceived=!0,$(function(){for($(".topicChecks",a).on("change",function(){$(this).prop("checked")?n._setVisible($(this).val()):n._setUnvisible($(this).val())}),s=0;s2&&d?(n({term:t,form:o},c.opt.autoCompleteUrl,u),d=!1):0!=t.length||d||c.$inputFilter.hasClass("ui-autocomplete-input")&&(c.$inputFilter.placeComplete("destroy"),d=!0),!1}).click(function(){return!1})},_renderSublist:function(e,t,i){var n=this,s=0,a=t+"-sub",c=function(e){if(e.length){for(n.sublist[a]={},s;sT;T++)for(h=y[T],w=0;I>w;w++)h==_[w]&&M(c[w]);for(T=0;x>T;T++)h=y[T],h==S&&M(i);k.querySelectorAll(".final-tire")&&$("."+e+"."+s,k.querySelectorAll(".final-tire")).each(function(){M($("."+r,this)[0])})}else for(T=0;x>T;T++)h=y[T],h==S&&M(S)},M=function(e){var t=e.getAttribute("id");i._destroyTag(t),F()},q=function(e){var s=t.closest(e,n),a=s.querySelector("."+p),r=a.innerHTML,c=e.getAttribute("id"),o={id:c,text:r};i._addTag(c,o),F()},F=function(){c.find("."+u).length&&"~~id~~"!=c.find("."+u)[0].getAttribute(f)?c.addClass("visible"):c.removeClass("visible")},E=function(t){var i=$(t).children("li").children("."+e).find("."+r+":checked");i.each(function(){q(this)})},N=function(){var t=$(k).children("li").children("."+e).find("."+r+":checked");t.each(function(){M(this)})};i.strictMode?this.checked?(w(this),A(this),q(this)):(O(this),A(this),M(this)):this.checked?($(b).find("."+r)[0]&&b&&"~~id~~"!=$(b).find("."+r)[0].value&&A(this),D()?(S(this),w(this),A(m),q(m),N(k),m.getAttribute("id")!=_.getAttribute("id")||_.checked?P()&&(w(_),A(_),q(_)):(w(_),A(_),q(_))):(w(this),A(this),q(this)),b&&x(this)):(B()?(T(this),O(this),A(m),M(m),E(k),_.checked&&(O(_),M(_),E(y))):(O(this),A(this),M(this)),b&&(I(this),A(this))),h()}),$("."+i.opt.deleteTagClass,s).on("click",function(){var e=$(this).attr("data-checkbox-id"),t=$("#"+e);return t.prop("checked",!1),t.trigger("change"),i._refreshLabel(),c.children(".dna-clone").length||c.removeClass("visible"),!1}),$(".del-on-page").on("click",function(){var e=$(this).attr("data-checkbox-id");$("."+i.opt.deleteTagClass+'[data-checkbox-id="'+e+'"]',s).trigger("click")}),$(".clear",s).on("click",function(){return i.resetList(),!1}),$(".q-sel a",s).on("click",function(){var e=$(this),t=e.attr("data-name"),s=e.attr("data-id"),a={name:t,id:s},r=function(e){i._loadParentTree(e,function(){i._checkCheckBox(s)})};return n(a,i.opt.getParentUrl,r),!1}),$("."+l,s).on("click",function(){return i.applyHandler(this),!1}),$("."+i.opt.clearAllButtonClass,s).on("click",function(e){return e.preventDefault(),i.resetList(),!1})})};return l.prototype={_getAjax:function(e,t){var i=this;e||(e=""),$.ajax({type:"GET",url:i.opt.ajaxUrl,data:e,success:function(e){return"function"!=typeof t?(i.rawData=e,e):(i.rawData=e,void t(e))}})},_renderSublist:function(e,t,i){var n=this,s=0,a=t+"-sub",c=function(e){if(e.length){for(n.curDNA[a]={},s;s2&&l?(r.show(),n({term:t,form:c},a.opt.autoCompleteUrl,h),l=!1):0!=t.length||l||a.$inputFilter.hasClass("ui-autocomplete-input")&&(a.$inputFilter.autocomplete("destroy"),l=!0),!1}).click(function(){return!1})},_loadParentTree:function(e,t,i){var n,s,c,o,l=this,d=e,h=$("#id_"+l.opt.prefix+d.id),u=function(e){var n=$("#id_"+l.opt.prefix+d.id),h=0,u=function(e){r.hide(),h++,h==e&&(i||0===i?t(i):t())};r.hide(),n.length&&a(l.curDNA[s+"-sub"])==e&&(c={name:d.name,id:d.id},r.show(),o=$("#id_"+l.opt.prefix+d.id).closest(".level").children(".trigger").attr("data-template-id"),l._renderNested(c,u,o,d.id))},p=function(){r.hide(),i||0===i?t(i):t()};r.show(),d.hasOwnProperty("parent")?h.length?(c={name:d.name,id:d.id},o=h.closest(".level").children(".trigger").attr("data-template-id"),l._renderNested(c,function(){r.hide(),t()},o,d.id)):(n={name:d.parent.name,id:d.parent.id},s=$("#id_"+l.opt.prefix+d.parent.id).closest(".level").children(".trigger").attr("data-template-id"),l._renderSublist(n,s,u)):(n={name:d.name,id:d.id},s=$("#id_"+l.opt.prefix+d.id).closest(".level").children(".trigger").attr("data-template-id"),l._renderSublist(n,s,p))},applyHandler:function(){EXPO.events.feed.modalWindow.close()},_refreshLabel:function(){var e=this.selectedWrap.children().length;this.$label.text(this.$label.attr(e?"data-selected":"data-default"))}},e.init=function(e){$.extend(this.opt,e);var n=this,s=function(){$(n.DOMform).find('input[name="~~name~~"]').remove()};"None"!=this.opt.searchData&&this.opt.searchData&&(this.previousSearch=JSON.parse(this.opt.searchData)),this.DOMform=document.getElementById(this.opt.formId),this.DOMhint=document.getElementById(this.opt.filter.hintId),$(this.DOMform).on("submit",function(){s()}),$.widget("custom.placeComplete",$.ui.autocomplete,{_renderItem:function(e,t){return $("
    • ").append($("").text(t.label)).append(' ('+t.cat+")").appendTo(e)}}),this.DOMapplyButton=document.getElementById(this.opt.applyButtonId),this.filterPane=new i(this.opt.filter),$("#"+this.opt.filter.buttonId).on("click",function(){return t.hasClass(this,n.opt.activeClass)?(t.removeClass(this,n.opt.activeClass),n.filterPane.hide()):(t.addClass(this,n.opt.activeClass),n.filterPane.show()),!1}),$("#"+n.opt.bodyId+" ."+n.opt.modalTriggerClass).on("click",function(e){return e.preventDefault(),n.modalWindow.pullData(this.getAttribute("href")),n.modalWindow.open(),!1}),$("#"+n.opt.applyButtonId).on("click",function(){return $(n.DOMform).submit(),!1}),this.modalWindow=new t.Modal(n.opt.modal),this.placesModal=new l(n.opt.place),this.subjModal=new o(n.opt.subject),$(function(){if(n.previousSearch.inputs.length){$(n.DOMhint).hide();for(var e=0;e2&&d?(n({term:t,form:l},c.opt.autoCompleteUrl,u),d=!1):0!=t.length||d||c.$inputFilter.hasClass("ui-autocomplete-input")&&(c.$inputFilter.placeComplete("destroy"),d=!0),!1}).click(function(){return!1})},_renderSublist:function(e,t,i){var n=this,s=0,a=t+"-sub",c=function(e){if(e.length){for(n.sublist[a]={},s;sT;T++)for(c=y[T],w=0;I>w;w++)c==_[w]&&F(i[w]);for(T=0;x>T;T++)c=y[T],c==S&&F(e);b.querySelectorAll(".final-tire")&&$("."+s+"."+r,b.querySelectorAll(".final-tire")).each(function(){F($("."+d,this)[0])})}else for(T=0;x>T;T++)c=y[T],c==S&&F(S)},F=function(e){var t=e.getAttribute("id");i._destroyTag(t),N()},E=function(e){var n=t.closest(e,a),s=n.querySelector("."+g),r=s.innerHTML,c=e.getAttribute("id"),l={id:c,text:r};i._addTag(c,l),N()},N=function(){c.find("."+f).length&&"~~id~~"!=c.find("."+f)[0].getAttribute(v)?c.addClass("visible"):c.removeClass("visible")},j=function(e){var t=$(e).children("li").children("."+s).find("."+d+":checked");t.each(function(){E(this)})},L=function(){var e=$(C).children("li").children("."+s).find("."+d+":checked");e.each(function(){F(this)})};i.strictMode?this.checked?(D(this),q(this),E(this)):(P(this),q(this),F(this)):this.checked?($(_).find("."+d)[0]&&_&&"~~id~~"!=$(_).find("."+d)[0].value&&q(this),B()?(w(this),D(this),q(k),E(k),L(C),k.getAttribute("id")!=x.getAttribute("id")||x.checked?A()&&(D(x),q(x),E(x)):(D(x),q(x),E(x))):(D(this),q(this),E(this)),_&&S(this)):(M()?(O(this),P(this),q(k),F(k),j(C),x.checked&&(P(x),F(x),j(I))):(P(this),q(this),F(this)),_&&(T(this),q(this))),h()}),$("."+i.opt.deleteTagClass,s).on("click",function(){var e=$(this).attr("data-checkbox-id"),t=$("#"+e);return t.prop("checked",!1),t.trigger("change"),i._refreshLabel(),c.children(".dna-clone").length||c.removeClass("visible"),!1}),$(".del-on-page").on("click",function(){var e=$(this).attr("data-checkbox-id");$("."+i.opt.deleteTagClass+'[data-checkbox-id="'+e+'"]',s).trigger("click")}),$(".clear",s).on("click",function(){return i.resetList(),!1}),$(".q-sel a",s).on("click",function(){var e=$(this),t=e.attr("data-name"),s=e.attr("data-id"),a={name:t,id:s},r=function(e){i._loadParentTree(e,function(){i._checkCheckBox(s)})};return n(a,i.opt.getParentUrl,r),!1}),$("."+o,s).on("click",function(){return i.applyHandler(this),!1}),$("."+i.opt.clearAllButtonClass,s).on("click",function(e){return e.preventDefault(),i.resetList(),!1})})};return o.prototype={_getAjax:function(e,t){var i=this;e||(e=""),$.ajax({type:"GET",url:i.opt.ajaxUrl,data:e,success:function(e){return"function"!=typeof t?(i.rawData=e,e):(i.rawData=e,void t(e))}})},_renderSublist:function(e,t,i){var n=this,s=0,a=t+"-sub",c=function(e){if(e.length){for(n.curDNA[a]={},s;s2&&o?(r.show(),n({term:t,form:c},a.opt.autoCompleteUrl,h),o=!1):0!=t.length||o||a.$inputFilter.hasClass("ui-autocomplete-input")&&(a.$inputFilter.autocomplete("destroy"),o=!0),!1}).click(function(){return!1})},_loadParentTree:function(e,t,i){var n,s,c,l,o=this,d=e,h=$("#id_"+o.opt.prefix+d.id),u=function(e){var n=$("#id_"+o.opt.prefix+d.id),h=0,u=function(e){r.hide(),h++,h==e&&(i||0===i?t(i):t())};r.hide(),n.length&&a(o.curDNA[s+"-sub"])==e&&(c={name:d.name,id:d.id},r.show(),l=$("#id_"+o.opt.prefix+d.id).closest(".level").children(".trigger").attr("data-template-id"),o._renderNested(c,u,l,d.id))},p=function(){r.hide(),i||0===i?t(i):t()};r.show(),d.hasOwnProperty("parent")?h.length?(c={name:d.name,id:d.id},l=h.closest(".level").children(".trigger").attr("data-template-id"),o._renderNested(c,function(){r.hide(),t()},l,d.id)):(n={name:d.parent.name,id:d.parent.id},s=$("#id_"+o.opt.prefix+d.parent.id).closest(".level").children(".trigger").attr("data-template-id"),o._renderSublist(n,s,u)):(n={name:d.name,id:d.id},s=$("#id_"+o.opt.prefix+d.id).closest(".level").children(".trigger").attr("data-template-id"),o._renderSublist(n,s,p))},applyHandler:function(e){EXPO.events.feed.modalWindow.close()},_refreshLabel:function(){var e=this.selectedWrap.children().length;e?this.$label.text(this.$label.attr("data-selected")):this.$label.text(this.$label.attr("data-default"))}},e.init=function(e){$.extend(this.opt,e);var n=this,s=function(){$(n.DOMform).find('input[name="~~name~~"]').remove()};"None"!=this.opt.searchData&&this.opt.searchData&&(this.previousSearch=JSON.parse(this.opt.searchData)),this.DOMform=document.getElementById(this.opt.formId),this.DOMhint=document.getElementById(this.opt.filter.hintId),$(this.DOMform).on("submit",function(){s()}),$.widget("custom.placeComplete",$.ui.autocomplete,{_renderItem:function(e,t){return $("
    • ").append($("").text(t.label)).append(' ('+t.cat+")").appendTo(e)}}),this.DOMapplyButton=document.getElementById(this.opt.applyButtonId),this.filterPane=new i(this.opt.filter),$("#"+this.opt.filter.buttonId).on("click",function(){return t.hasClass(this,n.opt.activeClass)?(t.removeClass(this,n.opt.activeClass),n.filterPane.hide()):(t.addClass(this,n.opt.activeClass),n.filterPane.show()),!1}),$("#"+n.opt.bodyId+" ."+n.opt.modalTriggerClass).on("click",function(e){return e.preventDefault(),n.modalWindow.pullData(this.getAttribute("href")),n.modalWindow.open(),!1}),$("#"+n.opt.applyButtonId).on("click",function(){return $(n.DOMform).submit(),!1}),this.modalWindow=new t.Modal(n.opt.modal),this.placesModal=new o(n.opt.place),this.subjModal=new l(n.opt.subject),$(function(){if(n.previousSearch.inputs.length){$(n.DOMhint).hide();for(var e=0;e'+e+"";this.$annotation.html(s),this.$annotation.find("p:last").append("..."),this.$fullPart.html(a)}}},t.opt={},$(function(){}),t.init=function(t){$.extend(this.opt,t);var i=this;this.articles=[],$("."+i.opt.article.class).each(function(){var t=new n(i.opt.article,this);t.$readMore.on("click",function(){t.showMore()}),i.articles.push(t)})},t}(); \ No newline at end of file +var EXPO=EXPO||{};EXPO.place=EXPO.place||{},EXPO.place.object?console.warn("WARNING: EXPO.place.object is already defined!"):EXPO.place.object=function(){var t={},n=function(t,n){this.$annotation=$("."+t.annotationClass,n),this.$fullPart=$("."+t.fullPartClass,n),this.$readMore=$("."+t.readMoreClass,n),this.cutLength=t.cutLength,this.fullText,this.init()};return n.prototype={init:function(){var t=this;this.$annotation.text().slice(0,t.cutLength);this.fullText=this.$annotation.html().trim(),this._setMoreLess(this.fullText,t.cutLength,10)},showMore:function(){this.$readMore.hide(),this.$annotation.hide(),this.$fullPart.removeClass("hidden")},_cutAnnotation:function(){},_setMoreLess:function(t,n,i){var a=t;if(!(a.length+i'+e+"";this.$annotation.html(s),this.$annotation.find("p:last").append("..."),this.$fullPart.html(a)}}},t.opt={},$(function(){}),t.init=function(t){$.extend(this.opt,t);var i=this;this.articles=[],$("."+i.opt.article["class"]).each(function(){var t=new n(i.opt.article,this);t.$readMore.on("click",function(){t.showMore()}),i.articles.push(t)})},t}(); \ No newline at end of file diff --git a/templates/client/static_client/js_min/_modules/page.profile.min.js b/templates/client/static_client/js_min/_modules/page.profile.min.js index 23fbb9cb..3b0e51cb 100644 --- a/templates/client/static_client/js_min/_modules/page.profile.min.js +++ b/templates/client/static_client/js_min/_modules/page.profile.min.js @@ -1 +1 @@ -var EXPO=EXPO||{};EXPO.profile?console.warn("WARNING: EXPO.profile is already defined!"):EXPO.profile=function(){function t(t){this.opt=t,this.$inst=$("#"+t.id),this.value=this.$inst.text}function e(){}var a={};a.opt={updateFormClass:"update-profile-form"},a.lang={};var s,r=EXPO.common;return t.prototype={refresh:function(t){this.value=t,this.$inst.text(this.value)}},e.prototype={submit:function(t){var e=this;t||(t=""),$.ajax({type:"POST",url:e.ajaxPath,data:t,processData:!1,contentType:!1,success:function(t){e.afterSubmitHandler(t),t.success&&EXPO.profile.rating.refresh(t.rating),$("#wait-ajax").fadeOut()}})},beforeSubmit:function(t,e){var a=this.beforeSubmitHandler,s=t;this.formData="string"!=typeof s?s:JSON.parse('{"'+decodeURI(s).replace(/"/g,'\\"').replace(/&/g,'","').replace(/=/g,'":"')+'"}'),this.formId=e,"function"==typeof a?(this.formData=a(t,e),this.submit(t),$("#wait-ajax").show()):(this.submit(t),$("#wait-ajax").show())},afterSubmit:function(t){var e=this.afterSubmitHandler;if("function"!=typeof e)throw{name:"Error",message:" handler function for processing response after form submit not defined, please define it!"};e(t)},fulfillInputs:function(){var t=this;for(input in t.formData)$("#id_"+input,$("#"+t.formId)).length>0&&$("#id_"+input,$("#"+t.formId)).value(t.formData[input]),$("#static-"+input).length>0&&$("#static-"+input).html()},refreshHTML:function(){var t=$.trim(this.$staticValue.text()).replace(/[^0-9a-zA-Zа-я\s]/g,"").replace(/(\d)\s/,"").replace(/\s+/g,"");(""==$.trim(this.$staticValue.text())||"NoneNone"==t)&&this.$wrapper.length&&this.refrashable?(this.$editable.addClass("hidden"),this.$editable.removeClass(EXPO.profile.opt.formCurrentClass),this.$description.removeClass("hidden")):this.$wrapper.length&&this.refrashable&&(this.$editable.removeClass("hidden"),this.$description.addClass("hidden"))}},e.factory=function(t,a){var s,r=t;if("function"!=typeof e[r])throw{name:"Error",message:r+"doesen't exist"};return"function"!=typeof e[r].prototype.beforeSubmit&&(e[r].prototype=new e),s=new e[r](a)},e.home_form=function(t){this.afterSubmitHandler=function(t){if(t.success){var e=$("#s2id_id_country").find(".select2-chosen").text(),a=$("#s2id_id_city").find(".select2-chosen").text();$("#static-home-country").text(e),$("#static-home-city").text(a),$(".p-editable").removeClass("pe-current"),this.refreshHTML()}},this.ajaxPath=t},e.name_form=function(t){this.afterSubmitHandler=function(t){t.success&&($("#static-name-value").text($("#id_last_name").val()+" "+$("#id_first_name").val()),$(".p-editable").removeClass("pe-current"),this.refreshHTML())},this.ajaxPath=t},e.work_form=function(t){this.afterSubmitHandler=function(t){var e,a=$.trim($("#s2id_id_company").text());t.success&&(e=$("#id_position").val(),""!=a&&"Поиск компании"!=a&&(e+=" "+EXPO.profile.opt.lang.workIn+" "+a),$("#static-work-value").text(e),$(".p-editable").removeClass("pe-current"),this.refreshHTML())},this.ajaxPath=t},e.phone_form=function(t){this.afterSubmitHandler=function(t){t.success&&($("#static-phone-value").text($("#id_phone")[0].value),$(".p-editable").removeClass("pe-current"),this.refreshHTML())},this.ajaxPath=t},e.web_page_form=function(t){this.afterSubmitHandler=function(t){if(t.success){var e=$("#id_web_page").val();$("#static-web-page-value").attr("href",e).text(e),$(".p-editable").removeClass("pe-current"),this.refreshHTML()}},this.ajaxPath=t},e.about_form=function(t){this.afterSubmitHandler=function(t){t.success&&($("#static-about-value").html(r.nl2br($("#id_about").val())),$(".p-editable").removeClass("pe-current"),this.refreshHTML())},this.ajaxPath=t},e.social_form=function(t){var e,a,s,r,i=this;this.afterSubmitHandler=function(t){if(t.success){for(item in i.formData)s=$("#id_"+item),s.parent(".required").removeClass("err"),""!=$.trim(i.formData[item])&&s.length?(e=$("#img-"+item),e.length&&(r=$.trim(s.val()),e.parent("a").length?(e.parent("a").attr("href",r),a=e.attr("src").replace("_hover",""),e.attr("src",a)):(a=e.attr("src").replace("_hover",""),e.attr("src",a),e.wrap('')))):s.length&&(e=$("#img-"+item),e.parent("a").length&&(a=e.attr("src").replace(".png","_hover.png"),e.attr("src",a),e.unwrap()));$(".p-editable").removeClass("pe-current"),this.refreshHTML()}else for(item in t.errors)s=$("#id_"+item),s.parent(".required").addClass("err"),s.blur(function(){s.parent(".required").removeClass("err"),i.$form.submit()})},this.beforeSubmitHandler=function(t,e){var a=$("#"+e).serialize();return JSON.parse('{"'+decodeURI(a).replace(/"/g,'\\"').replace(/&/g,'","').replace(/=/g,'":"')+'"}')},this.refreshHTML=function(){console.log(this);var t=!0;$("input:text",this.$form).each(function(){""==$.trim($(this).val())&&(t=!1)}),t?($(".full-complete",this.$description).removeClass("hidden"),$(".not-complete",this.$description).addClass("hidden")):($(".full-complete",this.$description).addClass("hidden"),$(".not-complete",this.$description).removeClass("hidden"))},this.ajaxPath=t},e.avatar_form=function(t){var e,a=this,s=$("#id_avatar"),r=($("#pic-edit-photo"),$("#pick-block")),i=$("img",r);this.afterSubmitHandler=function(t){t.success&&i.length&&(i.attr("src",t.url),this.refreshHTML())},this.beforeSubmitHandler=function(t){"string"!=typeof t?(a.submit(t),$("#wait-ajax").show()):(e=$("#"+a.formId),e.off("submit"),e.trigger("submit"))},s.on("change",function(){$(this).parents("form").submit()}),this.ajaxPath=t,this.refreshHTML=function(){$.trim(this.$image.attr("src"))==this.noImageSrc?(this.$editable.addClass("hidden"),this.$description.removeClass("hidden")):(this.$editable.removeClass("hidden"),this.$description.addClass("hidden"))}},e.create_company_form=function(t){var e=this,a="pwf-field";this.afterSubmitHandler=function(t){if(t.success)location.reload();else for(var r in t.errors)t.errors.hasOwnProperty(r)&&($('input[name="'+r+'"], select[name="'+r+'"]',e.$form).closest("."+a).addClass("err"),s.hide())},this.ajaxPath=t},a.init=function(a){$.extend(this.lang,a.lang),$.extend(this.opt,a);var r=this,i=function(t){var e=$.masksSort($.masksLoad("/static/client/js/plugins/inputmask/phone-codes.json"),["#"],/[0-9]|#/,"mask"),a={inputmask:{definitions:{"#":{validator:"[0-9]",cardinality:1}},showMaskOnHover:!1,insertMode:!1,autoUnmask:!0},insertMode:!1,match:/[0-9]/,replace:"#",list:e,listKey:"mask",onMaskChange:function(){$(this).attr("placeholder","+_(___)___-__-__")}},s="#"+t;$(s).inputmasks(a)};this.rating=new t(this.opt.rating),this.forms={},$(function(){var t=$("."+r.opt.editableClass),a=$("#"+r.opt.selectBox[0].id),o=$("#"+r.opt.selectBox[2].id),n=$("#id_url");s=$("#wait-ajax").css({"z-index":"8012"}),a.select2({width:"element"}),a.on("change",function(){o.val(0),o.select2("val","")}),$("#"+r.opt.selectBox[1].id).select2({width:"element",placeholder:r.opt.selectBox[1].placeholder,maximumSelectionSize:3}),o.select2({placeholder:r.opt.selectBox[2].placeholder,width:"element",ajax:{url:r.opt.selectBox[2].path,dataType:"json",quietMillis:200,data:function(t,e,a){var a=$("#"+r.opt.selectBox[0].id).val();return{term:t,page:e,country:a}},results:function(t){var e=[];return $.each(t,function(t,a){e.push({id:a.id,text:a.label})}),{results:e}}},initSelection:function(t,e){var a=$(t).val(),s=$(t).attr("data-init-text");e({id:a,text:s})}}),$("#"+r.opt.selectBox[3].id).select2({placeholder:r.opt.selectBox[3].placeholder,width:"200px",minimumInputLength:1,ajax:{url:r.opt.selectBox[3].path,dataType:"json",quietMillis:200,data:function(t,e){return{term:t,page:e}},results:function(t){var e=[];return $.each(t,function(t,a){e.push({id:a.id,text:a.label})}),{results:e}}},initSelection:function(t,e){var a=$(t).val(),s=$(t).attr("data-init-text");e({id:a,text:s})}}),i(r.opt.phoneBox),$("."+r.opt.updateFormClass).each(function(){var a,i=$(this).attr("id"),o=$(this).attr("action"),n=$(this).closest("."+r.opt.formWrapperClass),l=$("."+r.opt.staticValueClass,n),c=$("."+r.opt.descriptionClass,n),f=$("."+r.opt.editableClass,n),u=$("."+r.opt.closeButtonClass,n),h=$("."+r.opt.avatarImageClass,n);r.forms[i]=e.factory(i,o),r.forms[i].refrashable=$("."+r.opt.editButtonClass,n).hasClass("no-refresh")?!1:!0,r.forms[i].$form=$(this),r.forms[i].$wrapper=n,r.forms[i].$staticValue=l,r.forms[i].$description=c,r.forms[i].$editable=f,h.length&&(r.forms[i].$image=h,r.forms[i].noImageSrc=r.opt.noImageSrc),$(this).off("submit"),$(this).on("submit",function(){return s.show(),window.FormData&&"upload"in $.ajaxSettings.xhr()?(a=new FormData(this),r.forms[i].beforeSubmit(a,i)):(a=$(this).serialize(),r.forms[i].beforeSubmit(a,i)),!1}),u.on("click",function(){return f.removeClass(r.opt.formCurrentClass),r.forms[i].refreshHTML(),!1}),$("."+r.opt.avatarButtonClass,n).length?$("."+r.opt.editButtonClass+", ."+r.opt.avatarButtonClass,n).on("click",function(){var t=$("#"+r.opt.avatarInputId);return t.trigger("click"),!1}):$("."+r.opt.editButtonClass+", ."+r.opt.avatarButtonClass,n).on("click",function(){var e=$(this).closest("."+r.opt.formWrapperClass),a=e.find("."+r.opt.updateFormClass).attr("id"),s=e.find("."+r.opt.descriptionClass),o=e.find("."+r.opt.editableClass);return t.each(function(){var t=$(this).closest("."+r.opt.formWrapperClass),e=t.find("."+r.opt.updateFormClass).attr("id"),a=(t.find("."+r.opt.descriptionClass),t.find("."+r.opt.editableClass));$(this).hasClass(r.opt.formCurrentClass)&&(r.forms[e].refrashable?(r.forms[e].refreshHTML(),a.removeClass(EXPO.profile.opt.formCurrentClass)):a.removeClass(r.opt.formCurrentClass))}),r.forms[a].refrashable&&(o.removeClass("hidden"),s.addClass("hidden")),o.addClass(r.opt.formCurrentClass),$(document).on("click.form",function(t){var e=$(t.target);e.parents().filter(".e-form").length<1&&(o.removeClass(r.opt.formCurrentClass),r.forms[i].refreshHTML(),$(document).off("click.form"))}),!1})}),$("#"+r.opt.addCompanyButtonId).on("click",function(t){return t.preventDefault(),$.fancybox.open("#"+r.opt.addCompany.modalId),!1}),n.on("focus",function(){var t=$(this),e=r.opt.companyAddInputMask;return""==$.trim(t.val())&&t.val(e),!1}),n.on("click",function(){if(this.setSelectionRange&&$.trim($(this).val())==r.opt.companyAddInputMask){var t=$(this).val().length;this.setSelectionRange(t,t)}}),n.on("keypress",function(){var t=$(this),e=r.opt.companyAddInputMask;""==$.trim(t.val())&&t.val(e)}),n.on("blur",function(){var t=$(this),e=r.opt.companyAddInputMask;$.trim(t.val())==e&&t.val("")})})},a}(); \ No newline at end of file +var EXPO=EXPO||{};EXPO.profile?console.warn("WARNING: EXPO.profile is already defined!"):EXPO.profile=function(){function t(t){this.opt=t,this.$inst=$("#"+t.id),this.value=this.$inst.text}function e(){}var a={};a.opt={updateFormClass:"update-profile-form"},a.lang={};var s,r=EXPO.common;return t.prototype={refresh:function(t){this.value=t,this.$inst.text(this.value)}},e.prototype={submit:function(t){var e=this;t||(t=""),$.ajax({type:"POST",url:e.ajaxPath,data:t,processData:!1,contentType:!1,success:function(t){e.afterSubmitHandler(t),t.success&&EXPO.profile.rating.refresh(t.rating),$("#wait-ajax").fadeOut()}})},beforeSubmit:function(t,e){var a=this.beforeSubmitHandler,s=t;"string"!=typeof s?this.formData=s:this.formData=JSON.parse('{"'+decodeURI(s).replace(/"/g,'\\"').replace(/&/g,'","').replace(/=/g,'":"')+'"}'),this.formId=e,"function"==typeof a?(this.formData=a(t,e),this.submit(t),$("#wait-ajax").show()):(this.submit(t),$("#wait-ajax").show())},afterSubmit:function(t){var e=this.afterSubmitHandler;if("function"!=typeof e)throw{name:"Error",message:" handler function for processing response after form submit not defined, please define it!"};e(t)},fulfillInputs:function(){var t=this;for(input in t.formData)$("#id_"+input,$("#"+t.formId)).length>0&&$("#id_"+input,$("#"+t.formId)).value(t.formData[input]),$("#static-"+input).length>0&&$("#static-"+input).html()},refreshHTML:function(){var t=$.trim(this.$staticValue.text()).replace(/[^0-9a-zA-Zа-я\s]/g,"").replace(/(\d)\s/,"").replace(/\s+/g,"");(""==$.trim(this.$staticValue.text())||"NoneNone"==t)&&this.$wrapper.length&&this.refrashable?(this.$editable.addClass("hidden"),this.$editable.removeClass(EXPO.profile.opt.formCurrentClass),this.$description.removeClass("hidden")):this.$wrapper.length&&this.refrashable&&(this.$editable.removeClass("hidden"),this.$description.addClass("hidden"))}},e.factory=function(t,a){var s,r=t;if("function"!=typeof e[r])throw{name:"Error",message:r+"doesen't exist"};return"function"!=typeof e[r].prototype.beforeSubmit&&(e[r].prototype=new e),s=new e[r](a)},e.home_form=function(t){this.afterSubmitHandler=function(t){if(t.success){var e=$("#s2id_id_country").find(".select2-chosen").text(),a=$("#s2id_id_city").find(".select2-chosen").text();$("#static-home-country").text(e),$("#static-home-city").text(a),$(".p-editable").removeClass("pe-current"),this.refreshHTML()}},this.ajaxPath=t},e.name_form=function(t){this.afterSubmitHandler=function(t){t.success&&($("#static-name-value").text($("#id_last_name").val()+" "+$("#id_first_name").val()),$(".p-editable").removeClass("pe-current"),this.refreshHTML())},this.ajaxPath=t},e.work_form=function(t){this.afterSubmitHandler=function(t){var e,a=$.trim($("#s2id_id_company").text());t.success&&(e=$("#id_position").val(),""!=a&&"Поиск компании"!=a&&(e+=" "+EXPO.profile.opt.lang.workIn+" "+a),$("#static-work-value").text(e),$(".p-editable").removeClass("pe-current"),this.refreshHTML())},this.ajaxPath=t},e.phone_form=function(t){this.afterSubmitHandler=function(t){t.success&&($("#static-phone-value").text($("#id_phone")[0].value),$(".p-editable").removeClass("pe-current"),this.refreshHTML())},this.ajaxPath=t},e.web_page_form=function(t){this.afterSubmitHandler=function(t){if(t.success){var e=$("#id_web_page").val();$("#static-web-page-value").attr("href",e).text(e),$(".p-editable").removeClass("pe-current"),this.refreshHTML()}},this.ajaxPath=t},e.about_form=function(t){this.afterSubmitHandler=function(t){t.success&&($("#static-about-value").html(r.nl2br($("#id_about").val())),$(".p-editable").removeClass("pe-current"),this.refreshHTML())},this.ajaxPath=t},e.social_form=function(t){var e,a,s,r,i=this;this.afterSubmitHandler=function(t){if(t.success){for(item in i.formData)s=$("#id_"+item),s.parent(".required").removeClass("err"),""!=$.trim(i.formData[item])&&s.length?(e=$("#img-"+item),e.length&&(r=$.trim(s.val()),e.parent("a").length?(e.parent("a").attr("href",r),a=e.attr("src").replace("_hover",""),e.attr("src",a)):(a=e.attr("src").replace("_hover",""),e.attr("src",a),e.wrap('')))):s.length&&(e=$("#img-"+item),e.parent("a").length&&(a=e.attr("src").replace(".png","_hover.png"),e.attr("src",a),e.unwrap()));$(".p-editable").removeClass("pe-current"),this.refreshHTML()}else for(item in t.errors)s=$("#id_"+item),s.parent(".required").addClass("err"),s.blur(function(){s.parent(".required").removeClass("err"),i.$form.submit()})},this.beforeSubmitHandler=function(t,e){var a=$("#"+e).serialize();return JSON.parse('{"'+decodeURI(a).replace(/"/g,'\\"').replace(/&/g,'","').replace(/=/g,'":"')+'"}')},this.refreshHTML=function(){console.log(this);var t=!0;$("input:text",this.$form).each(function(){""==$.trim($(this).val())&&(t=!1)}),t?($(".full-complete",this.$description).removeClass("hidden"),$(".not-complete",this.$description).addClass("hidden")):($(".full-complete",this.$description).addClass("hidden"),$(".not-complete",this.$description).removeClass("hidden"))},this.ajaxPath=t},e.avatar_form=function(t){var e,a=this,s=$("#id_avatar"),r=($("#pic-edit-photo"),$("#pick-block")),i=$("img",r);this.afterSubmitHandler=function(t){t.success&&i.length&&(i.attr("src",t.url),this.refreshHTML())},this.beforeSubmitHandler=function(t){"string"!=typeof t?(a.submit(t),$("#wait-ajax").show()):(e=$("#"+a.formId),e.off("submit"),e.trigger("submit"))},s.on("change",function(){$(this).parents("form").submit()}),this.ajaxPath=t,this.refreshHTML=function(){$.trim(this.$image.attr("src"))==this.noImageSrc?(this.$editable.addClass("hidden"),this.$description.removeClass("hidden")):(this.$editable.removeClass("hidden"),this.$description.addClass("hidden"))}},e.create_company_form=function(t){var e=this,a="pwf-field";this.afterSubmitHandler=function(t){if(t.success)location.reload();else for(var r in t.errors)t.errors.hasOwnProperty(r)&&($('input[name="'+r+'"], select[name="'+r+'"]',e.$form).closest("."+a).addClass("err"),s.hide())},this.ajaxPath=t},a.init=function(a){$.extend(this.lang,a.lang),$.extend(this.opt,a);var r=this,i=function(t){var e=$.masksSort($.masksLoad("/static/client/js/plugins/inputmask/phone-codes.json"),["#"],/[0-9]|#/,"mask"),a={inputmask:{definitions:{"#":{validator:"[0-9]",cardinality:1}},showMaskOnHover:!1,insertMode:!1,autoUnmask:!0},insertMode:!1,match:/[0-9]/,replace:"#",list:e,listKey:"mask",onMaskChange:function(t,e){$(this).attr("placeholder","+_(___)___-__-__")}},s="#"+t;$(s).inputmasks(a)};this.rating=new t(this.opt.rating),this.forms={},$(function(){var t=$("."+r.opt.editableClass),a=$("#"+r.opt.selectBox[0].id),o=$("#"+r.opt.selectBox[2].id),n=$("#id_url");s=$("#wait-ajax").css({"z-index":"8012"}),a.select2({width:"element"}),a.on("change",function(){o.val(0),o.select2("val","")}),$("#"+r.opt.selectBox[1].id).select2({width:"element",placeholder:r.opt.selectBox[1].placeholder,maximumSelectionSize:3}),o.select2({placeholder:r.opt.selectBox[2].placeholder,width:"element",ajax:{url:r.opt.selectBox[2].path,dataType:"json",quietMillis:200,data:function(t,e,a){var a=$("#"+r.opt.selectBox[0].id).val();return{term:t,page:e,country:a}},results:function(t){var e=[];return $.each(t,function(t,a){e.push({id:a.id,text:a.label})}),{results:e}}},initSelection:function(t,e){var a=$(t).val(),s=$(t).attr("data-init-text");e({id:a,text:s})}}),$("#"+r.opt.selectBox[3].id).select2({placeholder:r.opt.selectBox[3].placeholder,width:"200px",minimumInputLength:1,ajax:{url:r.opt.selectBox[3].path,dataType:"json",quietMillis:200,data:function(t,e,a){return{term:t,page:e}},results:function(t){var e=[];return $.each(t,function(t,a){e.push({id:a.id,text:a.label})}),{results:e}}},initSelection:function(t,e){var a=$(t).val(),s=$(t).attr("data-init-text");e({id:a,text:s})}}),i(r.opt.phoneBox),$("."+r.opt.updateFormClass).each(function(){var a,i=$(this).attr("id"),o=$(this).attr("action"),n=$(this).closest("."+r.opt.formWrapperClass),l=$("."+r.opt.staticValueClass,n),c=$("."+r.opt.descriptionClass,n),f=$("."+r.opt.editableClass,n),h=$("."+r.opt.closeButtonClass,n),u=$("."+r.opt.avatarImageClass,n);r.forms[i]=e.factory(i,o),$("."+r.opt.editButtonClass,n).hasClass("no-refresh")?r.forms[i].refrashable=!1:r.forms[i].refrashable=!0,r.forms[i].$form=$(this),r.forms[i].$wrapper=n,r.forms[i].$staticValue=l,r.forms[i].$description=c,r.forms[i].$editable=f,u.length&&(r.forms[i].$image=u,r.forms[i].noImageSrc=r.opt.noImageSrc),$(this).off("submit"),$(this).on("submit",function(){return s.show(),window.FormData&&"upload"in $.ajaxSettings.xhr()?(a=new FormData(this),r.forms[i].beforeSubmit(a,i)):(a=$(this).serialize(),r.forms[i].beforeSubmit(a,i)),!1}),h.on("click",function(){return f.removeClass(r.opt.formCurrentClass),r.forms[i].refreshHTML(),!1}),$("."+r.opt.avatarButtonClass,n).length?$("."+r.opt.editButtonClass+", ."+r.opt.avatarButtonClass,n).on("click",function(){var t=$("#"+r.opt.avatarInputId);return t.trigger("click"),!1}):$("."+r.opt.editButtonClass+", ."+r.opt.avatarButtonClass,n).on("click",function(){var e=$(this).closest("."+r.opt.formWrapperClass),a=e.find("."+r.opt.updateFormClass).attr("id"),s=e.find("."+r.opt.descriptionClass),o=e.find("."+r.opt.editableClass);return t.each(function(){var t=$(this).closest("."+r.opt.formWrapperClass),e=t.find("."+r.opt.updateFormClass).attr("id"),a=(t.find("."+r.opt.descriptionClass),t.find("."+r.opt.editableClass));$(this).hasClass(r.opt.formCurrentClass)&&(r.forms[e].refrashable?(r.forms[e].refreshHTML(),a.removeClass(EXPO.profile.opt.formCurrentClass)):a.removeClass(r.opt.formCurrentClass))}),r.forms[a].refrashable&&(o.removeClass("hidden"),s.addClass("hidden")),o.addClass(r.opt.formCurrentClass),$(document).on("click.form",function(t){var e=$(t.target);e.parents().filter(".e-form").length<1&&(o.removeClass(r.opt.formCurrentClass),r.forms[i].refreshHTML(),$(document).off("click.form"))}),!1})}),$("#"+r.opt.addCompanyButtonId).on("click",function(t){return t.preventDefault(),$.fancybox.open("#"+r.opt.addCompany.modalId),!1}),n.on("focus",function(){var t=$(this),e=r.opt.companyAddInputMask;return""==$.trim(t.val())&&t.val(e),!1}),n.on("click",function(){if(this.setSelectionRange&&$.trim($(this).val())==r.opt.companyAddInputMask){var t=$(this).val().length;this.setSelectionRange(t,t)}}),n.on("keypress",function(){var t=$(this),e=r.opt.companyAddInputMask;""==$.trim(t.val())&&t.val(e)}),n.on("blur",function(){var t=$(this),e=r.opt.companyAddInputMask;$.trim(t.val())==e&&t.val("")})})},a}(); \ No newline at end of file diff --git a/templates/client/static_client/js_min/vendor.min.js b/templates/client/static_client/js_min/vendor.min.js index a75a8844..465a72b6 100644 --- a/templates/client/static_client/js_min/vendor.min.js +++ b/templates/client/static_client/js_min/vendor.min.js @@ -1,7 +1,7 @@ -function mapInit(){var e=document.getElementById("map-canvas"),t=e.getAttribute("data-coords"),i=t.indexOf(","),n=parseFloat(t.substring(0,i)),a=parseFloat(t.substring(i+1,t.length)),o=new google.maps.LatLng(n,a),s={zoom:15,center:o};map=new google.maps.Map(e,s);new google.maps.Marker({position:o,map:map})}function addError(e,t){var i=$("#reg_form "+e),n=$("
      ").attr("class","pwf-msg").append($("
      ").attr("class","msg-error").append(t));i.parent().parent().append(n)}function placeInput(e){$("#id_country").val("159").select2({placeholder:"Ваша страна",width:e}),$("#id_city").select2({placeholder:"Ваш город",width:e,ajax:{url:"/city/get-city/",dataType:"json",quietMillis:200,data:function(e,t,i){var i=$("#id_country").val();return{term:e,page:t,country:i}},results:function(e){var t=[];return $.each(e,function(e,i){t.push({id:i.id,text:i.label})}),{results:t}}},initSelection:function(e,t){var i=$(e).val(),n=$(e).attr("data-init-text");t({id:i,text:n})}})}!function(){for(var e,t=function(){},i=["assert","clear","count","debug","dir","dirxml","error","exception","group","groupCollapsed","groupEnd","info","log","markTimeline","profile","profileEnd","table","time","timeEnd","timeStamp","trace","warn"],n=i.length,a=window.console=window.console||{};n--;)e=i[n],a[e]||(a[e]=t)}(),!function(e){"undefined"==typeof e.fn.each2&&e.extend(e.fn,{each2:function(t){for(var i=e([0]),n=-1,a=this.length;++ni;i+=1)if(s(e,t[i]))return i;return-1}function o(){var t=e(z);t.appendTo("body");var i={width:t.width()-t[0].clientWidth,height:t.height()-t[0].clientHeight};return t.remove(),i}function s(e,i){return e===i?!0:e===t||i===t?!1:null===e||null===i?!1:e.constructor===String?e+""==i+"":i.constructor===String?i+""==e+"":!1}function r(t,i){var n,a,o;if(null===t||t.length<1)return[];for(n=t.split(i),a=0,o=n.length;o>a;a+=1)n[a]=e.trim(n[a]);return n}function l(e){return e.outerWidth(!1)-e.width()}function c(i){var n="keyup-change-value";i.on("keydown",function(){e.data(i,n)===t&&e.data(i,n,i.val())}),i.on("keyup",function(){var a=e.data(i,n);a!==t&&i.val()!==a&&(e.removeData(i,n),i.trigger("keyup-change"))})}function d(i){i.on("mousemove",function(i){var n=H;(n===t||n.x!==i.pageX||n.y!==i.pageY)&&e(i.target).trigger("mousemove-filtered",i)})}function h(e,i,n){n=n||t;var a;return function(){var t=arguments;window.clearTimeout(a),a=window.setTimeout(function(){i.apply(n,t)},e)}}function u(e,t){var i=h(e,function(e){t.trigger("scroll-debounced",e)});t.on("scroll",function(e){a(e.target,t.get())>=0&&i(e)})}function p(e){e[0]!==document.activeElement&&window.setTimeout(function(){var t,i=e[0],n=e.val().length;e.focus();var a=i.offsetWidth>0||i.offsetHeight>0;a&&i===document.activeElement&&(i.setSelectionRange?i.setSelectionRange(n,n):i.createTextRange&&(t=i.createTextRange(),t.collapse(!1),t.select()))},0)}function f(t){t=e(t)[0];var i=0,n=0;if("selectionStart"in t)i=t.selectionStart,n=t.selectionEnd-i;else if("selection"in document){t.focus();var a=document.selection.createRange();n=document.selection.createRange().text.length,a.moveStart("character",-t.value.length),i=a.text.length-n}return{offset:i,length:n}}function g(e){e.preventDefault(),e.stopPropagation()}function m(e){e.preventDefault(),e.stopImmediatePropagation()}function v(t){if(!D){var i=t[0].currentStyle||window.getComputedStyle(t[0],null);D=e(document.createElement("div")).css({position:"absolute",left:"-10000px",top:"-10000px",display:"none",fontSize:i.fontSize,fontFamily:i.fontFamily,fontStyle:i.fontStyle,fontWeight:i.fontWeight,letterSpacing:i.letterSpacing,textTransform:i.textTransform,whiteSpace:"nowrap"}),D.attr("class","select2-sizer"),e("body").append(D)}return D.text(t.val()),D.width()}function w(t,i,n){var a,o,s=[];a=e.trim(t.attr("class")),a&&(a=""+a,e(a.split(/\s+/)).each2(function(){0===this.indexOf("select2-")&&s.push(this)})),a=e.trim(i.attr("class")),a&&(a=""+a,e(a.split(/\s+/)).each2(function(){0!==this.indexOf("select2-")&&(o=n(this),o&&s.push(o))})),t.attr("class",s.join(" "))}function x(e,t,i,a){var o=n(e.toUpperCase()).indexOf(n(t.toUpperCase())),s=t.length;return 0>o?void i.push(a(e)):(i.push(a(e.substring(0,o))),i.push(""),i.push(a(e.substring(o,o+s))),i.push(""),void i.push(a(e.substring(o+s,e.length))))}function b(e){var t={"\\":"\","&":"&","<":"<",">":">",'"':""","'":"'","/":"/"};return String(e).replace(/[&<>"'\/\\]/g,function(e){return t[e]})}function y(i){var n,a=null,o=i.quietMillis||100,s=i.url,r=this;return function(l){window.clearTimeout(n),n=window.setTimeout(function(){var n=i.data,o=s,c=i.transport||e.fn.select2.ajaxDefaults.transport,d={type:i.type||"GET",cache:i.cache||!1,jsonpCallback:i.jsonpCallback||t,dataType:i.dataType||"json"},h=e.extend({},e.fn.select2.ajaxDefaults.params,d);n=n?n.call(r,l.term,l.page,l.context):null,o="function"==typeof o?o.call(r,l.term,l.page,l.context):o,a&&"function"==typeof a.abort&&a.abort(),i.params&&(e.isFunction(i.params)?e.extend(h,i.params.call(r)):e.extend(h,i.params)),e.extend(h,{url:o,dataType:i.dataType,data:n,success:function(e){var t=i.results(e,l.page,l);l.callback(t)},error:function(e,t,i){var n={hasError:!0,jqXHR:e,textStatus:t,errorThrown:i};l.callback(n)}}),a=c.call(r,h)},o)}}function C(t){var i,n,a=t,o=function(e){return""+e.text};e.isArray(a)&&(n=a,a={results:n}),e.isFunction(a)===!1&&(n=a,a=function(){return n});var s=a();return s.text&&(o=s.text,e.isFunction(o)||(i=s.text,o=function(e){return e[i]})),function(t){var i,n=t.term,s={results:[]};return""===n?void t.callback(a()):(i=function(a,s){var r,l;if(a=a[0],a.children){r={};for(l in a)a.hasOwnProperty(l)&&(r[l]=a[l]);r.children=[],e(a.children).each2(function(e,t){i(t,r.children)}),(r.children.length||t.matcher(n,o(r),a))&&s.push(r)}else t.matcher(n,o(a),a)&&s.push(a)},e(a().results).each2(function(e,t){i(t,s.results)}),void t.callback(s))}}function S(i){var n=e.isFunction(i);return function(a){var o=a.term,s={results:[]},r=n?i(a):i;e.isArray(r)&&(e(r).each(function(){var e=this.text!==t,i=e?this.text:this;(""===o||a.matcher(o,i))&&s.results.push(e?this:{id:this,text:this})}),a.callback(s))}}function _(t,i){if(e.isFunction(t))return!0;if(!t)return!1;if("string"==typeof t)return!0;throw new Error(i+" must be a string, function, or falsy value")}function T(t,i){if(e.isFunction(t)){var n=Array.prototype.slice.call(arguments,2);return t.apply(i,n)}return t}function k(t){var i=0;return e.each(t,function(e,t){t.children?i+=k(t.children):i++}),i}function E(e,i,n,a){var o,r,l,c,d,h=e,u=!1;if(!a.createSearchChoice||!a.tokenSeparators||a.tokenSeparators.length<1)return t;for(;;){for(r=-1,l=0,c=a.tokenSeparators.length;c>l&&(d=a.tokenSeparators[l],r=e.indexOf(d),!(r>=0));l++);if(0>r)break;if(o=e.substring(0,r),e=e.substring(r+d.length),o.length>0&&(o=a.createSearchChoice.call(this,o,i),o!==t&&null!==o&&a.id(o)!==t&&null!==a.id(o))){for(u=!1,l=0,c=i.length;c>l;l++)if(s(a.id(o),a.id(i[l]))){u=!0;break}u||n(o)}}return h!==e?e:void 0}function M(){var t=this;e.each(arguments,function(e,i){t[i].remove(),t[i]=null})}function P(t,i){var n=function(){};return n.prototype=new t,n.prototype.constructor=n,n.prototype.parent=t.prototype,n.prototype=e.extend(n.prototype,i),n}if(window.Select2===t){var I,L,O,B,A,D,R,W,H={x:0,y:0},I={TAB:9,ENTER:13,ESC:27,SPACE:32,LEFT:37,UP:38,RIGHT:39,DOWN:40,SHIFT:16,CTRL:17,ALT:18,PAGE_UP:33,PAGE_DOWN:34,HOME:36,END:35,BACKSPACE:8,DELETE:46,isArrow:function(e){switch(e=e.which?e.which:e){case I.LEFT:case I.RIGHT:case I.UP:case I.DOWN:return!0}return!1},isControl:function(e){var t=e.which;switch(t){case I.SHIFT:case I.CTRL:case I.ALT:return!0}return e.metaKey?!0:!1},isFunctionKey:function(e){return e=e.which?e.which:e,e>=112&&123>=e}},z="
      ",F={"Ⓐ":"A","A":"A","À":"A","Á":"A","Â":"A","Ầ":"A","Ấ":"A","Ẫ":"A","Ẩ":"A","Ã":"A","Ā":"A","Ă":"A","Ằ":"A","Ắ":"A","Ẵ":"A","Ẳ":"A","Ȧ":"A","Ǡ":"A","Ä":"A","Ǟ":"A","Ả":"A","Å":"A","Ǻ":"A","Ǎ":"A","Ȁ":"A","Ȃ":"A","Ạ":"A","Ậ":"A","Ặ":"A","Ḁ":"A","Ą":"A","Ⱥ":"A","Ɐ":"A","Ꜳ":"AA","Æ":"AE","Ǽ":"AE","Ǣ":"AE","Ꜵ":"AO","Ꜷ":"AU","Ꜹ":"AV","Ꜻ":"AV","Ꜽ":"AY","Ⓑ":"B","B":"B","Ḃ":"B","Ḅ":"B","Ḇ":"B","Ƀ":"B","Ƃ":"B","Ɓ":"B","Ⓒ":"C","C":"C","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","Ç":"C","Ḉ":"C","Ƈ":"C","Ȼ":"C","Ꜿ":"C","Ⓓ":"D","D":"D","Ḋ":"D","Ď":"D","Ḍ":"D","Ḑ":"D","Ḓ":"D","Ḏ":"D","Đ":"D","Ƌ":"D","Ɗ":"D","Ɖ":"D","Ꝺ":"D","DZ":"DZ","DŽ":"DZ","Dz":"Dz","Dž":"Dz","Ⓔ":"E","E":"E","È":"E","É":"E","Ê":"E","Ề":"E","Ế":"E","Ễ":"E","Ể":"E","Ẽ":"E","Ē":"E","Ḕ":"E","Ḗ":"E","Ĕ":"E","Ė":"E","Ë":"E","Ẻ":"E","Ě":"E","Ȅ":"E","Ȇ":"E","Ẹ":"E","Ệ":"E","Ȩ":"E","Ḝ":"E","Ę":"E","Ḙ":"E","Ḛ":"E","Ɛ":"E","Ǝ":"E","Ⓕ":"F","F":"F","Ḟ":"F","Ƒ":"F","Ꝼ":"F","Ⓖ":"G","G":"G","Ǵ":"G","Ĝ":"G","Ḡ":"G","Ğ":"G","Ġ":"G","Ǧ":"G","Ģ":"G","Ǥ":"G","Ɠ":"G","Ꞡ":"G","Ᵹ":"G","Ꝿ":"G","Ⓗ":"H","H":"H","Ĥ":"H","Ḣ":"H","Ḧ":"H","Ȟ":"H","Ḥ":"H","Ḩ":"H","Ḫ":"H","Ħ":"H","Ⱨ":"H","Ⱶ":"H","Ɥ":"H","Ⓘ":"I","I":"I","Ì":"I","Í":"I","Î":"I","Ĩ":"I","Ī":"I","Ĭ":"I","İ":"I","Ï":"I","Ḯ":"I","Ỉ":"I","Ǐ":"I","Ȉ":"I","Ȋ":"I","Ị":"I","Į":"I","Ḭ":"I","Ɨ":"I","Ⓙ":"J","J":"J","Ĵ":"J","Ɉ":"J","Ⓚ":"K","K":"K","Ḱ":"K","Ǩ":"K","Ḳ":"K","Ķ":"K","Ḵ":"K","Ƙ":"K","Ⱪ":"K","Ꝁ":"K","Ꝃ":"K","Ꝅ":"K","Ꞣ":"K","Ⓛ":"L","L":"L","Ŀ":"L","Ĺ":"L","Ľ":"L","Ḷ":"L","Ḹ":"L","Ļ":"L","Ḽ":"L","Ḻ":"L","Ł":"L","Ƚ":"L","Ɫ":"L","Ⱡ":"L","Ꝉ":"L","Ꝇ":"L","Ꞁ":"L","LJ":"LJ","Lj":"Lj","Ⓜ":"M","M":"M","Ḿ":"M","Ṁ":"M","Ṃ":"M","Ɱ":"M","Ɯ":"M","Ⓝ":"N","N":"N","Ǹ":"N","Ń":"N","Ñ":"N","Ṅ":"N","Ň":"N","Ṇ":"N","Ņ":"N","Ṋ":"N","Ṉ":"N","Ƞ":"N","Ɲ":"N","Ꞑ":"N","Ꞥ":"N","NJ":"NJ","Nj":"Nj","Ⓞ":"O","O":"O","Ò":"O","Ó":"O","Ô":"O","Ồ":"O","Ố":"O","Ỗ":"O","Ổ":"O","Õ":"O","Ṍ":"O","Ȭ":"O","Ṏ":"O","Ō":"O","Ṑ":"O","Ṓ":"O","Ŏ":"O","Ȯ":"O","Ȱ":"O","Ö":"O","Ȫ":"O","Ỏ":"O","Ő":"O","Ǒ":"O","Ȍ":"O","Ȏ":"O","Ơ":"O","Ờ":"O","Ớ":"O","Ỡ":"O","Ở":"O","Ợ":"O","Ọ":"O","Ộ":"O","Ǫ":"O","Ǭ":"O","Ø":"O","Ǿ":"O","Ɔ":"O","Ɵ":"O","Ꝋ":"O","Ꝍ":"O","Ƣ":"OI","Ꝏ":"OO","Ȣ":"OU","Ⓟ":"P","P":"P","Ṕ":"P","Ṗ":"P","Ƥ":"P","Ᵽ":"P","Ꝑ":"P","Ꝓ":"P","Ꝕ":"P","Ⓠ":"Q","Q":"Q","Ꝗ":"Q","Ꝙ":"Q","Ɋ":"Q","Ⓡ":"R","R":"R","Ŕ":"R","Ṙ":"R","Ř":"R","Ȑ":"R","Ȓ":"R","Ṛ":"R","Ṝ":"R","Ŗ":"R","Ṟ":"R","Ɍ":"R","Ɽ":"R","Ꝛ":"R","Ꞧ":"R","Ꞃ":"R","Ⓢ":"S","S":"S","ẞ":"S","Ś":"S","Ṥ":"S","Ŝ":"S","Ṡ":"S","Š":"S","Ṧ":"S","Ṣ":"S","Ṩ":"S","Ș":"S","Ş":"S","Ȿ":"S","Ꞩ":"S","Ꞅ":"S","Ⓣ":"T","T":"T","Ṫ":"T","Ť":"T","Ṭ":"T","Ț":"T","Ţ":"T","Ṱ":"T","Ṯ":"T","Ŧ":"T","Ƭ":"T","Ʈ":"T","Ⱦ":"T","Ꞇ":"T","Ꜩ":"TZ","Ⓤ":"U","U":"U","Ù":"U","Ú":"U","Û":"U","Ũ":"U","Ṹ":"U","Ū":"U","Ṻ":"U","Ŭ":"U","Ü":"U","Ǜ":"U","Ǘ":"U","Ǖ":"U","Ǚ":"U","Ủ":"U","Ů":"U","Ű":"U","Ǔ":"U","Ȕ":"U","Ȗ":"U","Ư":"U","Ừ":"U","Ứ":"U","Ữ":"U","Ử":"U","Ự":"U","Ụ":"U","Ṳ":"U","Ų":"U","Ṷ":"U","Ṵ":"U","Ʉ":"U","Ⓥ":"V","V":"V","Ṽ":"V","Ṿ":"V","Ʋ":"V","Ꝟ":"V","Ʌ":"V","Ꝡ":"VY","Ⓦ":"W","W":"W","Ẁ":"W","Ẃ":"W","Ŵ":"W","Ẇ":"W","Ẅ":"W","Ẉ":"W","Ⱳ":"W","Ⓧ":"X","X":"X","Ẋ":"X","Ẍ":"X","Ⓨ":"Y","Y":"Y","Ỳ":"Y","Ý":"Y","Ŷ":"Y","Ỹ":"Y","Ȳ":"Y","Ẏ":"Y","Ÿ":"Y","Ỷ":"Y","Ỵ":"Y","Ƴ":"Y","Ɏ":"Y","Ỿ":"Y","Ⓩ":"Z","Z":"Z","Ź":"Z","Ẑ":"Z","Ż":"Z","Ž":"Z","Ẓ":"Z","Ẕ":"Z","Ƶ":"Z","Ȥ":"Z","Ɀ":"Z","Ⱬ":"Z","Ꝣ":"Z","ⓐ":"a","a":"a","ẚ":"a","à":"a","á":"a","â":"a","ầ":"a","ấ":"a","ẫ":"a","ẩ":"a","ã":"a","ā":"a","ă":"a","ằ":"a","ắ":"a","ẵ":"a","ẳ":"a","ȧ":"a","ǡ":"a","ä":"a","ǟ":"a","ả":"a","å":"a","ǻ":"a","ǎ":"a","ȁ":"a","ȃ":"a","ạ":"a","ậ":"a","ặ":"a","ḁ":"a","ą":"a","ⱥ":"a","ɐ":"a","ꜳ":"aa","æ":"ae","ǽ":"ae","ǣ":"ae","ꜵ":"ao","ꜷ":"au","ꜹ":"av","ꜻ":"av","ꜽ":"ay","ⓑ":"b","b":"b","ḃ":"b","ḅ":"b","ḇ":"b","ƀ":"b","ƃ":"b","ɓ":"b","ⓒ":"c","c":"c","ć":"c","ĉ":"c","ċ":"c","č":"c","ç":"c","ḉ":"c","ƈ":"c","ȼ":"c","ꜿ":"c","ↄ":"c","ⓓ":"d","d":"d","ḋ":"d","ď":"d","ḍ":"d","ḑ":"d","ḓ":"d","ḏ":"d","đ":"d","ƌ":"d","ɖ":"d","ɗ":"d","ꝺ":"d","dz":"dz","dž":"dz","ⓔ":"e","e":"e","è":"e","é":"e","ê":"e","ề":"e","ế":"e","ễ":"e","ể":"e","ẽ":"e","ē":"e","ḕ":"e","ḗ":"e","ĕ":"e","ė":"e","ë":"e","ẻ":"e","ě":"e","ȅ":"e","ȇ":"e","ẹ":"e","ệ":"e","ȩ":"e","ḝ":"e","ę":"e","ḙ":"e","ḛ":"e","ɇ":"e","ɛ":"e","ǝ":"e","ⓕ":"f","f":"f","ḟ":"f","ƒ":"f","ꝼ":"f","ⓖ":"g","g":"g","ǵ":"g","ĝ":"g","ḡ":"g","ğ":"g","ġ":"g","ǧ":"g","ģ":"g","ǥ":"g","ɠ":"g","ꞡ":"g","ᵹ":"g","ꝿ":"g","ⓗ":"h","h":"h","ĥ":"h","ḣ":"h","ḧ":"h","ȟ":"h","ḥ":"h","ḩ":"h","ḫ":"h","ẖ":"h","ħ":"h","ⱨ":"h","ⱶ":"h","ɥ":"h","ƕ":"hv","ⓘ":"i","i":"i","ì":"i","í":"i","î":"i","ĩ":"i","ī":"i","ĭ":"i","ï":"i","ḯ":"i","ỉ":"i","ǐ":"i","ȉ":"i","ȋ":"i","ị":"i","į":"i","ḭ":"i","ɨ":"i","ı":"i","ⓙ":"j","j":"j","ĵ":"j","ǰ":"j","ɉ":"j","ⓚ":"k","k":"k","ḱ":"k","ǩ":"k","ḳ":"k","ķ":"k","ḵ":"k","ƙ":"k","ⱪ":"k","ꝁ":"k","ꝃ":"k","ꝅ":"k","ꞣ":"k","ⓛ":"l","l":"l","ŀ":"l","ĺ":"l","ľ":"l","ḷ":"l","ḹ":"l","ļ":"l","ḽ":"l","ḻ":"l","ſ":"l","ł":"l","ƚ":"l","ɫ":"l","ⱡ":"l","ꝉ":"l","ꞁ":"l","ꝇ":"l","lj":"lj","ⓜ":"m","m":"m","ḿ":"m","ṁ":"m","ṃ":"m","ɱ":"m","ɯ":"m","ⓝ":"n","n":"n","ǹ":"n","ń":"n","ñ":"n","ṅ":"n","ň":"n","ṇ":"n","ņ":"n","ṋ":"n","ṉ":"n","ƞ":"n","ɲ":"n","ʼn":"n","ꞑ":"n","ꞥ":"n","nj":"nj","ⓞ":"o","o":"o","ò":"o","ó":"o","ô":"o","ồ":"o","ố":"o","ỗ":"o","ổ":"o","õ":"o","ṍ":"o","ȭ":"o","ṏ":"o","ō":"o","ṑ":"o","ṓ":"o","ŏ":"o","ȯ":"o","ȱ":"o","ö":"o","ȫ":"o","ỏ":"o","ő":"o","ǒ":"o","ȍ":"o","ȏ":"o","ơ":"o","ờ":"o","ớ":"o","ỡ":"o","ở":"o","ợ":"o","ọ":"o","ộ":"o","ǫ":"o","ǭ":"o","ø":"o","ǿ":"o","ɔ":"o","ꝋ":"o","ꝍ":"o","ɵ":"o","ƣ":"oi","ȣ":"ou","ꝏ":"oo","ⓟ":"p","p":"p","ṕ":"p","ṗ":"p","ƥ":"p","ᵽ":"p","ꝑ":"p","ꝓ":"p","ꝕ":"p","ⓠ":"q","q":"q","ɋ":"q","ꝗ":"q","ꝙ":"q","ⓡ":"r","r":"r","ŕ":"r","ṙ":"r","ř":"r","ȑ":"r","ȓ":"r","ṛ":"r","ṝ":"r","ŗ":"r","ṟ":"r","ɍ":"r","ɽ":"r","ꝛ":"r","ꞧ":"r","ꞃ":"r","ⓢ":"s","s":"s","ß":"s","ś":"s","ṥ":"s","ŝ":"s","ṡ":"s","š":"s","ṧ":"s","ṣ":"s","ṩ":"s","ș":"s","ş":"s","ȿ":"s","ꞩ":"s","ꞅ":"s","ẛ":"s","ⓣ":"t","t":"t","ṫ":"t","ẗ":"t","ť":"t","ṭ":"t","ț":"t","ţ":"t","ṱ":"t","ṯ":"t","ŧ":"t","ƭ":"t","ʈ":"t","ⱦ":"t","ꞇ":"t","ꜩ":"tz","ⓤ":"u","u":"u","ù":"u","ú":"u","û":"u","ũ":"u","ṹ":"u","ū":"u","ṻ":"u","ŭ":"u","ü":"u","ǜ":"u","ǘ":"u","ǖ":"u","ǚ":"u","ủ":"u","ů":"u","ű":"u","ǔ":"u","ȕ":"u","ȗ":"u","ư":"u","ừ":"u","ứ":"u","ữ":"u","ử":"u","ự":"u","ụ":"u","ṳ":"u","ų":"u","ṷ":"u","ṵ":"u","ʉ":"u","ⓥ":"v","v":"v","ṽ":"v","ṿ":"v","ʋ":"v","ꝟ":"v","ʌ":"v","ꝡ":"vy","ⓦ":"w","w":"w","ẁ":"w","ẃ":"w","ŵ":"w","ẇ":"w","ẅ":"w","ẘ":"w","ẉ":"w","ⱳ":"w","ⓧ":"x","x":"x","ẋ":"x","ẍ":"x","ⓨ":"y","y":"y","ỳ":"y","ý":"y","ŷ":"y","ỹ":"y","ȳ":"y","ẏ":"y","ÿ":"y","ỷ":"y","ẙ":"y","ỵ":"y","ƴ":"y","ɏ":"y","ỿ":"y","ⓩ":"z","z":"z","ź":"z","ẑ":"z","ż":"z","ž":"z","ẓ":"z","ẕ":"z","ƶ":"z","ȥ":"z","ɀ":"z","ⱬ":"z","ꝣ":"z","Ά":"Α","Έ":"Ε","Ή":"Η","Ί":"Ι","Ϊ":"Ι","Ό":"Ο","Ύ":"Υ","Ϋ":"Υ","Ώ":"Ω","ά":"α","έ":"ε","ή":"η","ί":"ι","ϊ":"ι","ΐ":"ι","ό":"ο","ύ":"υ","ϋ":"υ","ΰ":"υ","ω":"ω","ς":"σ"};R=e(document),A=function(){var e=1;return function(){return e++}}(),L=P(Object,{bind:function(e){var t=this;return function(){e.apply(t,arguments)}},init:function(i){var n,a,s=".select2-results";this.opts=i=this.prepareOpts(i),this.id=i.id,i.element.data("select2")!==t&&null!==i.element.data("select2")&&i.element.data("select2").destroy(),this.container=this.createContainer(),this.liveRegion=e("",{role:"status","aria-live":"polite"}).addClass("select2-hidden-accessible").appendTo(document.body),this.containerId="s2id_"+(i.element.attr("id")||"autogen"+A()),this.containerEventName=this.containerId.replace(/([.])/g,"_").replace(/([;&,\-\.\+\*\~':"\!\^#$%@\[\]\(\)=>\|])/g,"\\$1"),this.container.attr("id",this.containerId),this.container.attr("title",i.element.attr("title")),this.body=e("body"),w(this.container,this.opts.element,this.opts.adaptContainerCssClass),this.container.attr("style",i.element.attr("style")),this.container.css(T(i.containerCss,this.opts.element)),this.container.addClass(T(i.containerCssClass,this.opts.element)),this.elementTabIndex=this.opts.element.attr("tabindex"),this.opts.element.data("select2",this).attr("tabindex","-1").before(this.container).on("click.select2",g),this.container.data("select2",this),this.dropdown=this.container.find(".select2-drop"),w(this.dropdown,this.opts.element,this.opts.adaptDropdownCssClass),this.dropdown.addClass(T(i.dropdownCssClass,this.opts.element)),this.dropdown.data("select2",this),this.dropdown.on("click",g),this.results=n=this.container.find(s),this.search=a=this.container.find("input.select2-input"),this.queryCount=0,this.resultsPage=0,this.context=null,this.initContainer(),this.container.on("click",g),d(this.results),this.dropdown.on("mousemove-filtered",s,this.bind(this.highlightUnderEvent)),this.dropdown.on("touchstart touchmove touchend",s,this.bind(function(e){this._touchEvent=!0,this.highlightUnderEvent(e)})),this.dropdown.on("touchmove",s,this.bind(this.touchMoved)),this.dropdown.on("touchstart touchend",s,this.bind(this.clearTouchMoved)),this.dropdown.on("click",this.bind(function(){this._touchEvent&&(this._touchEvent=!1,this.selectHighlighted())})),u(80,this.results),this.dropdown.on("scroll-debounced",s,this.bind(this.loadMoreIfNeeded)),e(this.container).on("change",".select2-input",function(e){e.stopPropagation()}),e(this.dropdown).on("change",".select2-input",function(e){e.stopPropagation()}),e.fn.mousewheel&&n.mousewheel(function(e,t,i,a){var o=n.scrollTop();a>0&&0>=o-a?(n.scrollTop(0),g(e)):0>a&&n.get(0).scrollHeight-n.scrollTop()+a<=n.height()&&(n.scrollTop(n.get(0).scrollHeight-n.height()),g(e))}),c(a),a.on("keyup-change input paste",this.bind(this.updateResults)),a.on("focus",function(){a.addClass("select2-focused")}),a.on("blur",function(){a.removeClass("select2-focused")}),this.dropdown.on("mouseup",s,this.bind(function(t){e(t.target).closest(".select2-result-selectable").length>0&&(this.highlightUnderEvent(t),this.selectHighlighted(t))})),this.dropdown.on("click mouseup mousedown touchstart touchend focusin",function(e){e.stopPropagation()}),this.nextSearchTerm=t,e.isFunction(this.opts.initSelection)&&(this.initSelection(),this.monitorSource()),null!==i.maximumInputLength&&this.search.attr("maxlength",i.maximumInputLength);var r=i.element.prop("disabled");r===t&&(r=!1),this.enable(!r);var l=i.element.prop("readonly");l===t&&(l=!1),this.readonly(l),W=W||o(),this.autofocus=i.element.prop("autofocus"),i.element.prop("autofocus",!1),this.autofocus&&this.focus(),this.search.attr("placeholder",i.searchInputPlaceholder)},destroy:function(){var e=this.opts.element,i=e.data("select2"),n=this;this.close(),e.length&&e[0].detachEvent&&e.each(function(){this.detachEvent("onpropertychange",n._sync)}),this.propertyObserver&&(this.propertyObserver.disconnect(),this.propertyObserver=null),this._sync=null,i!==t&&(i.container.remove(),i.liveRegion.remove(),i.dropdown.remove(),e.removeClass("select2-offscreen").removeData("select2").off(".select2").prop("autofocus",this.autofocus||!1),this.elementTabIndex?e.attr({tabindex:this.elementTabIndex}):e.removeAttr("tabindex"),e.show()),M.call(this,"container","liveRegion","dropdown","results","search")},optionToData:function(e){return e.is("option")?{id:e.prop("value"),text:e.text(),element:e.get(),css:e.attr("class"),disabled:e.prop("disabled"),locked:s(e.attr("locked"),"locked")||s(e.data("locked"),!0)}:e.is("optgroup")?{text:e.attr("label"),children:[],element:e.get(),css:e.attr("class")}:void 0},prepareOpts:function(i){var n,a,o,l,c=this;if(n=i.element,"select"===n.get(0).tagName.toLowerCase()&&(this.select=a=i.element),a&&e.each(["id","multiple","ajax","query","createSearchChoice","initSelection","data","tags"],function(){if(this in i)throw new Error("Option '"+this+"' is not allowed for Select2 when attached to a ","
      "," ","
        ","
      ","
      "].join(""));return t},enableInterface:function(){this.parent.enableInterface.apply(this,arguments)&&this.focusser.prop("disabled",!this.isInterfaceEnabled())},opening:function(){var i,n,a;this.opts.minimumResultsForSearch>=0&&this.showSearch(!0),this.parent.opening.apply(this,arguments),this.showSearchInput!==!1&&this.search.val(this.focusser.val()),this.opts.shouldFocusInput(this)&&(this.search.focus(),i=this.search.get(0),i.createTextRange?(n=i.createTextRange(),n.collapse(!1),n.select()):i.setSelectionRange&&(a=this.search.val().length,i.setSelectionRange(a,a))),""===this.search.val()&&this.nextSearchTerm!=t&&(this.search.val(this.nextSearchTerm),this.search.select()),this.focusser.prop("disabled",!0).val(""),this.updateResults(!0),this.opts.element.trigger(e.Event("select2-open"))},close:function(){this.opened()&&(this.parent.close.apply(this,arguments),this.focusser.prop("disabled",!1),this.opts.shouldFocusInput(this)&&this.focusser.focus())},focus:function(){this.opened()?this.close():(this.focusser.prop("disabled",!1),this.opts.shouldFocusInput(this)&&this.focusser.focus())},isFocused:function(){return this.container.hasClass("select2-container-active")},cancel:function(){this.parent.cancel.apply(this,arguments),this.focusser.prop("disabled",!1),this.opts.shouldFocusInput(this)&&this.focusser.focus()},destroy:function(){e("label[for='"+this.focusser.attr("id")+"']").attr("for",this.opts.element.attr("id")),this.parent.destroy.apply(this,arguments),M.call(this,"selection","focusser")},initContainer:function(){var t,n,a=this.container,o=this.dropdown,s=A();this.showSearch(this.opts.minimumResultsForSearch<0?!1:!0),this.selection=t=a.find(".select2-choice"),this.focusser=a.find(".select2-focusser"),t.find(".select2-chosen").attr("id","select2-chosen-"+s),this.focusser.attr("aria-labelledby","select2-chosen-"+s),this.results.attr("id","select2-results-"+s),this.search.attr("aria-owns","select2-results-"+s),this.focusser.attr("id","s2id_autogen"+s),n=e("label[for='"+this.opts.element.attr("id")+"']"),this.focusser.prev().text(n.text()).attr("for",this.focusser.attr("id"));var r=this.opts.element.attr("title");this.opts.element.attr("title",r||n.text()),this.focusser.attr("tabindex",this.elementTabIndex),this.search.attr("id",this.focusser.attr("id")+"_search"),this.search.prev().text(e("label[for='"+this.focusser.attr("id")+"']").text()).attr("for",this.search.attr("id")),this.search.on("keydown",this.bind(function(e){if(this.isInterfaceEnabled()&&229!=e.keyCode){if(e.which===I.PAGE_UP||e.which===I.PAGE_DOWN)return void g(e);switch(e.which){case I.UP:case I.DOWN:return this.moveHighlight(e.which===I.UP?-1:1),void g(e);case I.ENTER:return this.selectHighlighted(),void g(e);case I.TAB:return void this.selectHighlighted({noFocus:!0});case I.ESC:return this.cancel(e),void g(e)}}})),this.search.on("blur",this.bind(function(){document.activeElement===this.body.get(0)&&window.setTimeout(this.bind(function(){this.opened()&&this.search.focus()}),0)})),this.focusser.on("keydown",this.bind(function(e){if(this.isInterfaceEnabled()&&e.which!==I.TAB&&!I.isControl(e)&&!I.isFunctionKey(e)&&e.which!==I.ESC){if(this.opts.openOnEnter===!1&&e.which===I.ENTER)return void g(e);if(e.which==I.DOWN||e.which==I.UP||e.which==I.ENTER&&this.opts.openOnEnter){if(e.altKey||e.ctrlKey||e.shiftKey||e.metaKey)return;return this.open(),void g(e)}return e.which==I.DELETE||e.which==I.BACKSPACE?(this.opts.allowClear&&this.clear(),void g(e)):void 0}})),c(this.focusser),this.focusser.on("keyup-change input",this.bind(function(e){if(this.opts.minimumResultsForSearch>=0){if(e.stopPropagation(),this.opened())return;this.open()}})),t.on("mousedown touchstart","abbr",this.bind(function(e){this.isInterfaceEnabled()&&(this.clear(),m(e),this.close(),this.selection.focus())})),t.on("mousedown touchstart",this.bind(function(n){i(t),this.container.hasClass("select2-container-active")||this.opts.element.trigger(e.Event("select2-focus")),this.opened()?this.close():this.isInterfaceEnabled()&&this.open(),g(n)})),o.on("mousedown touchstart",this.bind(function(){this.opts.shouldFocusInput(this)&&this.search.focus()})),t.on("focus",this.bind(function(e){g(e)})),this.focusser.on("focus",this.bind(function(){this.container.hasClass("select2-container-active")||this.opts.element.trigger(e.Event("select2-focus")),this.container.addClass("select2-container-active")})).on("blur",this.bind(function(){this.opened()||(this.container.removeClass("select2-container-active"),this.opts.element.trigger(e.Event("select2-blur")))})),this.search.on("focus",this.bind(function(){this.container.hasClass("select2-container-active")||this.opts.element.trigger(e.Event("select2-focus")),this.container.addClass("select2-container-active")})),this.initContainerWidth(),this.opts.element.addClass("select2-offscreen"),this.setPlaceholder()},clear:function(t){var i=this.selection.data("select2-data");if(i){var n=e.Event("select2-clearing");if(this.opts.element.trigger(n),n.isDefaultPrevented())return;var a=this.getPlaceholderOption();this.opts.element.val(a?a.val():""),this.selection.find(".select2-chosen").empty(),this.selection.removeData("select2-data"),this.setPlaceholder(),t!==!1&&(this.opts.element.trigger({type:"select2-removed",val:this.id(i),choice:i}),this.triggerChange({removed:i}))}},initSelection:function(){if(this.isPlaceholderOptionSelected())this.updateSelection(null),this.close(),this.setPlaceholder();else{var e=this;this.opts.initSelection.call(null,this.opts.element,function(i){i!==t&&null!==i&&(e.updateSelection(i),e.close(),e.setPlaceholder(),e.nextSearchTerm=e.opts.nextSearchTerm(i,e.search.val()))})}},isPlaceholderOptionSelected:function(){var e;return this.getPlaceholder()===t?!1:(e=this.getPlaceholderOption())!==t&&e.prop("selected")||""===this.opts.element.val()||this.opts.element.val()===t||null===this.opts.element.val()},prepareOpts:function(){var t=this.parent.prepareOpts.apply(this,arguments),i=this;return"select"===t.element.get(0).tagName.toLowerCase()?t.initSelection=function(e,t){var n=e.find("option").filter(function(){return this.selected&&!this.disabled});t(i.optionToData(n))}:"data"in t&&(t.initSelection=t.initSelection||function(i,n){var a=i.val(),o=null;t.query({matcher:function(e,i,n){var r=s(a,t.id(n));return r&&(o=n),r},callback:e.isFunction(n)?function(){n(o)}:e.noop})}),t},getPlaceholder:function(){return this.select&&this.getPlaceholderOption()===t?t:this.parent.getPlaceholder.apply(this,arguments)},setPlaceholder:function(){var e=this.getPlaceholder();if(this.isPlaceholderOptionSelected()&&e!==t){if(this.select&&this.getPlaceholderOption()===t)return;this.selection.find(".select2-chosen").html(this.opts.escapeMarkup(e)),this.selection.addClass("select2-default"),this.container.removeClass("select2-allowclear")}},postprocessResults:function(e,t,i){var n=0,a=this;if(this.findHighlightableChoices().each2(function(e,t){return s(a.id(t.data("select2-data")),a.opts.element.val())?(n=e,!1):void 0}),i!==!1&&this.highlight(t===!0&&n>=0?n:0),t===!0){var o=this.opts.minimumResultsForSearch;o>=0&&this.showSearch(k(e.results)>=o)}},showSearch:function(t){this.showSearchInput!==t&&(this.showSearchInput=t,this.dropdown.find(".select2-search").toggleClass("select2-search-hidden",!t),this.dropdown.find(".select2-search").toggleClass("select2-offscreen",!t),e(this.dropdown,this.container).toggleClass("select2-with-searchbox",t))},onSelect:function(e,t){if(this.triggerSelect(e)){var i=this.opts.element.val(),n=this.data();this.opts.element.val(this.id(e)),this.updateSelection(e),this.opts.element.trigger({type:"select2-selected",val:this.id(e),choice:e}),this.nextSearchTerm=this.opts.nextSearchTerm(e,this.search.val()),this.close(),t&&t.noFocus||!this.opts.shouldFocusInput(this)||this.focusser.focus(),s(i,this.id(e))||this.triggerChange({added:e,removed:n})}},updateSelection:function(e){var i,n,a=this.selection.find(".select2-chosen");this.selection.data("select2-data",e),a.empty(),null!==e&&(i=this.opts.formatSelection(e,a,this.opts.escapeMarkup)),i!==t&&a.append(i),n=this.opts.formatSelectionCssClass(e,a),n!==t&&a.addClass(n),this.selection.removeClass("select2-default"),this.opts.allowClear&&this.getPlaceholder()!==t&&this.container.addClass("select2-allowclear")},val:function(){var e,i=!1,n=null,a=this,o=this.data();if(0===arguments.length)return this.opts.element.val();if(e=arguments[0],arguments.length>1&&(i=arguments[1]),this.select)this.select.val(e).find("option").filter(function(){return this.selected}).each2(function(e,t){return n=a.optionToData(t),!1}),this.updateSelection(n),this.setPlaceholder(),i&&this.triggerChange({added:n,removed:o});else{if(!e&&0!==e)return void this.clear(i);if(this.opts.initSelection===t)throw new Error("cannot call val() if initSelection() is not defined");this.opts.element.val(e),this.opts.initSelection(this.opts.element,function(e){a.opts.element.val(e?a.id(e):""),a.updateSelection(e),a.setPlaceholder(),i&&a.triggerChange({added:e,removed:o})})}},clearSearch:function(){this.search.val(""),this.focusser.val("")},data:function(e){var i,n=!1;return 0===arguments.length?(i=this.selection.data("select2-data"),i==t&&(i=null),i):(arguments.length>1&&(n=arguments[1]),void(e?(i=this.data(),this.opts.element.val(e?this.id(e):""),this.updateSelection(e),n&&this.triggerChange({added:e,removed:i})):this.clear(n)))}}),B=P(L,{createContainer:function(){var t=e(document.createElement("div")).attr({"class":"select2-container select2-container-multi"}).html(["
        ","
      • "," "," ","
      • ","
      ","
      ","
        ","
      ","
      "].join(""));return t},prepareOpts:function(){var t=this.parent.prepareOpts.apply(this,arguments),i=this;return"select"===t.element.get(0).tagName.toLowerCase()?t.initSelection=function(e,t){var n=[];e.find("option").filter(function(){return this.selected&&!this.disabled}).each2(function(e,t){n.push(i.optionToData(t))}),t(n)}:"data"in t&&(t.initSelection=t.initSelection||function(i,n){var a=r(i.val(),t.separator),o=[];t.query({matcher:function(i,n,r){var l=e.grep(a,function(e){return s(e,t.id(r))}).length;return l&&o.push(r),l},callback:e.isFunction(n)?function(){for(var e=[],i=0;i0||(this.selectChoice(null),this.clearPlaceholder(),this.container.hasClass("select2-container-active")||this.opts.element.trigger(e.Event("select2-focus")),this.open(),this.focusSearch(),t.preventDefault()))})),this.container.on("focus",i,this.bind(function(){this.isInterfaceEnabled()&&(this.container.hasClass("select2-container-active")||this.opts.element.trigger(e.Event("select2-focus")),this.container.addClass("select2-container-active"),this.dropdown.addClass("select2-drop-active"),this.clearPlaceholder())})),this.initContainerWidth(),this.opts.element.addClass("select2-offscreen"),this.clearSearch()},enableInterface:function(){this.parent.enableInterface.apply(this,arguments)&&this.search.prop("disabled",!this.isInterfaceEnabled())},initSelection:function(){if(""===this.opts.element.val()&&""===this.opts.element.text()&&(this.updateSelection([]),this.close(),this.clearSearch()),this.select||""!==this.opts.element.val()){var e=this;this.opts.initSelection.call(null,this.opts.element,function(i){i!==t&&null!==i&&(e.updateSelection(i),e.close(),e.clearSearch())})}},clearSearch:function(){var e=this.getPlaceholder(),i=this.getMaxSearchWidth();e!==t&&0===this.getVal().length&&this.search.hasClass("select2-focused")===!1?(this.search.val(e).addClass("select2-default"),this.search.width(i>0?i:this.container.css("width"))):this.search.val("").width(10)},clearPlaceholder:function(){this.search.hasClass("select2-default")&&this.search.val("").removeClass("select2-default")},opening:function(){this.clearPlaceholder(),this.resizeSearch(),this.parent.opening.apply(this,arguments),this.focusSearch(),""===this.search.val()&&this.nextSearchTerm!=t&&(this.search.val(this.nextSearchTerm),this.search.select()),this.updateResults(!0),this.opts.shouldFocusInput(this)&&this.search.focus(),this.opts.element.trigger(e.Event("select2-open"))},close:function(){this.opened()&&this.parent.close.apply(this,arguments)},focus:function(){this.close(),this.search.focus()},isFocused:function(){return this.search.hasClass("select2-focused")},updateSelection:function(t){var i=[],n=[],o=this;e(t).each(function(){a(o.id(this),i)<0&&(i.push(o.id(this)),n.push(this))}),t=n,this.selection.find(".select2-search-choice").remove(),e(t).each(function(){o.addSelectedChoice(this)}),o.postprocessResults()},tokenize:function(){var e=this.search.val();e=this.opts.tokenizer.call(this,e,this.data(),this.bind(this.onSelect),this.opts),null!=e&&e!=t&&(this.search.val(e),e.length>0&&this.open())},onSelect:function(e,i){this.triggerSelect(e)&&""!==e.text&&(this.addSelectedChoice(e),this.opts.element.trigger({type:"selected",val:this.id(e),choice:e}),this.nextSearchTerm=this.opts.nextSearchTerm(e,this.search.val()),this.clearSearch(),this.updateResults(),(this.select||!this.opts.closeOnSelect)&&this.postprocessResults(e,!1,this.opts.closeOnSelect===!0),this.opts.closeOnSelect?(this.close(),this.search.width(10)):this.countSelectableResults()>0?(this.search.width(10),this.resizeSearch(),this.getMaximumSelectionSize()>0&&this.val().length>=this.getMaximumSelectionSize()?this.updateResults(!0):this.nextSearchTerm!=t&&(this.search.val(this.nextSearchTerm),this.updateResults(),this.search.select()),this.positionDropdown()):(this.close(),this.search.width(10)),this.triggerChange({added:e}),i&&i.noFocus||this.focusSearch())},cancel:function(){this.close(),this.focusSearch()},addSelectedChoice:function(i){var n,a,o=!i.locked,s=e("
    • "),r=e("
    • "),l=o?s:r,c=this.id(i),d=this.getVal();n=this.opts.formatSelection(i,l.find("div"),this.opts.escapeMarkup),n!=t&&l.find("div").replaceWith("
      "+n+"
      "),a=this.opts.formatSelectionCssClass(i,l.find("div")),a!=t&&l.addClass(a),o&&l.find(".select2-search-choice-close").on("mousedown",g).on("click dblclick",this.bind(function(t){this.isInterfaceEnabled()&&(this.unselect(e(t.target)),this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus"),g(t),this.close(),this.focusSearch())})).on("focus",this.bind(function(){this.isInterfaceEnabled()&&(this.container.addClass("select2-container-active"),this.dropdown.addClass("select2-drop-active"))})),l.data("select2-data",i),l.insertBefore(this.searchContainer),d.push(c),this.setVal(d)},unselect:function(t){var i,n,o=this.getVal();if(t=t.closest(".select2-search-choice"),0===t.length)throw"Invalid argument: "+t+". Must be .select2-search-choice";if(i=t.data("select2-data")){var s=e.Event("select2-removing");if(s.val=this.id(i),s.choice=i,this.opts.element.trigger(s),s.isDefaultPrevented())return!1;for(;(n=a(this.id(i),o))>=0;)o.splice(n,1),this.setVal(o),this.select&&this.postprocessResults();return t.remove(),this.opts.element.trigger({type:"select2-removed",val:this.id(i),choice:i}),this.triggerChange({removed:i}),!0}},postprocessResults:function(e,t,i){var n=this.getVal(),o=this.results.find(".select2-result"),s=this.results.find(".select2-result-with-children"),r=this;o.each2(function(e,t){var i=r.id(t.data("select2-data"));a(i,n)>=0&&(t.addClass("select2-selected"),t.find(".select2-result-selectable").addClass("select2-selected"))}),s.each2(function(e,t){t.is(".select2-result-selectable")||0!==t.find(".select2-result-selectable:not(.select2-selected)").length||t.addClass("select2-selected")}),-1==this.highlight()&&i!==!1&&r.highlight(0),!this.opts.createSearchChoice&&!o.filter(".select2-result:not(.select2-selected)").length>0&&(!e||e&&!e.more&&0===this.results.find(".select2-no-results").length)&&_(r.opts.formatNoMatches,"formatNoMatches")&&this.results.append("
    • "+T(r.opts.formatNoMatches,r.opts.element,r.search.val())+"
    • ")},getMaxSearchWidth:function(){return this.selection.width()-l(this.search)},resizeSearch:function(){var e,t,i,n,a,o=l(this.search);e=v(this.search)+10,t=this.search.offset().left,i=this.selection.width(),n=this.selection.offset().left,a=i-(t-n)-o,e>a&&(a=i-o),40>a&&(a=i-o),0>=a&&(a=e),this.search.width(Math.floor(a))},getVal:function(){var e;return this.select?(e=this.select.val(),null===e?[]:e):(e=this.opts.element.val(),r(e,this.opts.separator))},setVal:function(t){var i;this.select?this.select.val(t):(i=[],e(t).each(function(){a(this,i)<0&&i.push(this)}),this.opts.element.val(0===i.length?"":i.join(this.opts.separator)))},buildChangeDetails:function(e,t){for(var t=t.slice(0),e=e.slice(0),i=0;i0&&i--,e.splice(n,1),n--);return{added:t,removed:e}},val:function(i,n){var a,o=this;if(0===arguments.length)return this.getVal();if(a=this.data(),a.length||(a=[]),!i&&0!==i)return this.opts.element.val(""),this.updateSelection([]),this.clearSearch(),void(n&&this.triggerChange({added:this.data(),removed:a}));if(this.setVal(i),this.select)this.opts.initSelection(this.select,this.bind(this.updateSelection)),n&&this.triggerChange(this.buildChangeDetails(a,this.data()));else{if(this.opts.initSelection===t)throw new Error("val() cannot be called if initSelection() is not defined");this.opts.initSelection(this.opts.element,function(t){var i=e.map(t,o.id);o.setVal(i),o.updateSelection(t),o.clearSearch(),n&&o.triggerChange(o.buildChangeDetails(a,o.data()))})}this.clearSearch()},onSortStart:function(){if(this.select)throw new Error("Sorting of elements is not supported when attached to instead.");this.search.width(0),this.searchContainer.hide()},onSortEnd:function(){var t=[],i=this;this.searchContainer.show(),this.searchContainer.appendTo(this.searchContainer.parent()),this.resizeSearch(),this.selection.find(".select2-search-choice").each(function(){t.push(i.opts.id(e(this).data("select2-data")))}),this.setVal(t),this.triggerChange()},data:function(t,i){var n,a,o=this;return 0===arguments.length?this.selection.children(".select2-search-choice").map(function(){return e(this).data("select2-data")}).get():(a=this.data(),t||(t=[]),n=e.map(t,function(e){return o.opts.id(e)}),this.setVal(n),this.updateSelection(t),this.clearSearch(),void(i&&this.triggerChange(this.buildChangeDetails(a,this.data()))))}}),e.fn.select2=function(){var i,n,o,s,r,l=Array.prototype.slice.call(arguments,0),c=["val","destroy","opened","open","close","focus","isFocused","container","dropdown","onSortStart","onSortEnd","enable","disable","readonly","positionDropdown","data","search"],d=["opened","isFocused","container","dropdown"],h=["val","data"],u={search:"externalSearch"};return this.each(function(){if(0===l.length||"object"==typeof l[0])i=0===l.length?{}:e.extend({},l[0]),i.element=e(this),"select"===i.element.get(0).tagName.toLowerCase()?r=i.element.prop("multiple"):(r=i.multiple||!1,"tags"in i&&(i.multiple=r=!0)),n=r?new window.Select2["class"].multi:new window.Select2["class"].single,n.init(i);else{if("string"!=typeof l[0])throw"Invalid arguments to select2 plugin: "+l;if(a(l[0],c)<0)throw"Unknown method: "+l[0];if(s=t,n=e(this).data("select2"),n===t)return;if(o=l[0],"container"===o?s=n.container:"dropdown"===o?s=n.dropdown:(u[o]&&(o=u[o]),s=n[o].apply(n,l.slice(1))),a(l[0],d)>=0||a(l[0],h)>=0&&1==l.length)return!1}}),s===t?this:s},e.fn.select2.defaults={width:"copy",loadMorePadding:0,closeOnSelect:!0,openOnEnter:!0,containerCss:{},dropdownCss:{},containerCssClass:"",dropdownCssClass:"",formatResult:function(e,t,i,n){var a=[];return x(e.text,i.term,a,n),a.join("")},formatSelection:function(e,i,n){return e?n(e.text):t},sortResults:function(e){return e},formatResultCssClass:function(e){return e.css},formatSelectionCssClass:function(){return t},minimumResultsForSearch:0,minimumInputLength:0,maximumInputLength:null,maximumSelectionSize:0,id:function(e){return e==t?null:e.id},matcher:function(e,t){return n(""+t).toUpperCase().indexOf(n(""+e).toUpperCase())>=0},separator:",",tokenSeparators:[],tokenizer:E,escapeMarkup:b,blurOnChange:!1,selectOnBlur:!1,adaptContainerCssClass:function(e){return e},adaptDropdownCssClass:function(){return null},nextSearchTerm:function(){return t},searchInputPlaceholder:"",createSearchChoicePosition:"top",shouldFocusInput:function(e){var t="ontouchstart"in window||navigator.msMaxTouchPoints>0;return t&&e.opts.minimumResultsForSearch<0?!1:!0}},e.fn.select2.locales=[],e.fn.select2.locales.en={formatMatches:function(e){return 1===e?"One result is available, press enter to select it.":e+" results are available, use up and down arrow keys to navigate."},formatNoMatches:function(){return"No matches found"},formatAjaxError:function(){return"Loading failed"},formatInputTooShort:function(e,t){var i=t-e.length;return"Please enter "+i+" or more character"+(1==i?"":"s")},formatInputTooLong:function(e,t){var i=e.length-t;return"Please delete "+i+" character"+(1==i?"":"s")},formatSelectionTooBig:function(e){return"You can only select "+e+" item"+(1==e?"":"s")},formatLoadMore:function(){return"Loading more results…"},formatSearching:function(){return"Searching…"}},e.extend(e.fn.select2.defaults,e.fn.select2.locales.en),e.fn.select2.ajaxDefaults={transport:e.ajax,params:{type:"GET",cache:!1,dataType:"json"}},window.Select2={query:{ajax:y,local:C,tags:S},util:{debounce:h,markMatch:x,escapeMarkup:b,stripDiacritics:n},"class":{"abstract":L,single:O,multi:B}}}}(jQuery),function(e){"use strict";function t(e){return" "+e+" символ"+(5>e%10&&e%10>0&&(5>e%100||e%100>20)?e%10>1?"a":"":"ов")}e.fn.select2.locales.ru={formatNoMatches:function(){return"Совпадений не найдено"},formatInputTooShort:function(e,i){return"Пожалуйста, введите еще хотя бы"+t(i-e.length)},formatInputTooLong:function(e,i){return"Пожалуйста, введите на"+t(e.length-i)+" меньше"},formatSelectionTooBig:function(e){return"Вы можете выбрать не более "+e+" элемент"+(e%10==1&&e%100!=11?"а":"ов")},formatLoadMore:function(){return"Загрузка данных…"},formatSearching:function(){return"Поиск…"}},e.extend(e.fn.select2.defaults,e.fn.select2.locales.ru)}(jQuery),jQuery(function(e){e.datepicker.regional.ru={closeText:"Закрыть",prevText:"<Пред",nextText:"След>",currentText:"Сегодня",monthNames:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],dayNames:["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"],dayNamesShort:["вск","пнд","втр","срд","чтв","птн","сбт"],dayNamesMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Нед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.ru)}),function(e){function t(t){var i=t||window.event,n=[].slice.call(arguments,1),a=0,o=0,s=0;return t=e.event.fix(i),t.type="mousewheel",i.wheelDelta&&(a=i.wheelDelta/120),i.detail&&(a=-i.detail/3),s=a,void 0!==i.axis&&i.axis===i.HORIZONTAL_AXIS&&(s=0,o=-1*a),void 0!==i.wheelDeltaY&&(s=i.wheelDeltaY/120),void 0!==i.wheelDeltaX&&(o=-1*i.wheelDeltaX/120),n.unshift(t,a,o,s),(e.event.dispatch||e.event.handle).apply(this,n)}var i=["DOMMouseScroll","mousewheel"];if(e.event.fixHooks)for(var n=i.length;n;)e.event.fixHooks[i[--n]]=e.event.mouseHooks;e.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var e=i.length;e;)this.addEventListener(i[--e],t,!1);else this.onmousewheel=t -},teardown:function(){if(this.removeEventListener)for(var e=i.length;e;)this.removeEventListener(i[--e],t,!1);else this.onmousewheel=null}},e.fn.extend({mousewheel:function(e){return e?this.bind("mousewheel",e):this.trigger("mousewheel")},unmousewheel:function(e){return this.unbind("mousewheel",e)}})}(jQuery);var Swiper=function(e,t){function i(e,t){return document.querySelectorAll?(t||document).querySelectorAll(e):jQuery(e,t)}function n(){var e=k-P;return t.freeMode&&(e=k-P),t.slidesPerView>S.slides.length&&(e=0),0>e&&(e=0),e}function a(){function e(e){var i=new Image;i.onload=function(){S.imagesLoaded++,S.imagesLoaded==S.imagesToLoad.length&&(S.reInit(),t.onImagesReady&&S.fireCallback(t.onImagesReady,S))},i.src=e}var n=S.h.addEventListener;if(S.browser.ie10?(n(S.wrapper,S.touchEvents.touchStart,f),n(document,S.touchEvents.touchMove,g),n(document,S.touchEvents.touchEnd,m)):(S.support.touch&&(n(S.wrapper,"touchstart",f),n(S.wrapper,"touchmove",g),n(S.wrapper,"touchend",m)),t.simulateTouch&&(n(S.wrapper,"mousedown",f),n(document,"mousemove",g),n(document,"mouseup",m))),t.autoResize&&n(window,"resize",S.resizeFix),o(),S._wheelEvent=!1,t.mousewheelControl){void 0!==document.onmousewheel&&(S._wheelEvent="mousewheel");try{WheelEvent("wheel"),S._wheelEvent="wheel"}catch(a){}S._wheelEvent||(S._wheelEvent="DOMMouseScroll"),S._wheelEvent&&n(S.container,S._wheelEvent,l)}if(t.keyboardControl&&n(document,"keydown",r),t.updateOnImagesReady)for(S.imagesToLoad=i("img",S.container),n=0;n=a&&c[0]<=a+s&&c[1]>=o&&c[1]<=o+r&&(i=!0)}if(!i)return}O?((37==t||39==t)&&(e.preventDefault?e.preventDefault():e.returnValue=!1),39==t&&S.swipeNext(),37==t&&S.swipePrev()):((38==t||40==t)&&(e.preventDefault?e.preventDefault():e.returnValue=!1),40==t&&S.swipeNext(),38==t&&S.swipePrev())}function l(e){var i=S._wheelEvent,a=0;if(e.detail)a=-e.detail;else if("mousewheel"==i)if(O){if(!(Math.abs(e.wheelDeltaX)>Math.abs(e.wheelDeltaY)))return;a=e.wheelDeltaX}else{if(!(Math.abs(e.wheelDeltaY)>Math.abs(e.wheelDeltaX)))return;a=e.wheelDeltaY}else if("DOMMouseScroll"==i)a=-e.detail;else if("wheel"==i)if(O){if(!(Math.abs(e.deltaX)>Math.abs(e.deltaY)))return;a=-e.deltaX}else{if(!(Math.abs(e.deltaY)>Math.abs(e.deltaX)))return;a=-e.deltaY}if(t.freeMode){if(i=S.getWrapperTranslate()+a,i>0&&(i=0),i<-n()&&(i=-n()),S.setWrapperTransition(0),S.setWrapperTranslate(i),S.updateActiveSlide(i),0==i||i==-n())return}else 60<(new Date).getTime()-D&&(0>a?S.swipeNext():S.swipePrev()),D=(new Date).getTime();return t.autoplay&&S.stopAutoplay(!0),e.preventDefault?e.preventDefault():e.returnValue=!1,!1}function c(e){S.allowSlideClick&&(h(e),S.fireCallback(t.onSlideClick,S,e))}function d(e){h(e),S.fireCallback(t.onSlideTouch,S,e)}function h(e){if(e.currentTarget)S.clickedSlide=e.currentTarget;else{e=e.srcElement;do if(-1Math.abs(i-S.touches.startX))),"undefined"!=typeof M||O||(M=!!(M||Math.abs(a-S.touches.startY)e?P/2:S.positions.current*e),S.positions.current<-n()&&(i=(S.touches.current-S.touches.start)*t.touchRatio+(n()+S.positions.start),e=(P+i)/P,i=S.positions.current-i*(1-e)/2,a=-n()-P/2,S.positions.current=a>i||0>=e?a:i)),t.resistance&&"100%"==t.resistance&&(0t.moveStartThreshold||R?(R=!0,S.setWrapperTranslate(S.positions.current)):S.positions.current=S.positions.start:S.setWrapperTranslate(S.positions.current),(t.freeMode||t.watchActiveIndex)&&S.updateActiveSlide(S.positions.current),t.grabCursor&&(S.container.style.cursor="move",S.container.style.cursor="grabbing",S.container.style.cursor="-moz-grabbin",S.container.style.cursor="-webkit-grabbing"),W||(W=S.touches.current),H||(H=(new Date).getTime()),S.velocity=(S.touches.current-W)/((new Date).getTime()-H)/2,2>Math.abs(S.touches.current-W)&&(S.velocity=0),W=S.touches.current,H=(new Date).getTime(),S.callPlugins("onTouchMoveEnd"),t.onTouchMove&&S.fireCallback(t.onTouchMove,S),!1}}function m(e){if(M&&S.swipeReset(),!t.onlyExternal&&S.isTouched){S.isTouched=!1,t.grabCursor&&(S.container.style.cursor="move",S.container.style.cursor="grab",S.container.style.cursor="-moz-grab",S.container.style.cursor="-webkit-grab"),S.positions.current||0===S.positions.current||(S.positions.current=S.positions.start),t.followFinger&&S.setWrapperTranslate(S.positions.current),S.times.end=(new Date).getTime(),S.touches.diff=S.touches.current-S.touches.start,S.touches.abs=Math.abs(S.touches.diff),S.positions.diff=S.positions.current-S.positions.start,S.positions.abs=Math.abs(S.positions.diff);var i=S.positions.diff,a=S.positions.abs;e=S.times.end-S.times.start,5>a&&300>e&&0==S.allowLinks&&(t.freeMode||0==a||S.swipeReset(),t.preventLinks&&(S.allowLinks=!0),t.onSlideClick&&(S.allowSlideClick=!0)),setTimeout(function(){t.preventLinks&&(S.allowLinks=!0),t.onSlideClick&&(S.allowSlideClick=!0)},100);var o=n();if(!S.isMoved&&t.freeMode)S.isMoved=!1,t.onTouchEnd&&S.fireCallback(t.onTouchEnd,S);else if(!S.isMoved||0i&&(t.momentumBounce&&S.support.transitions?(-l>i+o&&(i=-o-l),s=-o,F=r=!0):i=-o),i>0&&(t.momentumBounce&&S.support.transitions?(i>l&&(i=l),s=0,F=r=!0):i=0),0!=S.velocity&&(a=Math.abs((i-S.positions.current)/S.velocity)),S.setWrapperTranslate(i),S.setWrapperTransition(a),t.momentumBounce&&r&&S.wrapperTransitionEnd(function(){F&&(t.onMomentumBounce&&S.fireCallback(t.onMomentumBounce,S),S.callPlugins("onMomentumBounce"),S.setWrapperTranslate(s),S.setWrapperTransition(300))}),S.updateActiveSlide(i)}(!t.freeModeFluid||e>=300)&&S.updateActiveSlide(S.positions.current),t.onTouchEnd&&S.fireCallback(t.onTouchEnd,S)}else{if(E=0>i?"toNext":"toPrev","toNext"==E&&300>=e&&(30>a||!t.shortSwipes?S.swipeReset():S.swipeNext(!0)),"toPrev"==E&&300>=e&&(30>a||!t.shortSwipes?S.swipeReset():S.swipePrev(!0)),o=0,"auto"==t.slidesPerView){for(var i=Math.abs(S.getWrapperTranslate()),c=r=0;ci){o=l;break}o>P&&(o=P)}else o=T*t.slidesPerView;"toNext"==E&&e>300&&(a>=.5*o?S.swipeNext(!0):S.swipeReset()),"toPrev"==E&&e>300&&(a>=.5*o?S.swipePrev(!0):S.swipeReset()),t.onTouchEnd&&t.onTouchEnd(S)}S.callPlugins("onTouchEnd")}}function v(e,i,n){function a(){s+=r,(c="toNext"==l?s>e:e>s)?(S.setWrapperTranslate(Math.round(s)),S._DOMAnimating=!0,window.setTimeout(function(){a()},1e3/60)):(t.onSlideChangeEnd&&S.fireCallback(t.onSlideChangeEnd,S),S.setWrapperTranslate(e),S._DOMAnimating=!1)}var o="to"==i&&0<=n.speed?n.speed:t.speed;if(S.support.transitions||!t.DOMAnimation)S.setWrapperTranslate(e),S.setWrapperTransition(o);else{var s=S.getWrapperTranslate(),r=Math.ceil((e-s)/o*(1e3/60)),l=s>e?"toNext":"toPrev",c="toNext"==l?s>e:e>s;if(S._DOMAnimating)return;a()}S.updateActiveSlide(e),t.onSlideNext&&"next"==i&&S.fireCallback(t.onSlideNext,S,e),t.onSlidePrev&&"prev"==i&&S.fireCallback(t.onSlidePrev,S,e),t.onSlideReset&&"reset"==i&&S.fireCallback(t.onSlideReset,S,e),("next"==i||"prev"==i||"to"==i&&1==n.runCallbacks)&&w(i)}function w(e){if(S.callPlugins("onSlideChangeStart"),t.onSlideChangeStart)if(t.queueStartCallbacks&&S.support.transitions){if(S._queueStartCallbacks)return;S._queueStartCallbacks=!0,S.fireCallback(t.onSlideChangeStart,S,e),S.wrapperTransitionEnd(function(){S._queueStartCallbacks=!1})}else S.fireCallback(t.onSlideChangeStart,S,e);t.onSlideChangeEnd&&(S.support.transitions?t.queueEndCallbacks?S._queueEndCallbacks||(S._queueEndCallbacks=!0,S.wrapperTransitionEnd(function(i){S.fireCallback(t.onSlideChangeEnd,i,e)})):S.wrapperTransitionEnd(function(i){S.fireCallback(t.onSlideChangeEnd,i,e)}):t.DOMAnimation||setTimeout(function(){S.fireCallback(t.onSlideChangeStart,S,e)},10))}function x(){for(var e=S.paginationButtons,t=0;ti;i++)if(this[i]===e)return i;return-1}),(document.querySelectorAll||window.jQuery)&&"undefined"!=typeof e&&(e.nodeType||0!==i(e).length)){var S=this;S.touches={start:0,startX:0,startY:0,current:0,currentX:0,currentY:0,diff:0,abs:0},S.positions={start:0,abs:0,diff:0,current:0},S.times={start:0,end:0},S.id=(new Date).getTime(),S.container=e.nodeType?e:i(e)[0],S.isTouched=!1,S.isMoved=!1,S.activeIndex=0,S.centerIndex=0,S.activeLoaderIndex=0,S.activeLoopIndex=0,S.previousIndex=null,S.velocity=0,S.snapGrid=[],S.slidesGrid=[],S.imagesToLoad=[],S.imagesLoaded=0,S.wrapperLeft=0,S.wrapperRight=0,S.wrapperTop=0,S.wrapperBottom=0;var _,T,k,E,M,P,C={mode:"horizontal",touchRatio:1,speed:300,freeMode:!1,freeModeFluid:!1,momentumRatio:1,momentumBounce:!0,momentumBounceRatio:1,slidesPerView:1,slidesPerGroup:1,simulateTouch:!0,followFinger:!0,shortSwipes:!0,moveStartThreshold:!1,onlyExternal:!1,createPagination:!0,pagination:!1,paginationElement:"span",paginationClickable:!1,paginationAsRange:!0,resistance:!0,scrollContainer:!1,preventLinks:!0,noSwiping:!1,noSwipingClass:"swiper-no-swiping",initialSlide:0,keyboardControl:!1,mousewheelControl:!1,useCSS3Transforms:!0,autoplay:!1,autoplayDisableOnInteraction:!0,loop:!1,loopAdditionalSlides:0,calculateHeight:!1,cssWidthAndHeight:!1,updateOnImagesReady:!0,releaseFormElements:!0,watchActiveIndex:!1,visibilityFullFit:!1,offsetPxBefore:0,offsetPxAfter:0,offsetSlidesBefore:0,offsetSlidesAfter:0,centeredSlides:!1,queueStartCallbacks:!1,queueEndCallbacks:!1,autoResize:!0,resizeReInit:!1,DOMAnimation:!0,loader:{slides:[],slidesHTMLType:"inner",surroundGroups:1,logic:"reload",loadAllSlides:!1},slideElement:"div",slideClass:"swiper-slide",slideActiveClass:"swiper-slide-active",slideVisibleClass:"swiper-slide-visible",wrapperClass:"swiper-wrapper",paginationElementClass:"swiper-pagination-switch",paginationActiveClass:"swiper-active-switch",paginationVisibleClass:"swiper-visible-switch"};t=t||{};for(var I in C)if(I in t&&"object"==typeof t[I])for(var L in C[I])L in t[I]||(t[I][L]=C[I][L]);else I in t||(t[I]=C[I]);S.params=t,t.scrollContainer&&(t.freeMode=!0,t.freeModeFluid=!0),t.loop&&(t.resistance="100%");var O="horizontal"===t.mode;for(S.touchEvents={touchStart:S.support.touch||!t.simulateTouch?"touchstart":S.browser.ie10?"MSPointerDown":"mousedown",touchMove:S.support.touch||!t.simulateTouch?"touchmove":S.browser.ie10?"MSPointerMove":"mousemove",touchEnd:S.support.touch||!t.simulateTouch?"touchend":S.browser.ie10?"MSPointerUp":"mouseup"},I=S.container.childNodes.length-1;I>=0;I--)if(S.container.childNodes[I].className)for(L=S.container.childNodes[I].className.split(" "),C=0;C=0;i--)e===S.slides[i]&&(t=i);return t},e.isActive=function(){return e.index()===S.activeIndex?!0:!1},e.swiperSlideDataStorage||(e.swiperSlideDataStorage={}),e.getData=function(t){return e.swiperSlideDataStorage[t]},e.setData=function(t,i){return e.swiperSlideDataStorage[t]=i,e},e.data=function(t,i){return i?(e.setAttribute("data-"+t,i),e):e.getAttribute("data-"+t)},e.getWidth=function(t){return S.h.getWidth(e,t)},e.getHeight=function(t){return S.h.getHeight(e,t)},e.getOffset=function(){return S.h.getOffset(e)},e},S.calcSlides=function(e){var i=S.slides?S.slides.length:!1;S.slides=[],S.displaySlides=[];for(var n=0;n=0;n--)S._extendSwiperSlide(S.slides[n]);!1===i||i===S.slides.length&&!e||(s(),o(),S.updateActiveSlide(),S.params.pagination&&S.createPagination(),S.callPlugins("numberOfSlidesChanged"))},S.createSlide=function(e,i,n){return i=i||S.params.slideClass,n=n||t.slideElement,n=document.createElement(n),n.innerHTML=e||"",n.className=i,S._extendSwiperSlide(n)},S.appendSlide=function(e,t,i){return e?e.nodeType?S._extendSwiperSlide(e).append():S.createSlide(e,t,i).append():void 0},S.prependSlide=function(e,t,i){return e?e.nodeType?S._extendSwiperSlide(e).prepend():S.createSlide(e,t,i).prepend():void 0},S.insertSlideAfter=function(e,t,i,n){return"undefined"==typeof e?!1:t.nodeType?S._extendSwiperSlide(t).insertAfter(e):S.createSlide(t,i,n).insertAfter(e)},S.removeSlide=function(e){if(S.slides[e]){if(t.loop){if(!S.slides[e+S.loopedSlides])return!1;S.slides[e+S.loopedSlides].remove(),S.removeLoopedSlides(),S.calcSlides(),S.createLoop()}else S.slides[e].remove();return!0}return!1},S.removeLastSlide=function(){return 0=0;e--)S.slides[e].remove()},S.getSlide=function(e){return S.slides[e]},S.getLastSlide=function(){return S.slides[S.slides.length-1]},S.getFirstSlide=function(){return S.slides[0]},S.activeSlide=function(){return S.slides[S.activeIndex]};var B,A=[];for(B in S.plugins)t[B]&&(I=S.plugins[B](S,t[B]))&&A.push(I);S.callPlugins=function(e,t){t||(t={});for(var i=0;iP){for(f=0;f<=Math.floor(u/(P+S.wrapperLeft));f++)S.snapGrid.push(0===f?r+S.wrapperLeft:r+S.wrapperLeft+P*f);S.slidesGrid.push(r+S.wrapperLeft)}else S.snapGrid.push(l),S.slidesGrid.push(l);l+=u/2+p/2}else{if(u>P)for(f=0;f<=Math.floor(u/P);f++)S.snapGrid.push(r+P*f);else S.snapGrid.push(r);S.slidesGrid.push(r)}r+=u,o+=a,s+=h}t.calculateHeight&&(S.height=c),O?(k=o+S.wrapperRight+S.wrapperLeft,n.style.width=o+"px",n.style.height=S.height+"px"):(k=s+S.wrapperTop+S.wrapperBottom,n.style.width=S.width+"px",n.style.height=s+"px")}else if(t.scrollContainer)n.style.width="",n.style.height="",c=S.slides[0].getWidth(!0),o=S.slides[0].getHeight(!0),k=O?c:o,n.style.width=c+"px",n.style.height=o+"px",T=O?c:o;else{if(t.calculateHeight){for(o=c=0,O||(S.container.style.height=""),n.style.height="",d=0;d=S.snapGrid[a]&&-eS.snapGrid[n]&&-e0&&(i=0),i==e?!1:(v(i,"prev"),!0)},S.swipeReset=function(){S.callPlugins("onSwipeReset");var e=S.getWrapperTranslate(),i=T*t.slidesPerGroup;if(n(),"auto"==t.slidesPerView){for(var a=i=0;a=S.snapGrid[a]&&-e=S.snapGrid[S.snapGrid.length-1]&&(i=-S.snapGrid[S.snapGrid.length-1]),e<=-n()&&(i=-n())}else i=0>e?Math.round(e/i)*i:0;return t.scrollContainer&&(i=0>e?e:0),i<-n()&&(i=-n()),t.scrollContainer&&P>T&&(i=0),i==e?!1:(v(i,"reset"),!0)},S.swipeTo=function(e,i,a){e=parseInt(e,10),S.callPlugins("onSwipeTo",{index:e,speed:i}),t.loop&&(e+=S.loopedSlides);var o=S.getWrapperTranslate();if(!(e>S.slides.length-1||0>e)){var s;return s="auto"==t.slidesPerView?-S.slidesGrid[e]:-e*T,s<-n()&&(s=-n()),s==o?!1:(v(s,"to",{index:e,speed:i,runCallbacks:!1===a?!1:!0}),!0)}},S._queueStartCallbacks=!1,S._queueEndCallbacks=!1,S.updateActiveSlide=function(e){if(S.initialized&&0!=S.slides.length){if(S.previousIndex=S.activeIndex,"undefined"==typeof e&&(e=S.getWrapperTranslate()),e>0&&(e=0),"auto"==t.slidesPerView){if(S.activeIndex=S.slidesGrid.indexOf(-e),0>S.activeIndex){for(var i=0;iS.slidesGrid[i]&&-e=n?i:i+1}}else S.activeIndex=Math[t.visibilityFullFit?"ceil":"round"](-e/T);if(S.activeIndex==S.slides.length&&(S.activeIndex=S.slides.length-1),0>S.activeIndex&&(S.activeIndex=0),S.slides[S.activeIndex]){for(S.calcVisibleSlides(e),n=RegExp("\\s*"+t.slideActiveClass),a=RegExp("\\s*"+t.slideVisibleClass),i=0;i=S.slides.length-2*i&&(S.activeLoopIndex=S.slides.length-2*i-S.activeLoopIndex),0>S.activeLoopIndex&&(S.activeLoopIndex=S.slides.length-2*i+S.activeLoopIndex)):S.activeLoopIndex=S.activeIndex,t.pagination&&S.updatePagination(e)}}},S.createPagination=function(e){if(t.paginationClickable&&S.paginationButtons&&x(),S.paginationContainer=t.pagination.nodeType?t.pagination:i(t.pagination)[0],t.createPagination){var n="",a=S.slides.length;t.loop&&(a-=2*S.loopedSlides);for(var o=0;a>o;o++)n+="<"+t.paginationElement+' class="'+t.paginationElementClass+'">";S.paginationContainer.innerHTML=n}if(S.paginationButtons=i("."+t.paginationElementClass,S.paginationContainer),e||S.updatePagination(),S.callPlugins("onCreatePagination"),t.paginationClickable)for(e=S.paginationButtons,n=0;nS.slides.length)&&i("."+t.paginationActiveClass,S.paginationContainer)){var n=S.paginationButtons;if(0!=n.length){for(var a=0;as&&(s=S.slides.length-2*S.loopedSlides+s),t.loop&&s>=S.slides.length-2*S.loopedSlides&&(s=S.slides.length-2*S.loopedSlides-s,s=Math.abs(s)),e.push(s)}for(a=0;a=-e&&-e+P>=o&&(r=!0),-e>=n&&o>=-e+P&&(r=!0)):(o>-e&&-e+P>=o&&(r=!0),n>=-e&&-e+P>n&&(r=!0),-e>n&&o>-e+P&&(r=!0)),r&&i.push(S.slides[s])}0==i.length&&(i=[S.slides[S.activeIndex]]),S.visibleSlides=i};var N=void 0;S.startAutoplay=function(){return"undefined"!=typeof N?!1:void(t.autoplay&&(S.callPlugins("onAutoplayStart"),y()))},S.stopAutoplay=function(e){N&&clearTimeout(N),N=void 0,e&&!t.autoplayDisableOnInteraction&&S.wrapperTransitionEnd(function(){y()}),S.callPlugins("onAutoplayStop")},S.loopCreated=!1,S.removeLoopedSlides=function(){if(S.loopCreated)for(var e=0;eS.slides.length&&(S.loopedSlides=S.slides.length);var e,i="",n="",a="",o=S.slides.length,s=Math.floor(S.loopedSlides/o),r=S.loopedSlides%o;for(e=0;s*o>e;e++){var l=e;e>=o&&(l=e-o*Math.floor(e/o)),a+=S.slides[l].outerHTML}for(e=0;r>e;e++)n+=S.slides[e].outerHTML;for(e=o-r;o>e;e++)i+=S.slides[e].outerHTML;for(_.innerHTML=i+a+_.innerHTML+a+n,S.loopCreated=!0,S.calcSlides(),e=0;e=S.slides.length-S.loopedSlides)&&S.slides[e].setData("looped",!0);S.callPlugins("onCreateLoop")}},S.fixLoop=function(){var e;S.activeIndexS.slides.length-2*t.slidesPerView&&(e=-S.slides.length+S.activeIndex+S.loopedSlides,S.swipeTo(e,0,!1))},S.loadSlides=function(){var e="";S.activeLoaderIndex=0;for(var i=t.loader.slides,n=t.loader.loadAllSlides?i.length:t.slidesPerView*(1+t.loader.surroundGroups),a=0;n>a;a++)e="outer"==t.loader.slidesHTMLType?e+i[a]:e+("<"+t.slideElement+' class="'+t.slideClass+'" data-swiperindex="'+a+'">'+i[a]+"");S.wrapper.innerHTML=e,S.calcSlides(!0),t.loader.loadAllSlides||S.wrapperTransitionEnd(S.reloadSlides,!0)},S.reloadSlides=function(){var e=t.loader.slides,i=parseInt(S.activeSlide().data("swiperindex"),10);if(!(0>i||i>e.length-1)){S.activeLoaderIndex=i;var n=Math.max(0,i-t.slidesPerView*t.loader.surroundGroups),a=Math.min(i+t.slidesPerView*(1+t.loader.surroundGroups)-1,e.length-1); -if(i>0&&(S.setWrapperTranslate(-T*(i-n)),S.setWrapperTransition(0)),"reload"===t.loader.logic){for(var o=S.wrapper.innerHTML="",i=n;a>=i;i++)o+="outer"==t.loader.slidesHTMLType?e[i]:"<"+t.slideElement+' class="'+t.slideClass+'" data-swiperindex="'+i+'">'+e[i]+"";S.wrapper.innerHTML=o}else{for(var o=1e3,s=0,i=0;ir||r>a?S.wrapper.removeChild(S.slides[i]):(o=Math.min(r,o),s=Math.max(r,s))}for(i=n;a>=i;i++)o>i&&(n=document.createElement(t.slideElement),n.className=t.slideClass,n.setAttribute("data-swiperindex",i),n.innerHTML=e[i],S.wrapper.insertBefore(n,S.wrapper.firstChild)),i>s&&(n=document.createElement(t.slideElement),n.className=t.slideClass,n.setAttribute("data-swiperindex",i),n.innerHTML=e[i],S.wrapper.appendChild(n))}S.reInit(!0)}},S.calcSlides(),0e}(),ie10:window.navigator.msPointerEnabled}},(window.jQuery||window.Zepto)&&function(e){e.fn.swiper=function(t){return t=new Swiper(e(this)[0],t),e(this).data("swiper",t),t}}(window.jQuery||window.Zepto),"undefined"!=typeof module&&(module.exports=Swiper),!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof exports?module.exports=e:e(jQuery)}(function(e){function t(t){var s=t||window.event,r=l.call(arguments,1),c=0,h=0,u=0,p=0,f=0,g=0;if(t=e.event.fix(s),t.type="mousewheel","detail"in s&&(u=-1*s.detail),"wheelDelta"in s&&(u=s.wheelDelta),"wheelDeltaY"in s&&(u=s.wheelDeltaY),"wheelDeltaX"in s&&(h=-1*s.wheelDeltaX),"axis"in s&&s.axis===s.HORIZONTAL_AXIS&&(h=-1*u,u=0),c=0===u?h:u,"deltaY"in s&&(u=-1*s.deltaY,c=u),"deltaX"in s&&(h=s.deltaX,0===u&&(c=-1*h)),0!==u||0!==h){if(1===s.deltaMode){var m=e.data(this,"mousewheel-line-height");c*=m,u*=m,h*=m}else if(2===s.deltaMode){var v=e.data(this,"mousewheel-page-height");c*=v,u*=v,h*=v}if(p=Math.max(Math.abs(u),Math.abs(h)),(!o||o>p)&&(o=p,n(s,p)&&(o/=40)),n(s,p)&&(c/=40,h/=40,u/=40),c=Math[c>=1?"floor":"ceil"](c/o),h=Math[h>=1?"floor":"ceil"](h/o),u=Math[u>=1?"floor":"ceil"](u/o),d.settings.normalizeOffset&&this.getBoundingClientRect){var w=this.getBoundingClientRect();f=t.clientX-w.left,g=t.clientY-w.top}return t.deltaX=h,t.deltaY=u,t.deltaFactor=o,t.offsetX=f,t.offsetY=g,t.deltaMode=0,r.unshift(t,c,h,u),a&&clearTimeout(a),a=setTimeout(i,200),(e.event.dispatch||e.event.handle).apply(this,r)}}function i(){o=null}function n(e,t){return d.settings.adjustOldDeltas&&"mousewheel"===e.type&&t%120===0}var a,o,s=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],r="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],l=Array.prototype.slice;if(e.event.fixHooks)for(var c=s.length;c;)e.event.fixHooks[s[--c]]=e.event.mouseHooks;var d=e.event.special.mousewheel={version:"3.1.11",setup:function(){if(this.addEventListener)for(var i=r.length;i;)this.addEventListener(r[--i],t,!1);else this.onmousewheel=t;e.data(this,"mousewheel-line-height",d.getLineHeight(this)),e.data(this,"mousewheel-page-height",d.getPageHeight(this))},teardown:function(){if(this.removeEventListener)for(var i=r.length;i;)this.removeEventListener(r[--i],t,!1);else this.onmousewheel=null;e.removeData(this,"mousewheel-line-height"),e.removeData(this,"mousewheel-page-height")},getLineHeight:function(t){var i=e(t)["offsetParent"in e.fn?"offsetParent":"parent"]();return i.length||(i=e("body")),parseInt(i.css("fontSize"),10)},getPageHeight:function(t){return e(t).height()},settings:{adjustOldDeltas:!0,normalizeOffset:!0}};e.fn.extend({mousewheel:function(e){return e?this.bind("mousewheel",e):this.trigger("mousewheel")},unmousewheel:function(e){return this.unbind("mousewheel",e)}})}),function(e,t){!function(e){e(jQuery)}(function(i){var n="mCustomScrollbar",a="mCS",o=".mCustomScrollbar",s={setWidth:!1,setHeight:!1,setTop:0,setLeft:0,axis:"y",scrollbarPosition:"inside",scrollInertia:950,autoDraggerLength:!0,autoHideScrollbar:!1,autoExpandScrollbar:!1,alwaysShowScrollbar:0,snapAmount:null,snapOffset:0,mouseWheel:{enable:!0,scrollAmount:"auto",axis:"y",preventDefault:!1,deltaFactor:"auto",normalizeDelta:!1,invert:!1,disableOver:["select","option","keygen","datalist","textarea"]},scrollButtons:{enable:!1,scrollType:"stepless",scrollAmount:"auto"},keyboard:{enable:!0,scrollType:"stepless",scrollAmount:"auto"},contentTouchScroll:25,advanced:{autoExpandHorizontalScroll:!1,autoScrollOnFocus:"input,textarea,select,button,datalist,keygen,a[tabindex],area,object,[contenteditable='true']",updateOnContentResize:!0,updateOnImageLoad:!0,updateOnSelectorChange:!1},theme:"light",callbacks:{onScrollStart:!1,onScroll:!1,onTotalScroll:!1,onTotalScrollBack:!1,whileScrolling:!1,onTotalScrollOffset:0,onTotalScrollBackOffset:0,alwaysTriggerOffsets:!0,onOverflowY:!1,onOverflowX:!1,onOverflowYNone:!1,onOverflowXNone:!1},live:!1,liveSelector:null},r=0,l={},c=function(e){l[e]&&(clearTimeout(l[e]),p._delete.call(null,l[e]))},d=e.attachEvent&&!e.addEventListener?1:0,h=!1,u={init:function(e){var e=i.extend(!0,{},s,e),t=p._selector.call(this);if(e.live){var n=e.liveSelector||this.selector||o,d=i(n);if("off"===e.live)return void c(n);l[n]=setTimeout(function(){d.mCustomScrollbar(e),"once"===e.live&&d.length&&c(n)},500)}else c(n);return e.setWidth=e.set_width?e.set_width:e.setWidth,e.setHeight=e.set_height?e.set_height:e.setHeight,e.axis=e.horizontalScroll?"x":p._findAxis.call(null,e.axis),e.scrollInertia=e.scrollInertia>0&&e.scrollInertia<17?17:e.scrollInertia,"object"!=typeof e.mouseWheel&&1==e.mouseWheel&&(e.mouseWheel={enable:!0,scrollAmount:"auto",axis:"y",preventDefault:!1,deltaFactor:"auto",normalizeDelta:!1,invert:!1}),e.mouseWheel.scrollAmount=e.mouseWheelPixels?e.mouseWheelPixels:e.mouseWheel.scrollAmount,e.mouseWheel.normalizeDelta=e.advanced.normalizeMouseWheelDelta?e.advanced.normalizeMouseWheelDelta:e.mouseWheel.normalizeDelta,e.scrollButtons.scrollType=p._findScrollButtonsType.call(null,e.scrollButtons.scrollType),p._theme.call(null,e),i(t).each(function(){var t=i(this);if(!t.data(a)){t.data(a,{idx:++r,opt:e,scrollRatio:{y:null,x:null},overflowed:null,contentReset:{y:null,x:null},bindEvents:!1,tweenRunning:!1,sequential:{},langDir:t.css("direction"),cbOffsets:null,trigger:null});var n=t.data(a).opt,o=t.data("mcs-axis"),s=t.data("mcs-scrollbar-position"),l=t.data("mcs-theme");o&&(n.axis=o),s&&(n.scrollbarPosition=s),l&&(n.theme=l,p._theme.call(null,n)),p._pluginMarkup.call(this),u.update.call(null,t)}})},update:function(e){var t=e||p._selector.call(this);return i(t).each(function(){var e=i(this);if(e.data(a)){var t=e.data(a),n=t.opt,o=i("#mCSB_"+t.idx+"_container"),s=[i("#mCSB_"+t.idx+"_dragger_vertical"),i("#mCSB_"+t.idx+"_dragger_horizontal")];if(!o.length)return;t.tweenRunning&&p._stop.call(null,e),e.hasClass("mCS_disabled")&&e.removeClass("mCS_disabled"),e.hasClass("mCS_destroyed")&&e.removeClass("mCS_destroyed"),p._maxHeight.call(this),p._expandContentHorizontally.call(this),"y"===n.axis||n.advanced.autoExpandHorizontalScroll||o.css("width",p._contentWidth(o.children())),t.overflowed=p._overflowed.call(this),p._scrollbarVisibility.call(this),n.autoDraggerLength&&p._setDraggerLength.call(this),p._scrollRatio.call(this),p._bindEvents.call(this);var r=[Math.abs(o[0].offsetTop),Math.abs(o[0].offsetLeft)];"x"!==n.axis&&(t.overflowed[0]?s[0].height()>s[0].parent().height()?p._resetContentPosition.call(this):(p._scrollTo.call(this,e,r[0].toString(),{dir:"y",dur:0,overwrite:"none"}),t.contentReset.y=null):(p._resetContentPosition.call(this),"y"===n.axis?p._unbindEvents.call(this):"yx"===n.axis&&t.overflowed[1]&&p._scrollTo.call(this,e,r[1].toString(),{dir:"x",dur:0,overwrite:"none"}))),"y"!==n.axis&&(t.overflowed[1]?s[1].width()>s[1].parent().width()?p._resetContentPosition.call(this):(p._scrollTo.call(this,e,r[1].toString(),{dir:"x",dur:0,overwrite:"none"}),t.contentReset.x=null):(p._resetContentPosition.call(this),"x"===n.axis?p._unbindEvents.call(this):"yx"===n.axis&&t.overflowed[0]&&p._scrollTo.call(this,e,r[0].toString(),{dir:"y",dur:0,overwrite:"none"}))),p._autoUpdate.call(this)}})},scrollTo:function(e,t){if("undefined"!=typeof e&&null!=e){var n=p._selector.call(this);return i(n).each(function(){var n=i(this);if(n.data(a)){var o=n.data(a),s=o.opt,r={trigger:"external",scrollInertia:s.scrollInertia,scrollEasing:"mcsEaseInOut",moveDragger:!1,timeout:60,callbacks:!0,onStart:!0,onUpdate:!0,onComplete:!0},l=i.extend(!0,{},r,t),c=p._arr.call(this,e),d=l.scrollInertia>0&&l.scrollInertia<17?17:l.scrollInertia;c[0]=p._to.call(this,c[0],"y"),c[1]=p._to.call(this,c[1],"x"),l.moveDragger&&(c[0]*=o.scrollRatio.y,c[1]*=o.scrollRatio.x),l.dur=d,setTimeout(function(){null!==c[0]&&"undefined"!=typeof c[0]&&"x"!==s.axis&&o.overflowed[0]&&(l.dir="y",l.overwrite="all",p._scrollTo.call(this,n,c[0].toString(),l)),null!==c[1]&&"undefined"!=typeof c[1]&&"y"!==s.axis&&o.overflowed[1]&&(l.dir="x",l.overwrite="none",p._scrollTo.call(this,n,c[1].toString(),l))},l.timeout)}})}},stop:function(){var e=p._selector.call(this);return i(e).each(function(){var e=i(this);e.data(a)&&p._stop.call(null,e)})},disable:function(e){var t=p._selector.call(this);return i(t).each(function(){var t=i(this);if(t.data(a)){{var n=t.data(a);n.opt}p._autoUpdate.call(this,"remove"),p._unbindEvents.call(this),e&&p._resetContentPosition.call(this),p._scrollbarVisibility.call(this,!0),t.addClass("mCS_disabled")}})},destroy:function(){var e=p._selector.call(this);return i(e).each(function(){var t=i(this);if(t.data(a)){var o=t.data(a),s=o.opt,r=i("#mCSB_"+o.idx),l=i("#mCSB_"+o.idx+"_container"),d=i(".mCSB_"+o.idx+"_scrollbar");s.live&&c(e),p._autoUpdate.call(this,"remove"),p._unbindEvents.call(this),p._resetContentPosition.call(this),t.removeData(a),p._delete.call(null,this.mcs),d.remove(),r.replaceWith(l.contents()),t.removeClass(n+" _"+a+"_"+o.idx+" mCS-autoHide mCS-dir-rtl mCS_no_scrollbar mCS_disabled").addClass("mCS_destroyed")}})}},p={_selector:function(){return"object"!=typeof i(this)||i(this).length<1?o:this},_theme:function(e){var t=["rounded","rounded-dark","rounded-dots","rounded-dots-dark"],n=["rounded-dots","rounded-dots-dark","3d","3d-dark","3d-thick","3d-thick-dark","inset","inset-dark","inset-2","inset-2-dark","inset-3","inset-3-dark"],a=["minimal","minimal-dark"],o=["minimal","minimal-dark"],s=["minimal","minimal-dark"];e.autoDraggerLength=i.inArray(e.theme,t)>-1?!1:e.autoDraggerLength,e.autoExpandScrollbar=i.inArray(e.theme,n)>-1?!1:e.autoExpandScrollbar,e.scrollButtons.enable=i.inArray(e.theme,a)>-1?!1:e.scrollButtons.enable,e.autoHideScrollbar=i.inArray(e.theme,o)>-1?!0:e.autoHideScrollbar,e.scrollbarPosition=i.inArray(e.theme,s)>-1?"outside":e.scrollbarPosition},_findAxis:function(e){return"yx"===e||"xy"===e||"auto"===e?"yx":"x"===e||"horizontal"===e?"x":"y"},_findScrollButtonsType:function(e){return"stepped"===e||"pixels"===e||"step"===e||"click"===e?"stepped":"stepless"},_pluginMarkup:function(){var e=i(this),t=e.data(a),o=t.opt,s=o.autoExpandScrollbar?" mCSB_scrollTools_onDrag_expand":"",r=["
      ","
      "],l="yx"===o.axis?"mCSB_vertical_horizontal":"x"===o.axis?"mCSB_horizontal":"mCSB_vertical",c="yx"===o.axis?r[0]+r[1]:"x"===o.axis?r[1]:r[0],d="yx"===o.axis?"
      ":"",h=o.autoHideScrollbar?" mCS-autoHide":"",u="x"!==o.axis&&"rtl"===t.langDir?" mCS-dir-rtl":"";o.setWidth&&e.css("width",o.setWidth),o.setHeight&&e.css("height",o.setHeight),o.setLeft="y"!==o.axis&&"rtl"===t.langDir?"989999px":o.setLeft,e.addClass(n+" _"+a+"_"+t.idx+h+u).wrapInner("
      ");var f=i("#mCSB_"+t.idx),g=i("#mCSB_"+t.idx+"_container");"y"===o.axis||o.advanced.autoExpandHorizontalScroll||g.css("width",p._contentWidth(g.children())),"outside"===o.scrollbarPosition?("static"===e.css("position")&&e.css("position","relative"),e.css("overflow","visible"),f.addClass("mCSB_outside").after(c)):(f.addClass("mCSB_inside").append(c),g.wrap(d)),p._scrollButtons.call(this);var m=[i("#mCSB_"+t.idx+"_dragger_vertical"),i("#mCSB_"+t.idx+"_dragger_horizontal")];m[0].css("min-height",m[0].height()),m[1].css("min-width",m[1].width())},_contentWidth:function(e){return Math.max.apply(Math,e.map(function(){return i(this).outerWidth(!0)}).get())},_expandContentHorizontally:function(){var e=i(this),t=e.data(a),n=t.opt,o=i("#mCSB_"+t.idx+"_container");n.advanced.autoExpandHorizontalScroll&&"y"!==n.axis&&o.css({position:"absolute",width:"auto"}).wrap("
      ").css({width:Math.ceil(o[0].getBoundingClientRect().right+.4)-Math.floor(o[0].getBoundingClientRect().left),position:"relative"}).unwrap()},_scrollButtons:function(){var e=i(this),t=e.data(a),n=t.opt,o=i(".mCSB_"+t.idx+"_scrollbar:first"),s=["","","",""],r=["x"===n.axis?s[2]:s[0],"x"===n.axis?s[3]:s[1],s[2],s[3]];n.scrollButtons.enable&&o.prepend(r[0]).append(r[1]).next(".mCSB_scrollTools").prepend(r[2]).append(r[3])},_maxHeight:function(){var e=i(this),t=e.data(a),n=(t.opt,i("#mCSB_"+t.idx)),o=e.css("max-height"),s=-1!==o.indexOf("%"),r=e.css("box-sizing");if("none"!==o){var l=s?e.parent().height()*parseInt(o)/100:parseInt(o);"border-box"===r&&(l-=e.innerHeight()-e.height()+(e.outerHeight()-e.innerHeight())),n.css("max-height",Math.round(l))}},_setDraggerLength:function(){var e=i(this),t=e.data(a),n=i("#mCSB_"+t.idx),o=i("#mCSB_"+t.idx+"_container"),s=[i("#mCSB_"+t.idx+"_dragger_vertical"),i("#mCSB_"+t.idx+"_dragger_horizontal")],r=[n.height()/o.outerHeight(!1),n.width()/o.outerWidth(!1)],l=[parseInt(s[0].css("min-height")),Math.round(r[0]*s[0].parent().height()),parseInt(s[1].css("min-width")),Math.round(r[1]*s[1].parent().width())],c=d&&l[1]n.height(),r>n.width()]},_resetContentPosition:function(){var e=i(this),t=e.data(a),n=t.opt,o=i("#mCSB_"+t.idx),s=i("#mCSB_"+t.idx+"_container"),r=[i("#mCSB_"+t.idx+"_dragger_vertical"),i("#mCSB_"+t.idx+"_dragger_horizontal")];if(p._stop(e),("x"!==n.axis&&!t.overflowed[0]||"y"===n.axis&&t.overflowed[0])&&(r[0].add(s).css("top",0),p._scrollTo(e,"_resetY")),"y"!==n.axis&&!t.overflowed[1]||"x"===n.axis&&t.overflowed[1]){var l=dx=0;"rtl"===t.langDir&&(l=o.width()-s.outerWidth(!1),dx=Math.abs(l/t.scrollRatio.x)),s.css("left",l),r[1].css("left",dx),p._scrollTo(e,"_resetX")}},_bindEvents:function(){function e(){s=setTimeout(function(){i.event.special.mousewheel?(clearTimeout(s),p._mousewheel.call(t[0])):e()},1e3)}var t=i(this),n=t.data(a),o=n.opt;if(!n.bindEvents){if(p._draggable.call(this),o.contentTouchScroll&&p._contentDraggable.call(this),o.mouseWheel.enable){var s;e()}p._draggerRail.call(this),p._wrapperScroll.call(this),o.advanced.autoScrollOnFocus&&p._focus.call(this),o.scrollButtons.enable&&p._buttons.call(this),o.keyboard.enable&&p._keyboard.call(this),n.bindEvents=!0}},_unbindEvents:function(){var e=i(this),n=e.data(a),o=a+"_"+n.idx,s=".mCSB_"+n.idx+"_scrollbar",r=i("#mCSB_"+n.idx+",#mCSB_"+n.idx+"_container,#mCSB_"+n.idx+"_container_wrapper,"+s+" .mCSB_draggerContainer,#mCSB_"+n.idx+"_dragger_vertical,#mCSB_"+n.idx+"_dragger_horizontal,"+s+">a"),l=i("#mCSB_"+n.idx+"_container");n.bindEvents&&(i(t).unbind("."+o),r.each(function(){i(this).unbind("."+o)}),clearTimeout(e[0]._focusTimeout),p._delete.call(null,e[0]._focusTimeout),clearTimeout(n.sequential.step),p._delete.call(null,n.sequential.step),clearTimeout(l[0].onCompleteTimeout),p._delete.call(null,l[0].onCompleteTimeout),n.bindEvents=!1)},_scrollbarVisibility:function(e){var t=i(this),n=t.data(a),o=n.opt,s=i("#mCSB_"+n.idx+"_container_wrapper"),r=s.length?s:i("#mCSB_"+n.idx+"_container"),l=[i("#mCSB_"+n.idx+"_scrollbar_vertical"),i("#mCSB_"+n.idx+"_scrollbar_horizontal")],c=[l[0].find(".mCSB_dragger"),l[1].find(".mCSB_dragger")];"x"!==o.axis&&(n.overflowed[0]&&!e?(l[0].add(c[0]).add(l[0].children("a")).css("display","block"),r.removeClass("mCS_no_scrollbar_y mCS_y_hidden")):(o.alwaysShowScrollbar?(2!==o.alwaysShowScrollbar&&c[0].add(l[0].children("a")).css("display","none"),r.removeClass("mCS_y_hidden")):(l[0].css("display","none"),r.addClass("mCS_y_hidden")),r.addClass("mCS_no_scrollbar_y"))),"y"!==o.axis&&(n.overflowed[1]&&!e?(l[1].add(c[1]).add(l[1].children("a")).css("display","block"),r.removeClass("mCS_no_scrollbar_x mCS_x_hidden")):(o.alwaysShowScrollbar?(2!==o.alwaysShowScrollbar&&c[1].add(l[1].children("a")).css("display","none"),r.removeClass("mCS_x_hidden")):(l[1].css("display","none"),r.addClass("mCS_x_hidden")),r.addClass("mCS_no_scrollbar_x"))),n.overflowed[0]||n.overflowed[1]?t.removeClass("mCS_no_scrollbar"):t.addClass("mCS_no_scrollbar")},_coordinates:function(e){var t=e.type;switch(t){case"pointerdown":case"MSPointerDown":case"pointermove":case"MSPointerMove":case"pointerup":case"MSPointerUp":return[e.originalEvent.pageY,e.originalEvent.pageX];case"touchstart":case"touchmove":case"touchend":var i=e.originalEvent.touches[0]||e.originalEvent.changedTouches[0];return[i.pageY,i.pageX];default:return[e.pageY,e.pageX]}},_draggable:function(){function e(e){var t=m.find("iframe");if(t.length){var i=e?"auto":"none";t.css("pointer-events",i)}}function n(e,t,i,n){if(m[0].idleTimer=u.scrollInertia<233?250:0,o.attr("id")===g[1])var a="x",s=(o[0].offsetLeft-t+n)*c.scrollRatio.x;else var a="y",s=(o[0].offsetTop-e+i)*c.scrollRatio.y;p._scrollTo(l,s.toString(),{dir:a,drag:!0})}var o,s,r,l=i(this),c=l.data(a),u=c.opt,f=a+"_"+c.idx,g=["mCSB_"+c.idx+"_dragger_vertical","mCSB_"+c.idx+"_dragger_horizontal"],m=i("#mCSB_"+c.idx+"_container"),v=i("#"+g[0]+",#"+g[1]);v.bind("mousedown."+f+" touchstart."+f+" pointerdown."+f+" MSPointerDown."+f,function(n){if(n.stopImmediatePropagation(),n.preventDefault(),p._mouseBtnLeft(n)){h=!0,d&&(t.onselectstart=function(){return!1}),e(!1),p._stop(l),o=i(this);var a=o.offset(),c=p._coordinates(n)[0]-a.top,f=p._coordinates(n)[1]-a.left,g=o.height()+a.top,m=o.width()+a.left;g>c&&c>0&&m>f&&f>0&&(s=c,r=f),p._onDragClasses(o,"active",u.autoExpandScrollbar)}}).bind("touchmove."+f,function(e){e.stopImmediatePropagation(),e.preventDefault();var t=o.offset(),i=p._coordinates(e)[0]-t.top,a=p._coordinates(e)[1]-t.left;n(s,r,i,a)}),i(t).bind("mousemove."+f+" pointermove."+f+" MSPointerMove."+f,function(e){if(o){var t=o.offset(),i=p._coordinates(e)[0]-t.top,a=p._coordinates(e)[1]-t.left;if(s===i)return;n(s,r,i,a)}}).add(v).bind("mouseup."+f+" touchend."+f+" pointerup."+f+" MSPointerUp."+f,function(){o&&(p._onDragClasses(o,"active",u.autoExpandScrollbar),o=null),h=!1,d&&(t.onselectstart=null),e(!0)})},_contentDraggable:function(){function e(e,t){var i=[1.5*t,2*t,t/1.5,t/2];return e>90?t>4?i[0]:i[3]:e>60?t>3?i[3]:i[2]:e>30?t>8?i[1]:t>6?i[0]:t>4?t:i[2]:t>8?t:i[3]}function t(e,t,i,n,a,o){e&&p._scrollTo(v,e.toString(),{dur:t,scrollEasing:i,dir:n,overwrite:a,drag:o})}var n,o,s,r,l,c,d,u,f,g,m,v=i(this),w=v.data(a),x=w.opt,b=a+"_"+w.idx,y=i("#mCSB_"+w.idx),C=i("#mCSB_"+w.idx+"_container"),S=[i("#mCSB_"+w.idx+"_dragger_vertical"),i("#mCSB_"+w.idx+"_dragger_horizontal")],_=[],T=[],k=0,E="yx"===x.axis?"none":"all";C.bind("touchstart."+b+" pointerdown."+b+" MSPointerDown."+b,function(e){if(p._pointerTouch(e)&&!h){var t=C.offset();n=p._coordinates(e)[0]-t.top,o=p._coordinates(e)[1]-t.left}}).bind("touchmove."+b+" pointermove."+b+" MSPointerMove."+b,function(e){if(p._pointerTouch(e)&&!h){e.stopImmediatePropagation(),c=p._getTime();var i=y.offset(),a=p._coordinates(e)[0]-i.top,s=p._coordinates(e)[1]-i.left,r="mcsLinearOut";if(_.push(a),T.push(s),w.overflowed[0])var l=S[0].parent().height()-S[0].height(),d=n-a>0&&a-n>-(l*w.scrollRatio.y);if(w.overflowed[1])var u=S[1].parent().width()-S[1].width(),f=o-s>0&&s-o>-(u*w.scrollRatio.x);(d||f)&&e.preventDefault(),g="yx"===x.axis?[n-a,o-s]:"x"===x.axis?[null,o-s]:[n-a,null],C[0].idleTimer=250,w.overflowed[0]&&t(g[0],k,r,"y","all",!0),w.overflowed[1]&&t(g[1],k,r,"x",E,!0)}}),y.bind("touchstart."+b+" pointerdown."+b+" MSPointerDown."+b,function(e){if(p._pointerTouch(e)&&!h){e.stopImmediatePropagation(),p._stop(v),l=p._getTime();var t=y.offset();s=p._coordinates(e)[0]-t.top,r=p._coordinates(e)[1]-t.left,_=[],T=[]}}).bind("touchend."+b+" pointerup."+b+" MSPointerUp."+b,function(i){if(p._pointerTouch(i)&&!h){i.stopImmediatePropagation(),d=p._getTime();var n=y.offset(),a=p._coordinates(i)[0]-n.top,o=p._coordinates(i)[1]-n.left;if(!(d-c>30)){f=1e3/(d-l);var v="mcsEaseOut",b=2.5>f,S=b?[_[_.length-2],T[T.length-2]]:[0,0];u=b?[a-S[0],o-S[1]]:[a-s,o-r];var k=[Math.abs(u[0]),Math.abs(u[1])];f=b?[Math.abs(u[0]/4),Math.abs(u[1]/4)]:[f,f];var M=[Math.abs(C[0].offsetTop)-u[0]*e(k[0]/f[0],f[0]),Math.abs(C[0].offsetLeft)-u[1]*e(k[1]/f[1],f[1])];g="yx"===x.axis?[M[0],M[1]]:"x"===x.axis?[null,M[1]]:[M[0],null],m=[4*k[0]+x.scrollInertia,4*k[1]+x.scrollInertia];var P=parseInt(x.contentTouchScroll)||0;g[0]=k[0]>P?g[0]:0,g[1]=k[1]>P?g[1]:0,w.overflowed[0]&&t(g[0],m[0],v,"y",E,!1),w.overflowed[1]&&t(g[1],m[1],v,"x",E,!1)}}})},_mousewheel:function(){function e(e){var t=null;try{var i=e.contentDocument||e.contentWindow.document;t=i.body.innerHTML}catch(n){}return null!==t}var t=i(this),n=t.data(a);if(n){var o=n.opt,s=a+"_"+n.idx,r=i("#mCSB_"+n.idx),l=[i("#mCSB_"+n.idx+"_dragger_vertical"),i("#mCSB_"+n.idx+"_dragger_horizontal")],c=i("#mCSB_"+n.idx+"_container").find("iframe"),h=r;c.length&&c.each(function(){var t=this;e(t)&&(h=h.add(i(t).contents().find("body")))}),h.bind("mousewheel."+s,function(e,a){if(p._stop(t),!p._disableMousewheel(t,e.target)){var s="auto"!==o.mouseWheel.deltaFactor?parseInt(o.mouseWheel.deltaFactor):d&&e.deltaFactor<100?100:e.deltaFactor||100;if("x"===o.axis||"x"===o.mouseWheel.axis)var c="x",h=[Math.round(s*n.scrollRatio.x),parseInt(o.mouseWheel.scrollAmount)],u="auto"!==o.mouseWheel.scrollAmount?h[1]:h[0]>=r.width()?.9*r.width():h[0],f=Math.abs(i("#mCSB_"+n.idx+"_container")[0].offsetLeft),g=l[1][0].offsetLeft,m=l[1].parent().width()-l[1].width(),v=e.deltaX||e.deltaY||a;else var c="y",h=[Math.round(s*n.scrollRatio.y),parseInt(o.mouseWheel.scrollAmount)],u="auto"!==o.mouseWheel.scrollAmount?h[1]:h[0]>=r.height()?.9*r.height():h[0],f=Math.abs(i("#mCSB_"+n.idx+"_container")[0].offsetTop),g=l[0][0].offsetTop,m=l[0].parent().height()-l[0].height(),v=e.deltaY||a;"y"===c&&!n.overflowed[0]||"x"===c&&!n.overflowed[1]||(o.mouseWheel.invert&&(v=-v),o.mouseWheel.normalizeDelta&&(v=0>v?-1:1),(v>0&&0!==g||0>v&&g!==m||o.mouseWheel.preventDefault)&&(e.stopImmediatePropagation(),e.preventDefault()),p._scrollTo(t,(f-v*u).toString(),{dir:c}))}})}},_disableMousewheel:function(e,t){var n=t.nodeName.toLowerCase(),o=e.data(a).opt.mouseWheel.disableOver,s=["select","textarea"];return i.inArray(n,o)>-1&&!(i.inArray(n,s)>-1&&!i(t).is(":focus"))},_draggerRail:function(){var e=i(this),t=e.data(a),n=a+"_"+t.idx,o=i("#mCSB_"+t.idx+"_container"),s=o.parent(),r=i(".mCSB_"+t.idx+"_scrollbar .mCSB_draggerContainer");r.bind("touchstart."+n+" pointerdown."+n+" MSPointerDown."+n,function(){h=!0}).bind("touchend."+n+" pointerup."+n+" MSPointerUp."+n,function(){h=!1}).bind("click."+n,function(n){if(i(n.target).hasClass("mCSB_draggerContainer")||i(n.target).hasClass("mCSB_draggerRail")){p._stop(e);var a=i(this),r=a.find(".mCSB_dragger");if(a.parent(".mCSB_scrollTools_horizontal").length>0){if(!t.overflowed[1])return;var l="x",c=n.pageX>r.offset().left?-1:1,d=Math.abs(o[0].offsetLeft)-.9*c*s.width()}else{if(!t.overflowed[0])return;var l="y",c=n.pageY>r.offset().top?-1:1,d=Math.abs(o[0].offsetTop)-.9*c*s.height() -}p._scrollTo(e,d.toString(),{dir:l,scrollEasing:"mcsEaseInOut"})}})},_focus:function(){var e=i(this),n=e.data(a),o=n.opt,s=a+"_"+n.idx,r=i("#mCSB_"+n.idx+"_container"),l=r.parent();r.bind("focusin."+s,function(){var n=i(t.activeElement),a=r.find(".mCustomScrollBox").length,s=0;n.is(o.advanced.autoScrollOnFocus)&&(p._stop(e),clearTimeout(e[0]._focusTimeout),e[0]._focusTimer=a?(s+17)*a:0,e[0]._focusTimeout=setTimeout(function(){var t=[n.offset().top-r.offset().top,n.offset().left-r.offset().left],i=[r[0].offsetTop,r[0].offsetLeft],a=[i[0]+t[0]>=0&&i[0]+t[0]=0&&i[0]+t[1]a");l.bind("mousedown."+s+" touchstart."+s+" pointerdown."+s+" MSPointerDown."+s+" mouseup."+s+" touchend."+s+" pointerup."+s+" MSPointerUp."+s+" mouseout."+s+" pointerout."+s+" MSPointerOut."+s+" click."+s,function(a){function s(t,i){o.scrollAmount=n.snapAmount||n.scrollButtons.scrollAmount,p._sequentialScroll.call(this,e,t,i)}if(a.preventDefault(),p._mouseBtnLeft(a)){var r=i(this).attr("class");switch(o.type=n.scrollButtons.scrollType,a.type){case"mousedown":case"touchstart":case"pointerdown":case"MSPointerDown":if("stepped"===o.type)return;h=!0,t.tweenRunning=!1,s("on",r);break;case"mouseup":case"touchend":case"pointerup":case"MSPointerUp":case"mouseout":case"pointerout":case"MSPointerOut":if("stepped"===o.type)return;h=!1,o.dir&&s("off",r);break;case"click":if("stepped"!==o.type||t.tweenRunning)return;s("on",r)}}})},_keyboard:function(){var e=i(this),n=e.data(a),o=n.opt,s=n.sequential,r=a+"_"+n.idx,l=i("#mCSB_"+n.idx),c=i("#mCSB_"+n.idx+"_container"),d=c.parent(),h="input,textarea,select,datalist,keygen,[contenteditable='true']";l.attr("tabindex","0").bind("blur."+r+" keydown."+r+" keyup."+r,function(a){function r(t,i){s.type=o.keyboard.scrollType,s.scrollAmount=o.snapAmount||o.keyboard.scrollAmount,"stepped"===s.type&&n.tweenRunning||p._sequentialScroll.call(this,e,t,i)}switch(a.type){case"blur":n.tweenRunning&&s.dir&&r("off",null);break;case"keydown":case"keyup":var l=a.keyCode?a.keyCode:a.which,u="on";if("x"!==o.axis&&(38===l||40===l)||"y"!==o.axis&&(37===l||39===l)){if((38===l||40===l)&&!n.overflowed[0]||(37===l||39===l)&&!n.overflowed[1])return;"keyup"===a.type&&(u="off"),i(t.activeElement).is(h)||(a.preventDefault(),a.stopImmediatePropagation(),r(u,l))}else if(33===l||34===l){if((n.overflowed[0]||n.overflowed[1])&&(a.preventDefault(),a.stopImmediatePropagation()),"keyup"===a.type){p._stop(e);var f=34===l?-1:1;if("x"===o.axis||"yx"===o.axis&&n.overflowed[1]&&!n.overflowed[0])var g="x",m=Math.abs(c[0].offsetLeft)-.9*f*d.width();else var g="y",m=Math.abs(c[0].offsetTop)-.9*f*d.height();p._scrollTo(e,m.toString(),{dir:g,scrollEasing:"mcsEaseInOut"})}}else if((35===l||36===l)&&!i(t.activeElement).is(h)&&((n.overflowed[0]||n.overflowed[1])&&(a.preventDefault(),a.stopImmediatePropagation()),"keyup"===a.type)){if("x"===o.axis||"yx"===o.axis&&n.overflowed[1]&&!n.overflowed[0])var g="x",m=35===l?Math.abs(d.width()-c.outerWidth(!1)):0;else var g="y",m=35===l?Math.abs(d.height()-c.outerHeight(!1)):0;p._scrollTo(e,m.toString(),{dir:g,scrollEasing:"mcsEaseInOut"})}}})},_sequentialScroll:function(e,t,n){function o(t){var i="stepped"!==c.type,n=t?i?l.scrollInertia/1.5:l.scrollInertia:1e3/60,a=t?i?7.5:40:2.5,s=[Math.abs(d[0].offsetTop),Math.abs(d[0].offsetLeft)],h=[r.scrollRatio.y>10?10:r.scrollRatio.y,r.scrollRatio.x>10?10:r.scrollRatio.x],u="x"===c.dir[0]?s[1]+c.dir[1]*h[1]*a:s[0]+c.dir[1]*h[0]*a,f="x"===c.dir[0]?s[1]+c.dir[1]*parseInt(c.scrollAmount):s[0]+c.dir[1]*parseInt(c.scrollAmount),g="auto"!==c.scrollAmount?f:u,m=t?i?"mcsLinearOut":"mcsEaseInOut":"mcsLinear",v=t?!0:!1;return t&&17>n&&(g="x"===c.dir[0]?s[1]:s[0]),p._scrollTo(e,g.toString(),{dir:c.dir[0],scrollEasing:m,dur:n,onComplete:v}),t?void(c.dir=!1):(clearTimeout(c.step),void(c.step=setTimeout(function(){o()},n)))}function s(){clearTimeout(c.step),p._stop(e)}var r=e.data(a),l=r.opt,c=r.sequential,d=i("#mCSB_"+r.idx+"_container"),h="stepped"===c.type?!0:!1;switch(t){case"on":if(c.dir=["mCSB_buttonRight"===n||"mCSB_buttonLeft"===n||39===n||37===n?"x":"y","mCSB_buttonUp"===n||"mCSB_buttonLeft"===n||38===n||37===n?-1:1],p._stop(e),p._isNumeric(n)&&"stepped"===c.type)return;o(h);break;case"off":s(),(h||r.tweenRunning&&c.dir)&&o(!0)}},_arr:function(e){var t=i(this).data(a).opt,n=[];return"function"==typeof e&&(e=e()),e instanceof Array?n=e.length>1?[e[0],e[1]]:"x"===t.axis?[null,e[0]]:[e[0],null]:(n[0]=e.y?e.y:e.x||"x"===t.axis?null:e,n[1]=e.x?e.x:e.y||"y"===t.axis?null:e),"function"==typeof n[0]&&(n[0]=n[0]()),"function"==typeof n[1]&&(n[1]=n[1]()),n},_to:function(e,t){if(null!=e&&"undefined"!=typeof e){var n=i(this),o=n.data(a),s=o.opt,r=i("#mCSB_"+o.idx+"_container"),l=r.parent(),c=typeof e;t||(t="x"===s.axis?"x":"y");var d="x"===t?r.outerWidth(!1):r.outerHeight(!1),h="x"===t?r.offset().left:r.offset().top,f="x"===t?r[0].offsetLeft:r[0].offsetTop,g="x"===t?"left":"top";switch(c){case"function":return e();case"object":if(e.nodeType)var m="x"===t?i(e).offset().left:i(e).offset().top;else if(e.jquery){if(!e.length)return;var m="x"===t?e.offset().left:e.offset().top}return m-h;case"string":case"number":if(p._isNumeric.call(null,e))return Math.abs(e);if(-1!==e.indexOf("%"))return Math.abs(d*parseInt(e)/100);if(-1!==e.indexOf("-="))return Math.abs(f-parseInt(e.split("-=")[1]));if(-1!==e.indexOf("+=")){var v=f+parseInt(e.split("+=")[1]);return v>=0?0:Math.abs(v)}if(-1!==e.indexOf("px")&&p._isNumeric.call(null,e.split("px")[0]))return Math.abs(e.split("px")[0]);if("top"===e||"left"===e)return 0;if("bottom"===e)return Math.abs(l.height()-r.outerHeight(!1));if("right"===e)return Math.abs(l.width()-r.outerWidth(!1));if("first"===e||"last"===e){var w=r.find(":"+e),m="x"===t?i(w).offset().left:i(w).offset().top;return m-h}if(i(e).length){var m="x"===t?i(e).offset().left:i(e).offset().top;return m-h}return r.css(g,e),void u.update.call(null,n[0])}}},_autoUpdate:function(e){function t(){clearTimeout(h[0].autoUpdate),h[0].autoUpdate=setTimeout(function(){return d.advanced.updateOnSelectorChange&&(f=s(),f!==b)?(r(),void(b=f)):(d.advanced.updateOnContentResize&&(g=[h.outerHeight(!1),h.outerWidth(!1),v.height(),v.width(),x()[0],x()[1]],(g[0]!==y[0]||g[1]!==y[1]||g[2]!==y[2]||g[3]!==y[3]||g[4]!==y[4]||g[5]!==y[5])&&(r(),y=g)),d.advanced.updateOnImageLoad&&(m=n(),m!==C&&(h.find("img").each(function(){o(this.src)}),C=m)),void((d.advanced.updateOnSelectorChange||d.advanced.updateOnContentResize||d.advanced.updateOnImageLoad)&&t()))},60)}function n(){var e=0;return d.advanced.updateOnImageLoad&&(e=h.find("img").length),e}function o(e){function t(e,t){return function(){return t.apply(e,arguments)}}function i(){this.onload=null,r()}var n=new Image;n.onload=t(n,i),n.src=e}function s(){d.advanced.updateOnSelectorChange===!0&&(d.advanced.updateOnSelectorChange="*");var e=0,t=h.find(d.advanced.updateOnSelectorChange);return d.advanced.updateOnSelectorChange&&t.length>0&&t.each(function(){e+=i(this).height()+i(this).width()}),e}function r(){clearTimeout(h[0].autoUpdate),u.update.call(null,l[0])}var l=i(this),c=l.data(a),d=c.opt,h=i("#mCSB_"+c.idx+"_container");if(e)return clearTimeout(h[0].autoUpdate),void p._delete.call(null,h[0].autoUpdate);var f,g,m,v=h.parent(),w=[i("#mCSB_"+c.idx+"_scrollbar_vertical"),i("#mCSB_"+c.idx+"_scrollbar_horizontal")],x=function(){return[w[0].is(":visible")?w[0].outerHeight(!0):0,w[1].is(":visible")?w[1].outerWidth(!0):0]},b=s(),y=[h.outerHeight(!1),h.outerWidth(!1),v.height(),v.width(),x()[0],x()[1]],C=n();t()},_snapAmount:function(e,t,i){return Math.round(e/t)*t-i},_stop:function(e){var t=e.data(a),n=i("#mCSB_"+t.idx+"_container,#mCSB_"+t.idx+"_container_wrapper,#mCSB_"+t.idx+"_dragger_vertical,#mCSB_"+t.idx+"_dragger_horizontal");n.each(function(){p._stopTween.call(this)})},_scrollTo:function(e,t,n){function o(e){return l&&c.callbacks[e]&&"function"==typeof c.callbacks[e]}function s(){return[c.callbacks.alwaysTriggerOffsets||x>=b[0]+C,c.callbacks.alwaysTriggerOffsets||-S>=x]}function r(){var t=[f[0].offsetTop,f[0].offsetLeft],i=[v[0].offsetTop,v[0].offsetLeft],a=[f.outerHeight(!1),f.outerWidth(!1)],o=[u.height(),u.width()];e[0].mcs={content:f,top:t[0],left:t[1],draggerTop:i[0],draggerLeft:i[1],topPct:Math.round(100*Math.abs(t[0])/(Math.abs(a[0])-o[0])),leftPct:Math.round(100*Math.abs(t[1])/(Math.abs(a[1])-o[1])),direction:n.dir}}var l=e.data(a),c=l.opt,d={trigger:"internal",dir:"y",scrollEasing:"mcsEaseOut",drag:!1,dur:c.scrollInertia,overwrite:"all",callbacks:!0,onStart:!0,onUpdate:!0,onComplete:!0},n=i.extend(d,n),h=[n.dur,n.drag?0:n.dur],u=i("#mCSB_"+l.idx),f=i("#mCSB_"+l.idx+"_container"),g=c.callbacks.onTotalScrollOffset?p._arr.call(e,c.callbacks.onTotalScrollOffset):[0,0],m=c.callbacks.onTotalScrollBackOffset?p._arr.call(e,c.callbacks.onTotalScrollBackOffset):[0,0];if(l.trigger=n.trigger,"_resetY"!==t||l.contentReset.y||(o("onOverflowYNone")&&c.callbacks.onOverflowYNone.call(e[0]),l.contentReset.y=1),"_resetX"!==t||l.contentReset.x||(o("onOverflowXNone")&&c.callbacks.onOverflowXNone.call(e[0]),l.contentReset.x=1),"_resetY"!==t&&"_resetX"!==t){switch(!l.contentReset.y&&e[0].mcs||!l.overflowed[0]||(o("onOverflowY")&&c.callbacks.onOverflowY.call(e[0]),l.contentReset.x=null),!l.contentReset.x&&e[0].mcs||!l.overflowed[1]||(o("onOverflowX")&&c.callbacks.onOverflowX.call(e[0]),l.contentReset.x=null),c.snapAmount&&(t=p._snapAmount(t,c.snapAmount,c.snapOffset)),n.dir){case"x":var v=i("#mCSB_"+l.idx+"_dragger_horizontal"),w="left",x=f[0].offsetLeft,b=[u.width()-f.outerWidth(!1),v.parent().width()-v.width()],y=[t,0===t?0:t/l.scrollRatio.x],C=g[1],S=m[1],_=C>0?C/l.scrollRatio.x:0,T=S>0?S/l.scrollRatio.x:0;break;case"y":var v=i("#mCSB_"+l.idx+"_dragger_vertical"),w="top",x=f[0].offsetTop,b=[u.height()-f.outerHeight(!1),v.parent().height()-v.height()],y=[t,0===t?0:t/l.scrollRatio.y],C=g[0],S=m[0],_=C>0?C/l.scrollRatio.y:0,T=S>0?S/l.scrollRatio.y:0}y[1]<0||0===y[0]&&0===y[1]?y=[0,0]:y[1]>=b[1]?y=[b[0],b[1]]:y[0]=-y[0],e[0].mcs||r(),clearTimeout(f[0].onCompleteTimeout),(l.tweenRunning||!(0===x&&y[0]>=0||x===b[0]&&y[0]<=b[0]))&&(p._tweenTo.call(null,v[0],w,Math.round(y[1]),h[1],n.scrollEasing),p._tweenTo.call(null,f[0],w,Math.round(y[0]),h[0],n.scrollEasing,n.overwrite,{onStart:function(){n.callbacks&&n.onStart&&!l.tweenRunning&&(o("onScrollStart")&&(r(),c.callbacks.onScrollStart.call(e[0])),l.tweenRunning=!0,p._onDragClasses(v),l.cbOffsets=s())},onUpdate:function(){n.callbacks&&n.onUpdate&&o("whileScrolling")&&(r(),c.callbacks.whileScrolling.call(e[0]))},onComplete:function(){if(n.callbacks&&n.onComplete){"yx"===c.axis&&clearTimeout(f[0].onCompleteTimeout);var t=f[0].idleTimer||0;f[0].onCompleteTimeout=setTimeout(function(){o("onScroll")&&(r(),c.callbacks.onScroll.call(e[0])),o("onTotalScroll")&&y[1]>=b[1]-_&&l.cbOffsets[0]&&(r(),c.callbacks.onTotalScroll.call(e[0])),o("onTotalScrollBack")&&y[1]<=T&&l.cbOffsets[1]&&(r(),c.callbacks.onTotalScrollBack.call(e[0])),l.tweenRunning=!1,f[0].idleTimer=0,p._onDragClasses(v,"hide")},t)}}}))}},_tweenTo:function(t,i,n,a,o,s,r){function l(){t._mcsstop||(b||m.call(),b=p._getTime()-x,c(),b>=t._mcstime&&(t._mcstime=b>t._mcstime?b+f-(b-t._mcstime):b+f-1,t._mcstime0?(t._mcscurrVal=u(t._mcstime,y,S,a,o),C[i]=Math.round(t._mcscurrVal)+"px"):C[i]=n+"px",v.call()}function d(){f=1e3/60,t._mcstime=b+f,g=e.requestAnimationFrame?e.requestAnimationFrame:function(e){return c(),setTimeout(e,.01)},t._mcsid=g(l)}function h(){null!=t._mcsid&&(e.requestAnimationFrame?e.cancelAnimationFrame(t._mcsid):clearTimeout(t._mcsid),t._mcsid=null)}function u(e,t,i,n,a){switch(a){case"linear":case"mcsLinear":return i*e/n+t;case"mcsLinearOut":return e/=n,e--,i*Math.sqrt(1-e*e)+t;case"easeInOutSmooth":return e/=n/2,1>e?i/2*e*e+t:(e--,-i/2*(e*(e-2)-1)+t);case"easeInOutStrong":return e/=n/2,1>e?i/2*Math.pow(2,10*(e-1))+t:(e--,i/2*(-Math.pow(2,-10*e)+2)+t);case"easeInOut":case"mcsEaseInOut":return e/=n/2,1>e?i/2*e*e*e+t:(e-=2,i/2*(e*e*e+2)+t);case"easeOutSmooth":return e/=n,e--,-i*(e*e*e*e-1)+t;case"easeOutStrong":return i*(-Math.pow(2,-10*e/n)+1)+t;case"easeOut":case"mcsEaseOut":default:var o=(e/=n)*e,s=o*e;return t+i*(.499999999999997*s*o+-2.5*o*o+5.5*s+-6.5*o+4*e)}}var f,g,r=r||{},m=r.onStart||function(){},v=r.onUpdate||function(){},w=r.onComplete||function(){},x=p._getTime(),b=0,y=t.offsetTop,C=t.style;"left"===i&&(y=t.offsetLeft);var S=n-y;t._mcsstop=0,"none"!==s&&h(),d()},_getTime:function(){return e.performance&&e.performance.now?e.performance.now():e.performance&&e.performance.webkitNow?e.performance.webkitNow():Date.now?Date.now():(new Date).getTime()},_stopTween:function(){var t=this;null!=t._mcsid&&(e.requestAnimationFrame?e.cancelAnimationFrame(t._mcsid):clearTimeout(t._mcsid),t._mcsid=null,t._mcsstop=1)},_delete:function(e){try{delete e}catch(t){e=null}},_mouseBtnLeft:function(e){return!(e.which&&1!==e.which)},_pointerTouch:function(e){var t=e.originalEvent.pointerType;return!(t&&"touch"!==t&&2!==t)},_isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)}};i.fn[n]=function(e){return u[e]?u[e].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof e&&e?void i.error("Method "+e+" does not exist"):u.init.apply(this,arguments)},i[n]=function(e){return u[e]?u[e].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof e&&e?void i.error("Method "+e+" does not exist"):u.init.apply(this,arguments)},i[n].defaults=s,e[n]=!0,i(e).load(function(){i(o)[n]()})})}(window,document),function(e,t,i,n){"use strict";var a=i("html"),o=i(e),s=i(t),r=i.fancybox=function(){r.open.apply(this,arguments)},l=navigator.userAgent.match(/msie/i),c=null,d=t.createTouch!==n,h=function(e){return e&&e.hasOwnProperty&&e instanceof i},u=function(e){return e&&"string"===i.type(e)},p=function(e){return u(e)&&e.indexOf("%")>0},f=function(e){return e&&!(e.style.overflow&&"hidden"===e.style.overflow)&&(e.clientWidth&&e.scrollWidth>e.clientWidth||e.clientHeight&&e.scrollHeight>e.clientHeight)},g=function(e,t){var i=parseInt(e,10)||0;return t&&p(e)&&(i=r.getViewport()[t]/100*i),Math.ceil(i)},m=function(e,t){return g(e,t)+"px"};i.extend(r,{version:"2.1.5",defaults:{padding:15,margin:20,width:800,height:600,minWidth:100,minHeight:100,maxWidth:9999,maxHeight:9999,pixelRatio:1,autoSize:!0,autoHeight:!1,autoWidth:!1,autoResize:!0,autoCenter:!d,fitToView:!0,aspectRatio:!1,topRatio:.5,leftRatio:.5,scrolling:"auto",wrapCSS:"",arrows:!0,closeBtn:!0,closeClick:!1,nextClick:!1,mouseWheel:!0,autoPlay:!1,playSpeed:3e3,preload:3,modal:!1,loop:!0,ajax:{dataType:"html",headers:{"X-fancyBox":!0}},iframe:{scrolling:"auto",preload:!0},swf:{wmode:"transparent",allowfullscreen:"true",allowscriptaccess:"always"},keys:{next:{13:"left",34:"up",39:"left",40:"up"},prev:{8:"right",33:"down",37:"right",38:"down"},close:[27],play:[32],toggle:[70]},direction:{next:"left",prev:"right"},scrollOutside:!0,index:0,type:null,href:null,content:null,title:null,tpl:{wrap:'
      ',image:'',iframe:'",error:'

      The requested content cannot be loaded.
      Please try again later.

      ',closeBtn:'
      ',next:'',prev:''},openEffect:"fade",openSpeed:250,openEasing:"swing",openOpacity:!0,openMethod:"zoomIn",closeEffect:"fade",closeSpeed:250,closeEasing:"swing",closeOpacity:!0,closeMethod:"zoomOut",nextEffect:"elastic",nextSpeed:250,nextEasing:"swing",nextMethod:"changeIn",prevEffect:"elastic",prevSpeed:250,prevEasing:"swing",prevMethod:"changeOut",helpers:{overlay:!0,title:!0},onCancel:i.noop,beforeLoad:i.noop,afterLoad:i.noop,beforeShow:i.noop,afterShow:i.noop,beforeChange:i.noop,beforeClose:i.noop,afterClose:i.noop},group:{},opts:{},previous:null,coming:null,current:null,isActive:!1,isOpen:!1,isOpened:!1,wrap:null,skin:null,outer:null,inner:null,player:{timer:null,isActive:!1},ajaxLoad:null,imgPreload:null,transitions:{},helpers:{},open:function(e,t){return e&&(i.isPlainObject(t)||(t={}),!1!==r.close(!0))?(i.isArray(e)||(e=h(e)?i(e).get():[e]),i.each(e,function(a,o){var s,l,c,d,p,f,g,m={};"object"===i.type(o)&&(o.nodeType&&(o=i(o)),h(o)?(m={href:o.data("fancybox-href")||o.attr("href"),title:o.data("fancybox-title")||o.attr("title"),isDom:!0,element:o},i.metadata&&i.extend(!0,m,o.metadata())):m=o),s=t.href||m.href||(u(o)?o:null),l=t.title!==n?t.title:m.title||"",c=t.content||m.content,d=c?"html":t.type||m.type,!d&&m.isDom&&(d=o.data("fancybox-type"),d||(p=o.prop("class").match(/fancybox\.(\w+)/),d=p?p[1]:null)),u(s)&&(d||(r.isImage(s)?d="image":r.isSWF(s)?d="swf":"#"===s.charAt(0)?d="inline":u(o)&&(d="html",c=o)),"ajax"===d&&(f=s.split(/\s+/,2),s=f.shift(),g=f.shift())),c||("inline"===d?s?c=i(u(s)?s.replace(/.*(?=#[^\s]+$)/,""):s):m.isDom&&(c=o):"html"===d?c=s:d||s||!m.isDom||(d="inline",c=o)),i.extend(m,{href:s,type:d,content:c,title:l,selector:g}),e[a]=m}),r.opts=i.extend(!0,{},r.defaults,t),t.keys!==n&&(r.opts.keys=t.keys?i.extend({},r.defaults.keys,t.keys):!1),r.group=e,r._start(r.opts.index)):void 0},cancel:function(){var e=r.coming;e&&!1!==r.trigger("onCancel")&&(r.hideLoading(),r.ajaxLoad&&r.ajaxLoad.abort(),r.ajaxLoad=null,r.imgPreload&&(r.imgPreload.onload=r.imgPreload.onerror=null),e.wrap&&e.wrap.stop(!0,!0).trigger("onReset").remove(),r.coming=null,r.current||r._afterZoomOut(e))},close:function(e){r.cancel(),!1!==r.trigger("beforeClose")&&(r.unbindEvents(),r.isActive&&(r.isOpen&&e!==!0?(r.isOpen=r.isOpened=!1,r.isClosing=!0,i(".fancybox-item, .fancybox-nav").remove(),r.wrap.stop(!0,!0).removeClass("fancybox-opened"),r.transitions[r.current.closeMethod]()):(i(".fancybox-wrap").stop(!0).trigger("onReset").remove(),r._afterZoomOut())))},play:function(e){var t=function(){clearTimeout(r.player.timer)},i=function(){t(),r.current&&r.player.isActive&&(r.player.timer=setTimeout(r.next,r.current.playSpeed))},n=function(){t(),s.unbind(".player"),r.player.isActive=!1,r.trigger("onPlayEnd")},a=function(){r.current&&(r.current.loop||r.current.index=a.index?"next":"prev"],r.router=i||"jumpto",a.loop&&(0>e&&(e=a.group.length+e%a.group.length),e%=a.group.length),a.group[e]!==n&&(r.cancel(),r._start(e)))},reposition:function(e,t){var n,a=r.current,o=a?a.wrap:null;o&&(n=r._getPosition(t),e&&"scroll"===e.type?(delete n.position,o.stop(!0,!0).animate(n,200)):(o.css(n),a.pos=i.extend({},a.dim,n)))},update:function(e){var t=e&&e.type,i=!t||"orientationchange"===t;i&&(clearTimeout(c),c=null),r.isOpen&&!c&&(c=setTimeout(function(){var n=r.current;n&&!r.isClosing&&(r.wrap.removeClass("fancybox-tmp"),(i||"load"===t||"resize"===t&&n.autoResize)&&r._setDimension(),"scroll"===t&&n.canShrink||r.reposition(e),r.trigger("onUpdate"),c=null)},i&&!d?0:300))},toggle:function(e){r.isOpen&&(r.current.fitToView="boolean"===i.type(e)?e:!r.current.fitToView,d&&(r.wrap.removeAttr("style").addClass("fancybox-tmp"),r.trigger("onUpdate")),r.update())},hideLoading:function(){s.unbind(".loading"),i("#fancybox-loading").remove()},showLoading:function(){var e,t;r.hideLoading(),e=i('
      ').click(r.cancel).appendTo("body"),s.bind("keydown.loading",function(e){27===(e.which||e.keyCode)&&(e.preventDefault(),r.cancel())}),r.defaults.fixed||(t=r.getViewport(),e.css({position:"absolute",top:.5*t.h+t.y,left:.5*t.w+t.x}))},getViewport:function(){var t=r.current&&r.current.locked||!1,i={x:o.scrollLeft(),y:o.scrollTop()};return t?(i.w=t[0].clientWidth,i.h=t[0].clientHeight):(i.w=d&&e.innerWidth?e.innerWidth:o.width(),i.h=d&&e.innerHeight?e.innerHeight:o.height()),i},unbindEvents:function(){r.wrap&&h(r.wrap)&&r.wrap.unbind(".fb"),s.unbind(".fb"),o.unbind(".fb")},bindEvents:function(){var e,t=r.current;t&&(o.bind("orientationchange.fb"+(d?"":" resize.fb")+(t.autoCenter&&!t.locked?" scroll.fb":""),r.update),e=t.keys,e&&s.bind("keydown.fb",function(a){var o=a.which||a.keyCode,s=a.target||a.srcElement;return 27===o&&r.coming?!1:void(a.ctrlKey||a.altKey||a.shiftKey||a.metaKey||s&&(s.type||i(s).is("[contenteditable]"))||i.each(e,function(e,s){return t.group.length>1&&s[o]!==n?(r[e](s[o]),a.preventDefault(),!1):i.inArray(o,s)>-1?(r[e](),a.preventDefault(),!1):void 0}))}),i.fn.mousewheel&&t.mouseWheel&&r.wrap.bind("mousewheel.fb",function(e,n,a,o){for(var s=e.target||null,l=i(s),c=!1;l.length&&!(c||l.is(".fancybox-skin")||l.is(".fancybox-wrap"));)c=f(l[0]),l=i(l).parent();0===n||c||r.group.length>1&&!t.canShrink&&(o>0||a>0?r.prev(o>0?"down":"left"):(0>o||0>a)&&r.next(0>o?"up":"right"),e.preventDefault())}))},trigger:function(e,t){var n,a=t||r.coming||r.current;if(a){if(i.isFunction(a[e])&&(n=a[e].apply(a,Array.prototype.slice.call(arguments,1))),n===!1)return!1;a.helpers&&i.each(a.helpers,function(t,n){n&&r.helpers[t]&&i.isFunction(r.helpers[t][e])&&r.helpers[t][e](i.extend(!0,{},r.helpers[t].defaults,n),a)}),s.trigger(e)}},isImage:function(e){return u(e)&&e.match(/(^data:image\/.*,)|(\.(jp(e|g|eg)|gif|png|bmp|webp|svg)((\?|#).*)?$)/i)},isSWF:function(e){return u(e)&&e.match(/\.(swf)((\?|#).*)?$/i)},_start:function(e){var t,n,a,o,s,l={};if(e=g(e),t=r.group[e]||null,!t)return!1;if(l=i.extend(!0,{},r.opts,t),o=l.margin,s=l.padding,"number"===i.type(o)&&(l.margin=[o,o,o,o]),"number"===i.type(s)&&(l.padding=[s,s,s,s]),l.modal&&i.extend(!0,l,{closeBtn:!1,closeClick:!1,nextClick:!1,arrows:!1,mouseWheel:!1,keys:null,helpers:{overlay:{closeClick:!1}}}),l.autoSize&&(l.autoWidth=l.autoHeight=!0),"auto"===l.width&&(l.autoWidth=!0),"auto"===l.height&&(l.autoHeight=!0),l.group=r.group,l.index=e,r.coming=l,!1===r.trigger("beforeLoad"))return void(r.coming=null);if(a=l.type,n=l.href,!a)return r.coming=null,r.current&&r.router&&"jumpto"!==r.router?(r.current.index=e,r[r.router](r.direction)):!1;if(r.isActive=!0,("image"===a||"swf"===a)&&(l.autoHeight=l.autoWidth=!1,l.scrolling="visible"),"image"===a&&(l.aspectRatio=!0),"iframe"===a&&d&&(l.scrolling="scroll"),l.wrap=i(l.tpl.wrap).addClass("fancybox-"+(d?"mobile":"desktop")+" fancybox-type-"+a+" fancybox-tmp "+l.wrapCSS).appendTo(l.parent||"body"),i.extend(l,{skin:i(".fancybox-skin",l.wrap),outer:i(".fancybox-outer",l.wrap),inner:i(".fancybox-inner",l.wrap)}),i.each(["Top","Right","Bottom","Left"],function(e,t){l.skin.css("padding"+t,m(l.padding[e]))}),r.trigger("onReady"),"inline"===a||"html"===a){if(!l.content||!l.content.length)return r._error("content")}else if(!n)return r._error("href");"image"===a?r._loadImage():"ajax"===a?r._loadAjax():"iframe"===a?r._loadIframe():r._afterLoad()},_error:function(e){i.extend(r.coming,{type:"html",autoWidth:!0,autoHeight:!0,minWidth:0,minHeight:0,scrolling:"no",hasError:e,content:r.coming.tpl.error}),r._afterLoad()},_loadImage:function(){var e=r.imgPreload=new Image;e.onload=function(){this.onload=this.onerror=null,r.coming.width=this.width/r.opts.pixelRatio,r.coming.height=this.height/r.opts.pixelRatio,r._afterLoad()},e.onerror=function(){this.onload=this.onerror=null,r._error("image")},e.src=r.coming.href,e.complete!==!0&&r.showLoading()},_loadAjax:function(){var e=r.coming;r.showLoading(),r.ajaxLoad=i.ajax(i.extend({},e.ajax,{url:e.href,error:function(e,t){r.coming&&"abort"!==t?r._error("ajax",e):r.hideLoading()},success:function(t,i){"success"===i&&(e.content=t,r._afterLoad())}}))},_loadIframe:function(){var e=r.coming,t=i(e.tpl.iframe.replace(/\{rnd\}/g,(new Date).getTime())).attr("scrolling",d?"auto":e.iframe.scrolling).attr("src",e.href);i(e.wrap).bind("onReset",function(){try{i(this).find("iframe").hide().attr("src","//about:blank").end().empty()}catch(e){}}),e.iframe.preload&&(r.showLoading(),t.one("load",function(){i(this).data("ready",1),d||i(this).bind("load.fb",r.update),i(this).parents(".fancybox-wrap").width("100%").removeClass("fancybox-tmp").show(),r._afterLoad()})),e.content=t.appendTo(e.inner),e.iframe.preload||r._afterLoad()},_preloadImages:function(){var e,t,i=r.group,n=r.current,a=i.length,o=n.preload?Math.min(n.preload,a-1):0;for(t=1;o>=t;t+=1)e=i[(n.index+t)%a],"image"===e.type&&e.href&&((new Image).src=e.href)},_afterLoad:function(){var e,t,n,a,o,s,l=r.coming,c=r.current,d="fancybox-placeholder";if(r.hideLoading(),l&&r.isActive!==!1){if(!1===r.trigger("afterLoad",l,c))return l.wrap.stop(!0).trigger("onReset").remove(),void(r.coming=null);switch(c&&(r.trigger("beforeChange",c),c.wrap.stop(!0).removeClass("fancybox-opened").find(".fancybox-item, .fancybox-nav").remove()),r.unbindEvents(),e=l,t=l.content,n=l.type,a=l.scrolling,i.extend(r,{wrap:e.wrap,skin:e.skin,outer:e.outer,inner:e.inner,current:e,previous:c}),o=e.href,n){case"inline":case"ajax":case"html":e.selector?t=i("
      ").html(t).find(e.selector):h(t)&&(t.data(d)||t.data(d,i('
      ').insertAfter(t).hide()),t=t.show().detach(),e.wrap.bind("onReset",function(){i(this).find(t).length&&t.hide().replaceAll(t.data(d)).data(d,!1)}));break;case"image":t=e.tpl.image.replace("{href}",o);break;case"swf":t='',s="",i.each(e.swf,function(e,i){t+='',s+=" "+e+'="'+i+'"'}),t+='"}h(t)&&t.parent().is(e.inner)||e.inner.append(t),r.trigger("beforeShow"),e.inner.css("overflow","yes"===a?"scroll":"no"===a?"hidden":a),r._setDimension(),r.reposition(),r.isOpen=!1,r.coming=null,r.bindEvents(),r.isOpened?c.prevMethod&&r.transitions[c.prevMethod]():i(".fancybox-wrap").not(e.wrap).stop(!0).trigger("onReset").remove(),r.transitions[r.isOpened?e.nextMethod:e.openMethod](),r._preloadImages()}},_setDimension:function(){var e,t,n,a,o,s,l,c,d,h,u,f,v,w,x,b=r.getViewport(),y=0,C=!1,S=!1,_=r.wrap,T=r.skin,k=r.inner,E=r.current,M=E.width,P=E.height,I=E.minWidth,L=E.minHeight,O=E.maxWidth,B=E.maxHeight,A=E.scrolling,D=E.scrollOutside?E.scrollbarWidth:0,R=E.margin,W=g(R[1]+R[3]),H=g(R[0]+R[2]);if(_.add(T).add(k).width("auto").height("auto").removeClass("fancybox-tmp"),e=g(T.outerWidth(!0)-T.width()),t=g(T.outerHeight(!0)-T.height()),n=W+e,a=H+t,o=p(M)?(b.w-n)*g(M)/100:M,s=p(P)?(b.h-a)*g(P)/100:P,"iframe"===E.type){if(w=E.content,E.autoHeight&&1===w.data("ready"))try{w[0].contentWindow.document.location&&(k.width(o).height(9999),x=w.contents().find("body"),D&&x.css("overflow-x","hidden"),s=x.outerHeight(!0))}catch(z){}}else(E.autoWidth||E.autoHeight)&&(k.addClass("fancybox-tmp"),E.autoWidth||k.width(o),E.autoHeight||k.height(s),E.autoWidth&&(o=k.width()),E.autoHeight&&(s=k.height()),k.removeClass("fancybox-tmp"));if(M=g(o),P=g(s),d=o/s,I=g(p(I)?g(I,"w")-n:I),O=g(p(O)?g(O,"w")-n:O),L=g(p(L)?g(L,"h")-a:L),B=g(p(B)?g(B,"h")-a:B),l=O,c=B,E.fitToView&&(O=Math.min(b.w-n,O),B=Math.min(b.h-a,B)),f=b.w-W,v=b.h-H,E.aspectRatio?(M>O&&(M=O,P=g(M/d)),P>B&&(P=B,M=g(P*d)),I>M&&(M=I,P=g(M/d)),L>P&&(P=L,M=g(P*d))):(M=Math.max(I,Math.min(M,O)),E.autoHeight&&"iframe"!==E.type&&(k.width(M),P=k.height()),P=Math.max(L,Math.min(P,B))),E.fitToView)if(k.width(M).height(P),_.width(M+e),h=_.width(),u=_.height(),E.aspectRatio)for(;(h>f||u>v)&&M>I&&P>L&&!(y++>19);)P=Math.max(L,Math.min(B,P-10)),M=g(P*d),I>M&&(M=I,P=g(M/d)),M>O&&(M=O,P=g(M/d)),k.width(M).height(P),_.width(M+e),h=_.width(),u=_.height();else M=Math.max(I,Math.min(M,M-(h-f))),P=Math.max(L,Math.min(P,P-(u-v)));D&&"auto"===A&&s>P&&f>M+e+D&&(M+=D),k.width(M).height(P),_.width(M+e),h=_.width(),u=_.height(),C=(h>f||u>v)&&M>I&&P>L,S=E.aspectRatio?l>M&&c>P&&o>M&&s>P:(l>M||c>P)&&(o>M||s>P),i.extend(E,{dim:{width:m(h),height:m(u)},origWidth:o,origHeight:s,canShrink:C,canExpand:S,wPadding:e,hPadding:t,wrapSpace:u-T.outerHeight(!0),skinSpace:T.height()-P}),!w&&E.autoHeight&&P>L&&B>P&&!S&&k.height("auto")},_getPosition:function(e){var t=r.current,i=r.getViewport(),n=t.margin,a=r.wrap.width()+n[1]+n[3],o=r.wrap.height()+n[0]+n[2],s={position:"absolute",top:n[0],left:n[3]};return t.autoCenter&&t.fixed&&!e&&o<=i.h&&a<=i.w?s.position="fixed":t.locked||(s.top+=i.y,s.left+=i.x),s.top=m(Math.max(s.top,s.top+(i.h-o)*t.topRatio)),s.left=m(Math.max(s.left,s.left+(i.w-a)*t.leftRatio)),s},_afterZoomIn:function(){var e=r.current;e&&(r.isOpen=r.isOpened=!0,r.wrap.css("overflow","visible").addClass("fancybox-opened"),r.update(),(e.closeClick||e.nextClick&&r.group.length>1)&&r.inner.css("cursor","pointer").bind("click.fb",function(t){i(t.target).is("a")||i(t.target).parent().is("a")||(t.preventDefault(),r[e.closeClick?"close":"next"]())}),e.closeBtn&&i(e.tpl.closeBtn).appendTo(r.skin).bind("click.fb",function(e){e.preventDefault(),r.close()}),e.arrows&&r.group.length>1&&((e.loop||e.index>0)&&i(e.tpl.prev).appendTo(r.outer).bind("click.fb",r.prev),(e.loop||e.index
      ').appendTo(r.coming?r.coming.parent:e.parent),this.fixed=!1,e.fixed&&r.defaults.fixed&&(this.overlay.addClass("fancybox-overlay-fixed"),this.fixed=!0)},open:function(e){var t=this;e=i.extend({},this.defaults,e),this.overlay?this.overlay.unbind(".overlay").width("auto").height("auto"):this.create(e),this.fixed||(o.bind("resize.overlay",i.proxy(this.update,this)),this.update()),e.closeClick&&this.overlay.bind("click.overlay",function(e){return i(e.target).hasClass("fancybox-overlay")?(r.isActive?r.close():t.close(),!1):void 0}),this.overlay.css(e.css).show()},close:function(){var e,t;o.unbind("resize.overlay"),this.el.hasClass("fancybox-lock")&&(i(".fancybox-margin").removeClass("fancybox-margin"),e=o.scrollTop(),t=o.scrollLeft(),this.el.removeClass("fancybox-lock"),o.scrollTop(e).scrollLeft(t)),i(".fancybox-overlay").remove().hide(),i.extend(this,{overlay:null,fixed:!1})},update:function(){var e,i="100%";this.overlay.width(i).height("100%"),l?(e=Math.max(t.documentElement.offsetWidth,t.body.offsetWidth),s.width()>e&&(i=s.width())):s.width()>o.width()&&(i=s.width()),this.overlay.width(i).height(s.height())},onReady:function(e,t){var n=this.overlay;i(".fancybox-overlay").stop(!0,!0),n||this.create(e),e.locked&&this.fixed&&t.fixed&&(n||(this.margin=s.height()>o.height()?i("html").css("margin-right").replace("px",""):!1),t.locked=this.overlay.append(t.wrap),t.fixed=!1),e.showEarly===!0&&this.beforeShow.apply(this,arguments)},beforeShow:function(e,t){var n,a;t.locked&&(this.margin!==!1&&(i("*").filter(function(){return"fixed"===i(this).css("position")&&!i(this).hasClass("fancybox-overlay")&&!i(this).hasClass("fancybox-wrap")}).addClass("fancybox-margin"),this.el.addClass("fancybox-margin")),n=o.scrollTop(),a=o.scrollLeft(),this.el.addClass("fancybox-lock"),o.scrollTop(n).scrollLeft(a)),this.open(e)},onUpdate:function(){this.fixed||this.update()},afterClose:function(e){this.overlay&&!r.coming&&this.overlay.fadeOut(e.speedOut,i.proxy(this.close,this))}},r.helpers.title={defaults:{type:"float",position:"bottom"},beforeShow:function(e){var t,n,a=r.current,o=a.title,s=e.type;if(i.isFunction(o)&&(o=o.call(a.element,a)),u(o)&&""!==i.trim(o)){switch(t=i('
      '+o+"
      "),s){case"inside":n=r.skin;break;case"outside":n=r.wrap;break;case"over":n=r.inner;break;default:n=r.skin,t.appendTo("body"),l&&t.width(t.width()),t.wrapInner(''),r.current.margin[2]+=Math.abs(g(t.css("margin-bottom")))}t["top"===e.position?"prependTo":"appendTo"](n)}}},i.fn.fancybox=function(e){var t,n=i(this),a=this.selector||"",o=function(o){var s,l,c=i(this).blur(),d=t;o.ctrlKey||o.altKey||o.shiftKey||o.metaKey||c.is(".fancybox-wrap")||(s=e.groupAttr||"data-fancybox-group",l=c.attr(s),l||(s="rel",l=c.get(0)[s]),l&&""!==l&&"nofollow"!==l&&(c=a.length?i(a):n,c=c.filter("["+s+'="'+l+'"]'),d=c.index(this)),e.index=d,r.open(c,e)!==!1&&o.preventDefault())};return e=e||{},t=e.index||0,a&&e.live!==!1?s.undelegate(a,"click.fb-start").delegate(a+":not('.fancybox-item, .fancybox-nav')","click.fb-start",o):n.unbind("click.fb-start").bind("click.fb-start",o),this.filter("[data-fancybox-start=1]").trigger("click"),this},s.ready(function(){var t,o;i.scrollbarWidth===n&&(i.scrollbarWidth=function(){var e=i('
      ').appendTo("body"),t=e.children(),n=t.innerWidth()-t.height(99).innerWidth();return e.remove(),n}),i.support.fixedPosition===n&&(i.support.fixedPosition=function(){var e=i('
      ').appendTo("body"),t=20===e[0].offsetTop||15===e[0].offsetTop;return e.remove(),t}()),i.extend(r.defaults,{scrollbarWidth:i.scrollbarWidth(),fixed:i.support.fixedPosition,parent:i("body")}),t=i(e).width(),a.addClass("fancybox-lock-test"),o=i(e).width(),a.removeClass("fancybox-lock-test"),i("").appendTo("head")})}(window,document,jQuery),function(e,t,i){function n(e){var t={},n=/^jQuery\d+$/;return i.each(e.attributes,function(e,i){i.specified&&!n.test(i.name)&&(t[i.name]=i.value)}),t}function a(e,t){var n=this,a=i(n);if(n.value==a.attr("placeholder")&&a.hasClass("placeholder"))if(a.data("placeholder-password")){if(a=a.hide().next().show().attr("id",a.removeAttr("id").data("placeholder-id")),e===!0)return a[0].value=t;a.focus()}else n.value="",a.removeClass("placeholder"),n==s()&&n.select()}function o(){var e,t=this,o=i(t),s=this.id;if(""==t.value){if("password"==t.type){if(!o.data("placeholder-textinput")){try{e=o.clone().attr({type:"text"})}catch(r){e=i("").attr(i.extend(n(this),{type:"text"}))}e.removeAttr("name").data({"placeholder-password":o,"placeholder-id":s}).bind("focus.placeholder",a),o.data({"placeholder-textinput":e,"placeholder-id":s}).before(e)}o=o.removeAttr("id").hide().prev().attr("id",s).show()}o.addClass("placeholder"),o[0].value=o.attr("placeholder")}else o.removeClass("placeholder")}function s(){try{return t.activeElement}catch(e){}}var r,l,c="placeholder"in t.createElement("input"),d="placeholder"in t.createElement("textarea"),h=i.fn,u=i.valHooks,p=i.propHooks;c&&d?(l=h.placeholder=function(){return this},l.input=l.textarea=!0):(l=h.placeholder=function(){var e=this;return e.filter((c?"textarea":":input")+"[placeholder]").not(".placeholder").bind({"focus.placeholder":a,"blur.placeholder":o}).data("placeholder-enabled",!0).trigger("blur.placeholder"),e},l.input=c,l.textarea=d,r={get:function(e){var t=i(e),n=t.data("placeholder-password");return n?n[0].value:t.data("placeholder-enabled")&&t.hasClass("placeholder")?"":e.value},set:function(e,t){var n=i(e),r=n.data("placeholder-password");return r?r[0].value=t:n.data("placeholder-enabled")?(""==t?(e.value=t,e!=s()&&o.call(e)):n.hasClass("placeholder")?a.call(e,!0,t)||(e.value=t):e.value=t,n):e.value=t}},c||(u.input=r,p.value=r),d||(u.textarea=r,p.value=r),i(function(){i(t).delegate("form","submit.placeholder",function(){var e=i(".placeholder",this).each(a);setTimeout(function(){e.each(o)},10)})}),i(e).bind("beforeunload.placeholder",function(){i(".placeholder").each(function(){this.value=""})}))}(this,document,jQuery),function(){var e,t;jQuery.uaMatch=function(e){e=e.toLowerCase();var t=/(chrome)[ \/]([\w.]+)/.exec(e)||/(webkit)[ \/]([\w.]+)/.exec(e)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(e)||/(msie) ([\w.]+)/.exec(e)||e.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(e)||[];return{browser:t[1]||"",version:t[2]||"0"}},e=jQuery.uaMatch(navigator.userAgent),t={},e.browser&&(t[e.browser]=!0,t.version=e.version),t.chrome?t.webkit=!0:t.webkit&&(t.safari=!0),jQuery.browser=t,jQuery.sub=function(){function e(t,i){return new e.fn.init(t,i)}jQuery.extend(!0,e,this),e.superclass=this,e.fn=e.prototype=this(),e.fn.constructor=e,e.sub=this.sub,e.fn.init=function(i,n){return n&&n instanceof jQuery&&!(n instanceof e)&&(n=e(n)),jQuery.fn.init.call(this,i,n,t)},e.fn.init.prototype=e.fn;var t=e(document);return e}}(),function(e){e.fn.photoTag=function(t){function i(e){e.parent().css({overflow:"visible"}),e.parent().find(".utag-bot, .utag-top, .utag-right, .utag-left").show(),e.parent().find(".utag-bot").css({top:e.parent().css("height")}),e.parent().find(".utag-right").css({height:e.parent().css("height"),left:e.parent().css("width")}),e.parent().find(".utag-left").css({height:e.parent().css("height")}),e.parent().stop().animate({opacity:1},500)}function n(e){e.parent().stop().animate({opacity:0},500,function(){e.parent().css({overflow:"hidden"})}),e.parent().find(".utag-bot, .utag-top, .utag-right, .utag-left").hide()}function a(e){e.css({overflow:"visible"}),e.find(".utag-bot, .utag-top, .utag-right, .utag-left").show(),e.find(".utag-bot").css({top:e.css("height")}),e.find(".utag-right").css({height:e.css("height"),left:e.css("width")}),e.find(".utag-left").css({height:e.css("height")}),e.stop().animate({opacity:1},500)}function o(e){e.stop().animate({opacity:0},500,function(){e.css({overflow:"hidden"})}),e.find(".utag-bot, .utag-top, .utag-right, .utag-left").hide()}function s(){e(".highlight-tag").each(function(){e(this).mouseenter(function(){a(e("#photoTag-tag_"+e(this).attr("tag-id")))}).mouseleave(function(){o(e("#photoTag-tag_"+e(this).attr("tag-id")))})})}var r={deleteTagsUrl:"/photo/delete-tag/",addTagUrl:"/add-tag.php",parametersForNewTag:{name:{parameterKey:"name",isAutocomplete:!0,label:"Name"}},parametersForRequest:["image-id","album-id"],literals:{communicationProblem:"Произошла ошибка. Изменения не сохранены.",saveTag:"Добавить",cancelTag:"",addNewTag:"Отметить человека",removeTag:"X"},tag:{tagIdParameter:"tag-id",defaultWidth:100,defaultHeight:100,isResizable:!0,minWidth:50,minHeight:50,maxWidth:150,maxHeight:150,cssClass:"photoTag-tag",idPrefix:"photoTag-tag_",showDeleteLinkOnTag:!0,deleteLinkCssClass:"photoTag-delete",deleteLinkIdPrefix:"photoTag-delete_",flashAfterCreation:!0,newTagFormWidth:170,newTagFormClass:"photoTag-newTagForm"},imageWrapBox:{cssClass:"photoTag-wrap",idPrefix:"photoTag-wrap_",addNewLinkIdPrefix:"photoTag-add_",controlPaneIdPrefix:"photoTag-cpanel_",showTagList:!0,tagListCssClass:"photoTag-taglist",tagListIdPrefix:"photoTag-taglist_",tagListRemoveItemIdPrefix:"photoTag-removeTag",canvasIdPrefix:"photoTag-canvas_",controlPanelHeight:25},showAddTagLinks:!0,externalAddTagLinks:{bind:!0,selector:".addTag"},isEnabledToEditTags:!0,manageError:"internal function, user can bind a new one. function(response)",beforeTagRequest:"bind by user, function( parameters )"},l={tags:{}},t=e.extend(!0,r,t),c=function(i){var n={};return e.each(t.parametersForRequest,function(e,t){var a=i.attr("data-"+t);a&&(n[t]=a)}),n},d=function(i){e.isFunction(t.manageError)?t.manageError(i):alert(i.message?i.message:t.literals.communicationProblem)},h=function(a,o){a.click(function(s){s.preventDefault();var r=a.attr("href").substring(1),l=c(o);l[t.tag.tagIdParameter]=r,e.getJSON(t.deleteTagsUrl,l,function(e){e.result||d(e)}),e("#"+t.tag.deleteLinkIdPrefix+r).parents().eq(1).remove(),e("#"+t.imageWrapBox.tagListRemoveItemIdPrefix+r).parent().remove();var h=e("span.comma"),u=e("a.highlight-tag");return e("ul.photoTag-taglist li").last().find(h).remove(),e("ul.photoTag-taglist li").last().find(u).mouseover(function(){i(e("#photoTag-tag_"+e(this).attr("tag-id")).find(".taghover"))}).mouseleave(function(){n(e("#photoTag-tag_"+e(this).attr("tag-id")).find(".taghover"))}),!1})},u=function(i,n,a){e(i).click(function(i){i.preventDefault(),0==e("#"+t.tag.idPrefix+"expo").length&&(S(a),e("#"+t.imageWrapBox.idPrefix+a).append(C(n)),m(e("#"+t.tag.idPrefix+"expo"),n,a))})},p=function(){var t=(e(this),e(this).position()),i=t.left,n=t.top;e("#expoTagBoxForm")&&e("#expoTagBoxForm").css({top:n,left:i+e(this).width()+10}),e("#photoTag-tag_expo .utag-right").css({height:e(this).height(),left:e(this).width()}),e("#photoTag-tag_expo .utag-left").css({height:e(this).height()}),e("#photoTag-tag_expo .utag-bot").css({top:e(this).height()})},f=function(){e("#expoTagBoxForm")&&e("#expoTagBoxForm").css({display:"none"})},g=function(){var t=(e(this),e(this).position()),i=t.left,n=t.top;e("#expoTagBoxForm")&&e("#expoTagBoxForm").css({display:"block",top:n,left:i+e(this).width()+10})},m=function(i,n,a){i.draggable({containment:n,cursor:"move",drag:p,start:f,stop:g,grid:[1,1]}),i.resizable({handles:"n, e, s, w, ne, se, sw, nw",maxHeight:n.height(),maxWidth:n.width(),minHeight:t.tag.minHeight,minWidth:t.tag.minWidth,containment:n,resize:p}),v(i,n,a),e(".utag-bot").css({top:t.tag.defaultWidth}),e(".utag-right").css({height:t.tag.defaultHeight,left:t.tag.defaultWidth}),e(".utag-left").css({height:t.tag.defaultHeight})},v=function(i,n,a){var o=e(''),r=e('
      '),l=e(i).position();r.css({position:"absolute",top:l.top,left:l.left+i.width()+10,width:t.tag.newTagFormWidth}),r.append(e('
      '));var c=e("#"+t.imageWrapBox.idPrefix+a);c.append(r),e("#expoNewTagFormContent").append(o),e.each(t.parametersForNewTag,function(t,i){var n=e('
      ');if(i.label){{var a=e("");e("
      ")}a.append(i.label),e("#expoNewTagForm").append(a)}e("#expoNewTagForm").append(n),e("#expoInput_name").bind("keydown",function(t){t.keyCode===e.ui.keyCode.TAB&&e(this).data("ui-autocomplete").menu.active&&t.preventDefault()}).autocomplete({appendTo:e(".ptListHolder"),minLength:1,source:function(t,i){var n=e.ui.autocomplete.escapeRegex(t.term),a=new RegExp("^"+n,"i"),o=e.grep(photoTagData,function(e){return a.test(e.label||e.value||e)}),s=new RegExp(n,"i"),r=e.grep(photoTagData,function(t){return e.inArray(t,o)<0&&s.test(t.label||t.value||t)});i(o.concat(r))},focus:function(){return!1},select:function(t,i){e("#hidden_expoInput_name").val(i.item.id)}}),e("#expoInput_name").parent().append(e(''))});var h=e('");e("#expoNewTagForm").append(h);var u=e("");e("#expoNewTagForm").append(u);var p=e('');p.click(function(e){return e.preventDefault(),w(),_(a),!1}),e("#expoNewTagForm").append(p),e("#expoNewTagForm").submit(function(i){i.preventDefault();var o=e("#"+t.tag.idPrefix+"expo"),r={left:o.position().left,top:o.position().top,width:o.width(),height:o.height()};e.getJSON(t.addTagUrl+"?"+e.param(r)+"&"+e(this).serialize(),function(i){if(void 0!=i.result&&!i.result)return void d(i);var o=b(i.tag,n);e("#"+t.imageWrapBox.idPrefix+a).append(o),s(),E(o,i.tag,n,a)}),w(),_(a)})},w=function(){e("#"+t.tag.idPrefix+"expo").remove(),e("#expoTagBoxForm").remove()},x=function(i,n,a,o){var s=e('
      '),r={position:"absolute",top:Math.round(a.top)+"px",left:Math.round(a.left)+"px",height:n.height+"px",width:n.width+"px",opacity:o};return s.css(r),s.append(' 
      '),s},b=function(i,n){i.height&&i.width||(i.height=t.tag.defaultHeight,i.width=t.tag.defaultWidth);var a={width:i.width,height:i.height},o={top:i.top,left:i.left},s=x(i.id,a,o,0),r=e("
      ");if(r.append(i.text.replace(/ /g," ")),s.append(r),t.isEnabledToEditTags&&i.isDeleteEnable&&t.tag.showDeleteLinkOnTag){var l=e('');h(l,n)}return s.find(".taghover").append(l),s},y=function(a,o){e(".photoTag-taglist").html().length>0&&e(".photoTag-taglist li").last().append(', ');var s=e("
    • ");if(a.url){var r=e(''+a.text+"");s.append(r)}else s.append(a.text);if(a.isDeleteEnable){var l=e('  ');h(l,o),s.append(l)}var c=e("a.highlight-tag");return e("ul.photoTag-taglist li").last().find(c).mouseover(function(){i(e("#photoTag-tag_"+e(this).attr("tag-id")).find(".taghover"))}).mouseleave(function(){n(e("#photoTag-tag_"+e(this).attr("tag-id")).find(".taghover"))}),s},C=function(e){var i={width:t.tag.defaultWidth,height:t.tag.defaultHeight},n={top:e.height()/2-i.height/2,left:e.width()/2-i.width/2};l.expoId++;var a=x("expo",i,n,1);return a},S=function(t){e.each(l.tags[t],function(){e(this).css({opacity:0}),e(this).hide()})},_=function(t){e.each(l.tags[t],function(){e(this).show()})},T=function(i,n){var a=e(''+t.literals.addNewTag+"");return u(a,i,n),a},k=function(i,n){var a=i.height(),o=i.width(),s=e('
      '),r=e('
      ');s.append(r);var l=e('
      ');if(s.append(l),i.wrap(s),t.externalAddTagLinks.bind){var c=e(t.externalAddTagLinks.selector);c.each(function(){u(this,i,n)})}else e("#"+t.imageWrapBox.controlPaneIdPrefix+n).append(T(i,n));var d=e("
      ");if(e("#"+t.imageWrapBox.canvasIdPrefix+n).wrap(d),t.imageWrapBox.showTagList){var h=e('
        ');e(".pg-photo-descr#imgid"+n).append(h)}},E=function(a,o,s,r){if(t.tag.flashAfterCreation&&(e(a).css({opacity:1}),e(a).stop().animate({opacity:0},800)),t.imageWrapBox.showTagList){var l=y(o,s);e("#"+t.imageWrapBox.tagListIdPrefix+r).append(l);var c=e("a.highlight-tag");e("ul.photoTag-taglist li").last().find(c).mouseover(function(){i(e("#photoTag-tag_"+e(this).attr("tag-id")).find(".taghover"))}).mouseleave(function(){n(e("#photoTag-tag_"+e(this).attr("tag-id")).find(".taghover"))})}},M=function(i,n){k(n,i.id);var a=l.tags[i.id]={};e.each(i.Tags,function(){var o=b(this,n);a[this.id]=o,e("#"+t.imageWrapBox.idPrefix+i.id).append(o),s(),E(o,this,n,i.id)})};return this.each(function(){var i=e(this),n=c(i);(!e.isFunction(t.beforeTagRequest)||t.beforeTagRequest(n))&&e.getJSON(t.requestTagsUrl,n,function(n){return void 0==n.result||n.result?(n.options&&(t=e.extend(!0,t,n.options)),void e.each(n.Image,function(){M(this,i)})):void d(n)})}),this}}(jQuery);var dna={clone:function(e,t,i){var n={fade:!1,top:!1,container:null,empty:!1,html:!1,callback:null};$.extend(n,i);var a=dna.store.getTemplate(e);a.nested&&!n.container&&dna.core.berserk("Container missing for nested template: "+e),n.empty&&dna.empty(e);for(var o=t instanceof Array?t:[t],s=$(),r=0;r0&&i(window,e.split(".")),n}},dna.ui={toElem:function(e,t){return e instanceof jQuery?e:$(e?e.target:t)},deleteElem:function(e){return dna.ui.toElem(e,this).remove()},slideFade:function(e,t,i){function n(){e.css(r)}var a={opacity:0,transition:"opacity 0s ease 0s"},o={opacity:1,transition:"opacity 0.4s ease-in"},s={opacity:0,transition:"opacity 0.4s ease-out"},r={transition:"opacity 0s ease 0s"};return window.setTimeout(n,1e3),i?e.css(a).hide().slideDown({complete:t}).css(o):e.css(s).slideUp({complete:t}),e},slideFadeIn:function(e,t){return dna.ui.slideFade(e,t,!0)},slideFadeOut:function(e,t){return dna.ui.slideFade(e,t,!1)},slideFadeToggle:function(e,t){return dna.ui.slideFade(e,t,e.is(":hidden"))},slideFadeDelete:function(e){return dna.ui.slideFadeOut(e,dna.ui.deleteElem)},slidingFlasher:function(e,t){return e.is(":hidden")?dna.ui.slideFadeIn(e,t):e.hide().fadeIn()}},dna.compile={regexDnaField:/^[\s]*(~~|\{\{).*(~~|\}\})[\s]*$/,regexDnaBasePair:/~~|{{|}}/,regexDnaBasePairs:/~~|\{\{|\}\}/g,setupNucleotide:function(e){return void 0===e.data().dnaRules&&(e.data().dnaRules={}),e.addClass("dna-nucleotide")},isDnaField:function(){var e=$(this)[0].childNodes[0];return e&&e.nodeValue&&e.nodeValue.match(dna.compile.regexDnaField)},field:function(){var e=dna.compile.setupNucleotide($(this));return e.data().dnaRules.text=$.trim(e.text()).replace(dna.compile.regexDnaBasePairs,""),e.empty()},propsAndAttrs:function(){function e(){if(/^data-dna-prop-/.test(this.name))i.push(this.name.replace(/^data-dna-prop-/,""),this.value.replace(dna.compile.regexDnaBasePairs,""));else{if(3!==this.value.split(dna.compile.regexDnaBasePair).length)return;n.push(this.name.replace(/^data-dna-attr-/,""),this.value.split(dna.compile.regexDnaBasePair))}a.push(this.name)}var t=$(this),i=[],n=[],a=[];return $.each(t.get(0).attributes,e),i.length>0&&(dna.compile.setupNucleotide(t).data().dnaRules.props=i),n.length>0&&(dna.compile.setupNucleotide(t).data().dnaRules.attrs=n),t.removeAttr(a.join(" "))},getDataField:function(e,t){return $.trim(e.data("dna-"+t).replace(dna.compile.regexDnaBasePairs,""))},subTemplateName:function(e,t){var i=e instanceof jQuery?dna.getClone(e).data().dnaRules.template:e;return i+"-"+t+"-instance"},rules:function(e,t,i){function n(){var e=dna.compile.setupNucleotide($(this)),n=dna.compile.getDataField(e,t);e.data().dnaRules[t]=i?n.split(","):n}return e.filter("[data-dna-"+t+"]").each(n).removeAttr("data-dna-"+t)},template:function(e){function t(){$(this).data().dnaRules={template:$(this).attr("id")}}var i=$("#"+e);i.length||dna.core.berserk("Template not found: "+e),i.find(".dna-template").addBack().each(t).removeAttr("id");var n=i.find("*").addBack();return n.filter(dna.compile.isDnaField).each(dna.compile.field),dna.compile.rules(n,"array").addClass("dna-array"),dna.compile.rules(n,"class",!0),dna.compile.rules(n,"require"),dna.compile.rules(n,"missing"),dna.compile.rules(n,"truthy"),dna.compile.rules(n,"falsey"),n.each(dna.compile.propsAndAttrs),dna.store.stash(i)}},dna.store={templates:{},stash:function(e){function t(){var e=$(this),t=e.data().dnaRules.template,i={name:t,elem:e,container:e.parent().addClass("dna-container").addClass("dna-contains-"+t),nested:0!==e.parent().closest(".dna-clone").length,index:e.index(),clones:0};dna.store.templates[t]=i,e.removeClass("dna-template").addClass("dna-clone").addClass(t).detach()}function i(){var e=$(this),t=e.data().dnaRules.array,i=dna.compile.subTemplateName(n,t);dna.compile.setupNucleotide(e.parent()).data().dnaRules.loop={name:i,field:t},e.data().dnaRules.template=i}var n=e.data().dnaRules.template;return e.find(".dna-template").addBack().each(t),e.find(".dna-array").each(i).each(t),dna.store.templates[n]},getTemplate:function(e){return dna.store.templates[e]||dna.compile.template(e)}},dna.events={initializers:[],elementSetup:function(e,t){function i(){dna.util.apply($(this).data("dna-setup"),[$(this),t])}var n="[data-dna-setup]",a=e?e.find(n).addBack(n):$(".dna-setup");return a.each(i).addClass("dna-initialized")},runInitializers:function(e,t){function i(){dna.util.apply(this.func,[(this.selector?e.find(this.selector).addBack(this.selector):e).addClass("dna-initialized")].concat(this.params))}return dna.events.elementSetup(e,t),$.each(dna.events.initializers,i),e},runner:function(e,t,i){return e=e.closest("[data-dna-"+t+"]"),dna.util.apply(e.data("dna-"+t),[e,i])},handle:function(e){return dna.events.runner($(e.target),e.type.replace("key","key-"),e)},handleEnterKey:function(e){return 13===e.which?dna.events.runner($(e.target),"enter-key",e):null},setup:function(){$(document).click(dna.events.handle).change(dna.events.handle).keyup(dna.events.handle).keyup(dna.events.handleEnterKey).keydown(dna.events.handle).keypress(dna.events.handle),dna.events.elementSetup()}},$(dna.events.setup),dna.core={inject:function(e,t,i,n){function a(e,a){function o(e){return-1!==$.inArray(typeof e,r)}var s="object"==typeof t?dna.util.value(t,a):"[count]"===a?i:"[value]"===a?t:null,r=["string","number","boolean"];o(s)&&(e=n.html?e.html(s):e.text(s))}function o(e,i){for(var n=0;n1&&(e.toggleClass(i[1],a),i[2]&&e.toggleClass(i[2],!a))}function l(e,i){var n=dna.util.value(t,i.field);n&&dna.clone(i.name,n,{container:e})}function c(){var e=$(this),i=e.data().dnaRules;i.text&&a(e,i.text),i.props&&o(e,i.props),i.attrs&&s(e,i.attrs),i.class&&r(e,i.class),i.require&&e.toggle(void 0!==dna.util.value(t,i.require)),i.missing&&e.toggle(void 0===dna.util.value(t,i.missing)),i.truthy&&e.toggle(dna.util.realTruth(dna.util.value(t,i.truthy))),i.falsey&&e.toggle(!dna.util.realTruth(dna.util.value(t,i.falsey))),i.loop&&l(e,i.loop)}return e.find(".dna-array").remove(),e.find(".dna-nucleotide").addBack(".dna-nucleotide").each(c),e.data("dna-model",t)},replicate:function(e,t,i,n){var a=e.elem.clone(!0,!0);e.clones++,dna.core.inject(a,t,i,n);var o=".dna-contains-"+e.name,s=n.container?n.container.find(o).addBack(o):e.container;return s[n.top?"prepend":"append"](a),dna.events.runInitializers(a,t),n.callback&&n.callback(a,t),n.fade&&dna.ui.slideFadeIn(a),a},unload:function(e,t,i){t.error||dna.clone(e,t,i)},berserk:function(e){throw"dna.js error -> "+e}};var map;!function(e){var t=e(window),i=(e("html"),e("body"),e(document));e.widget("custom.catcomplete",e.ui.autocomplete,{_renderMenu:function(t,i){var n=this,a="";e.each(i,function(e,i){i.category!=a&&(t.append("
      • "+i.category+"
      • "),a=i.category),n._renderItemData(t,i)})}}),e(function(){function n(e){return(e.getDate()<10?"0":"")+e.getDate()+"."+(e.getMonth()<9?"0":"")+(e.getMonth()+1)+"."+e.getFullYear()}e("#send_message_form").on("submit",function(t){t.preventDefault(),$this=e(this);var i=$this.serialize(),n=$this.attr("action");e.post(n,i,function(t){t.success&&(e.fancybox.close(),$this.find("#id_body").val(""))})}),e("#reply_form").on("submit",function(t){t.preventDefault(),$this=e(this);var i=$this.serialize(),n=e("#reply_message").val(),a="/profile/messages/reply/"+n+"/";e.post(a,i,function(t){t.success&&(e.fancybox.close(),$this.find("#id_recipient").val(""),$this.find("#id_body").val(""))})}),e(".visit, .unvisit").on("click",function(t){t.preventDefault();var i=e(this),n=e(this).attr("href");e.get(n,function(t){t.not_authorized?e.fancybox.open("#pw-login"):t.success&&(t.in?i.hasClass("visit")&&(i.hide(),i.siblings(".unvisit").show()):i.hasClass("unvisit")&&(i.hide(),i.siblings(".visit").show()))})}),e("#paswd_change").on("submit",function(t){t.preventDefault();var i=e(this).serialize(),n="/profile/change-password/",a=e(this);e.post(n,i,function(t){if(t.success)e("#paswd_change .mf-success").fadeIn(300),setTimeout(function(){e("#paswd_change .mf-success").fadeOut(300)},3e3),a.find("#id_old password").val("");else{e("#paswd_change .mf-error").parent().remove();var i=e("
        ").attr("class","mf-line").append(e("
        ").attr("class","mf-error").append(t.errors[0]));a.find(".mf-buttons-line").before(i)}})}),e(".reg").on("click",function(t){t.preventDefault(),e(".register").click()}),e.fn.customSelect=function(){return e(this).each(function(){var t=e(this),i=t.children("option"),n=t.children("option").length,a=e(":selected",t);t.addClass("s-hidden"),t.wrap('
        '),t.after('
        ');var o=t.next("div.custom-select-wrap"),s=o.children(".custom-select-text"),r=0!=a.length?a.text():t.children("option").eq(0).text();s.text(r),0!=i.index(a)||t.children("option").eq(0).val()&&t.children("option").eq(0).attr("value")||s.addClass("placeholder");for(var l=e('
        ').insertAfter(o),c=l.find(".scroll-content"),d=e("
          ").appendTo(c),h=0;n>h;h++){var u=""!=t.children("option").eq(h).text()?t.children("option").eq(h).html():" ";e("
        • ",{html:u,"data-value":t.children("option").eq(h).val()}).appendTo(d)}var p=d.children("li");if(o.on("click",function(i){i.stopPropagation(),e("div.custom-select-wrap.active").not(this).each(function(){e(this).removeClass("active").next(".options").hide()}),t.prop("disabled")||e(this).toggleClass("active").next(".options").toggle()}),p.on("click",function(i){var n=e(this);i.stopPropagation(),s.text(n.text()),o.removeClass("active"),t.val(n.data("value")),0!=n.index()||t.children("option").eq(0).val()&&t.children("option").eq(0).attr("value")?s.removeClass("placeholder"):s.addClass("placeholder"),l.hide() -}),e.fn.mCustomScrollbar){var f={scrollInertia:200,contentTouchScroll:!0,scrollButtons:{enable:!1},advanced:{autoScrollOnFocus:!1,updateOnContentResize:!0}},g=l.find("div.cs-scroll-container");g.mCustomScrollbar(f)}e(document).on("click",function(){o.removeClass("active"),l.hide()}),t.on("change",function(){var i=e(this),n=i.prop("selectedIndex"),a=i.children("option").eq(n).text();s.text(a),0!=n||t.children("option").eq(0).val()&&t.children("option").eq(0).attr("value")?s.removeClass("placeholder"):s.addClass("placeholder")})})},e("select:not([multiple])").each(function(){var t=e(this);t.hasClass("select2")||t.customSelect()}),e("#mp-recent-expo").each(function(){var t=e(this),i=t.children("ul"),n=i.children("li"),a=t.children("div.re-controls"),o=a.children("a.prev"),s=a.children("a.next");if(n.length>1){a.addClass("enabled"),n.css({display:"block"}),t.height(n.eq(0).height());var r=t.swiper({speed:500,mode:"horizontal",loop:!1,simulateTouch:!1,autoplay:4200,onInit:function(){o.addClass("disabled")},onSlideChangeStart:function(e){t.animate({height:n.eq(e.activeIndex).children("div.re-body").height()},300),0==e.activeIndex?(o.hasClass("disabled")||o.addClass("disabled"),s.hasClass("disabled")&&s.removeClass("disabled")):e.activeIndex==e.slides.length-1?(s.hasClass("disabled")||s.addClass("disabled"),o.hasClass("disabled")&&o.removeClass("disabled")):(o.hasClass("disabled")&&o.removeClass("disabled"),s.hasClass("disabled")&&s.removeClass("disabled"))}});o.on("click",function(){return e(this).hasClass("disabled")||r.swipePrev(),!1}),s.on("click",function(){return e(this).hasClass("disabled")||r.swipeNext(),!1})}}),e("#mp-photo-gallery").each(function(){var t=e(this),i=t.children("ul"),n=i.children("li"),a=t.children("div.re-controls"),o=a.children("a.prev"),s=a.children("a.next");if(n.length>1){a.addClass("enabled");var r=t.swiper({speed:500,mode:"horizontal",loop:!1,simulateTouch:!1,onInit:function(){o.addClass("disabled")},onSlideChangeStart:function(e){var t=n.find("div.pgi-descr");t.animate({height:"hide",opacity:"hide"},500),0==e.activeIndex?(o.hasClass("disabled")||o.addClass("disabled"),s.hasClass("disabled")&&s.removeClass("disabled")):e.activeIndex==e.slides.length-1?(s.hasClass("disabled")||s.addClass("disabled"),o.hasClass("disabled")&&o.removeClass("disabled")):(o.hasClass("disabled")&&o.removeClass("disabled"),s.hasClass("disabled")&&s.removeClass("disabled"))},onSlideChangeEnd:function(e){var t=n.find("div.pgi-descr");t.eq(e.activeIndex).slideDown(250)}});o.on("click",function(){return e(this).hasClass("disabled")||r.swipePrev(),!1}),s.on("click",function(){return e(this).hasClass("disabled")||r.swipeNext(),!1})}}),e("#ps-photo-gallery").each(function(){var t=e(this),i=t.children("ul"),n=i.children("li"),a=t.children("div.re-controls"),o=a.children("a.prev"),s=a.children("a.next");if(n.length>1){a.addClass("enabled"),n.css({display:"block"});var r=t.swiper({speed:500,mode:"horizontal",calculateHeight:!0,loop:!1,simulateTouch:!1,onInit:function(){o.addClass("disabled")},onSlideChangeStart:function(e){0==e.activeIndex?(o.hasClass("disabled")||o.addClass("disabled"),s.hasClass("disabled")&&s.removeClass("disabled")):e.activeIndex==e.slides.length-1?(s.hasClass("disabled")||s.addClass("disabled"),o.hasClass("disabled")&&o.removeClass("disabled")):(o.hasClass("disabled")&&o.removeClass("disabled"),s.hasClass("disabled")&&s.removeClass("disabled"))}});o.on("click",function(){return e(this).hasClass("disabled")||r.swipePrev(),!1}),s.on("click",function(){return e(this).hasClass("disabled")||r.swipeNext(),!1})}}),e("#s-slide-gallery").each(function(){var i=e(this),n=i.children("ul"),a=n.children("li"),o=i.children("div.re-controls"),s=o.children("a.prev"),r=o.children("a.next");if(a.length>4){o.addClass("enabled"),a.css({display:"block"}),t.on("resize",function(){i.height(a.eq(0).height())}).trigger("resize");var l=i.swiper({slidesPerView:4,slidesPerGroup:4,speed:500,mode:"horizontal",calculateHeight:!0,loop:!1,simulateTouch:!1,onInit:function(){s.addClass("disabled")},onSlideChangeStart:function(e){0==e.activeIndex?(s.hasClass("disabled")||s.addClass("disabled"),r.hasClass("disabled")&&r.removeClass("disabled")):e.activeIndex==e.slides.length-4?(r.hasClass("disabled")||r.addClass("disabled"),s.hasClass("disabled")&&s.removeClass("disabled")):(s.hasClass("disabled")&&s.removeClass("disabled"),r.hasClass("disabled")&&r.removeClass("disabled"))}});s.on("click",function(){return e(this).hasClass("disabled")||l.swipePrev(),!1}),r.on("click",function(){return e(this).hasClass("disabled")||l.swipeNext(),!1})}}),e(".sli-slides").each(function(){var i=e(this),n=i.children("ul"),a=n.children("li"),o=i.children("div.re-controls"),s=o.children("a.prev"),r=o.children("a.next");if(a.length>4){o.addClass("enabled"),a.css({display:"block"}),t.on("resize",function(){i.css({height:a.eq(0).height()})}).trigger("resize");var l=i.swiper({slidesPerView:4,slidesPerGroup:4,calculateHeight:!0,speed:500,mode:"horizontal",loop:!1,simulateTouch:!1,onInit:function(){s.addClass("disabled")},onSlideChangeStart:function(e){0==e.activeIndex?(s.hasClass("disabled")||s.addClass("disabled"),r.hasClass("disabled")&&r.removeClass("disabled")):e.activeIndex==e.slides.length-4?(r.hasClass("disabled")||r.addClass("disabled"),s.hasClass("disabled")&&s.removeClass("disabled")):(s.hasClass("disabled")&&s.removeClass("disabled"),r.hasClass("disabled")&&r.removeClass("disabled"))}});s.on("click",function(){return e(this).hasClass("disabled")||l.swipePrev(),!1}),r.on("click",function(){return e(this).hasClass("disabled")||l.swipeNext(),!1})}});var a={padding:0,fitToView:!1};e("a.pw-open").fancybox(a),e("input[placeholder], textarea[placeholder]").placeholder(),i.on("focus",'form.pw-form input[type="text"], form.pw-form input[type="password"]',function(){var t=e(this),i=t.closest(".pwf-line"),n=i.find("div.msg-help"),a=i.find("div.msg-error"),o=e(this).parent().parent().parent().find(".mf-error");a.parent().remove(),o.parent().remove(),n.is(":hidden")&&n.fadeIn(300)}),i.on("blur",'form.pw-form input[type="text"], form.pw-form input[type="password"]',function(){var t=e(this),i=t.closest(".pwf-line"),n=i.find("div.msg-help");n.is(":visible")&&n.fadeOut(300)});var o={scrollInertia:200,contentTouchScroll:!0,scrollButtons:{enable:!1},advanced:{updateOnContentResize:!0}};e("div.scroll-container").each(function(){var t=e(this);t.mCustomScrollbar(o)}),e("#subscribe-sm").each(function(){var t=e(this),i=t.find("a");i.on("click",function(){var t=(e(this),i.index(this)),n=e("#pw-subscribe");e.fancybox(n,a);var o=n.find("ul.tabs > li");return o.eq(t).trigger("click"),!1})}),e("ul.tabs > li").on("click",function(){var t=e(this),i=t.closest("ul"),n=i.children("li").index(this),a=i.siblings(".tabs-content"),o=t.find("a"),s=t.closest("#pw-subscribe");if(!t.hasClass("active")){s.length&&(a=s.find(".tabs-content"));var r=i.children("li.active"),l=a.find("li.active"),c=a.children("li").eq(n);r.removeClass("active"),l.removeClass("active"),t.addClass("active"),c.addClass("active")}return o.blur(),closeSelectBox(),!1}),e("#cli-pg").each(function(){var t=e(this),i=t.find("a");i.on({mouseenter:function(){var t=e(this),i=t.find(".pg-title");i.stop(!0,!0).slideDown(300,function(){i.css({display:"block"})})},mouseleave:function(){var t=e(this),i=t.find(".pg-title");i.stop(!0,!0).slideUp(300)}})}),e("#map-canvas").each(function(){var t=e(this);t.is(":hidden")||(google.maps.event.addDomListener(window,"load",mapInit),t.data("init",!0))}),e("a.toggle-map").on({click:function(){{var t=e(this),i=t.closest(".i-address"),n=i.children(".i-map"),a=e("#map-canvas");i.find("header a.toggle-map")}return n.is(":hidden")?n.stop(!0,!0).animate({opacity:"show",height:"show"},300,function(){a.data("init")||(mapInit(),a.data("init",!0)),i.addClass("map-opened")}):n.stop(!0,!0).animate({opacity:"hide",height:"hide"},300,function(){i.removeClass("map-opened")}),!1}}),e("ul.messages-list").each(function(){var t=e(this),i=t.children("li");i.on({mouseenter:function(){var t=e(this),i=t.find("div.mi-buttons");i.stop(!0,!0).animate({opacity:"show",height:"show"},250)},mouseleave:function(){var t=e(this),i=t.find("div.mi-buttons");i.stop(!0,!0).animate({opacity:"hide",height:"hide"},250)}})}),e(".set-sect > header").on("click",function(){var t=e(this),i=t.closest(".set-sect"),n=i.children("div.set-sect-body");n.is(":visible")?n.stop(!0,!0).animate({height:"hide",opacity:"hide"},300,function(){i.addClass("closed")}):n.stop(!0,!0).animate({height:"show",opacity:"show"},300,function(){i.removeClass("closed")})}),e('input[type="checkbox"].annoncesFlag').each(function(){var t=e(this);t.on("change",function(){var e=t.closest("div.mf-announces").children("div.mf-announces-body"),i=e.find("input, select, textarea"),n=e.find("div.c-select-box");t.prop("checked")?(e.removeClass("disabled"),n.removeClass("disabled"),i.prop("disabled",!1)):(e.addClass("disabled"),n.addClass("disabled"),i.prop("disabled",!0))}).trigger("change")}),e("a.icb-edit-profile").on("click",function(){var t=e(this),i=t.next("a.icb-exit-edit"),n=e("div.p-editable");return t.css({display:"none"}),i.css({display:"inline-block"}),n.addClass("pe-active"),!1}),e("a.icb-exit-edit").on("click",function(){var t=e(this),i=t.prev("a.icb-edit-profile"),n=e("div.p-editable");return i.css({display:"inline-block"}),t.css({display:"none"}),n.removeClass("pe-active"),!1}),e('input[type="file"]').each(function(){var t=e(this),i=t.closest(".input-file"),n=i.children(".file-text");""!=t.val()?(n.text(t.val()),n.removeClass("placeholder")):(n.text(n.data("placeholder")),n.addClass("placeholder")),t.on({change:function(){""!=t.val()?(n.text(t.val()),n.removeClass("placeholder")):(n.text(n.data("placeholder")),n.addClass("placeholder"))}})}),e("form.af-statistic div.mf-stat").each(function(){var t=e(this),i=t.children(".mf-stat-add-button"),n=i.find("a.icon-add");n.on("click",function(){var n=t.children(".mf-stat-item"),a=n.length,o=n.eq(0).find("select").eq(0).find("option").length-1,s=n.eq(0).clone(),r=s.find("select"),l=s.find("input");return l.val(""),r.each(function(){var t=e(this),i=t.closest(".custom-select"),n=t.clone();n.insertAfter(i),n.customSelect(),i.remove()}),s.insertBefore(i),a==o-1&&i.hide(),!1})}),e('input[type="checkbox"].w-time-switcher').each(function(){function t(){var t=n.find("div.w-time"),a=t.eq(0),o=a.find("select");t.each(function(t){var i=e(this);if(0!=t)for(var n=i.find("select"),a=1;a");o.val(n(t)).text(n(t)),i.html(o);for(var s=1;u>s;s++){var l=o.clone();t.setDate(t.getDate()+1),l.val(n(t)).text(n(t)),i.append(l)}i.prop("selectedIndex",0),a.length&&(i.insertAfter(a),a.remove()),i.customSelect()});for(var f=1;u>f;f++){var g=a.clone(),m=g.find("select");g.children("label.check").remove(),m.each(function(t){var i=e(this),n=i.closest(".custom-select");i.insertAfter(n),0==t?i.prop("selectedIndex",f):h.prop("checked")&&i.prop("selectedIndex",p.eq(t).prop("selectedIndex")),n.remove(),i.customSelect()}),c.append(g)}}var a=e(this),o=a.find("input.dateFrom"),s=a.find("input.dateTo"),r=new Date,l=new Date,c=e("#work-time");o.on("change",function(){i()}),s.on("change",function(){i()}),i()}),e("div.request-form").each(function(){{var t=e(this),i=t.find("div.rq-btn-to-hide"),n=i.find("a"),a=t.find("div.rq-form"),o=t.find("div.rq-to-hide");a.find("div.rq-btn-wrap")}n.on("click",function(){return o.hide(),a.animate({height:"show",opacity:"show"},300,function(){t.addClass("rqf-opened")}),!1})}),e("form div.rq-switch").each(function(){function t(){var e=o.find("input, select"),t=o.find("div.c-select-box");n.prop("checked")?(o.removeClass("disabled"),t.removeClass("disabled"),e.prop("disabled",!1)):(o.addClass("disabled"),t.addClass("disabled"),e.prop("checked",!1).prop("disabled",!0),e.trigger("change"))}var i=e(this),n=i.find('input[type="checkbox"]'),a=i.closest(".rq-sub-sect"),o=a.children(".rq-sub-sect-body");t(),n.on("change",t)}),e("a.reply-msg").on("click",function(){var t=e(this).attr("data-sender"),i=e(this).attr("data-reply-message"),n=e("#pw-reply");n.find("#id_recipient").val(t),n.find("#reply_message").val(i)})})}(jQuery),$(document).ready(function(){$("div.ht-main_1").each(function(){$(this).width($("div.serv-links").width())}),$(window).resize(function(){$("div.ht-main_1").each(function(){$(this).width($("div.serv-links").width())})}),$("a.small_link").click(function(){return $("#large img").hide().attr({src:$(this).attr("href"),title:$("> img",this).attr("title")}),!1}),$("#large>img").load(function(){$("#large>img:hidden").fadeIn("slow")}),setTimeout(function(){$("a.subscribe_link").click()},3e3),$(".subscribe_success").click(function(){return $("div.subscribe_before").hide(),$("div.subscribe_after").show(),setTimeout(function(){$("a.fancybox-close").click()},2e3),!1});var e=$("div.subjects_list ul li").length,t=e-5;$("div.subjects_list ul li:gt(4)").hide(),$("div.subjects_list span i").text(t),e>5&&$("div.subjects_list").addClass("more"),$("div.subjects_list span").click(function(){return $(this).parents("div.subjects_list").removeClass("more"),$(this).parents("div.subjects_list").find("li").show(),!1})});var Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(e){var t,i,n,a,o,s,r,l="",c=0;for(e=Base64._utf8_encode(e);c>2,o=(3&t)<<4|i>>4,s=(15&i)<<2|n>>6,r=63&n,isNaN(i)?s=r=64:isNaN(n)&&(r=64),l=l+this._keyStr.charAt(a)+this._keyStr.charAt(o)+this._keyStr.charAt(s)+this._keyStr.charAt(r);return l},decode:function(e){var t,i,n,a,o,s,r,l="",c=0;for(e=e.replace(/[^A-Za-z0-9\+\/\=]/g,"");c>4,i=(15&o)<<4|s>>2,n=(3&s)<<6|r,l+=String.fromCharCode(t),64!=s&&(l+=String.fromCharCode(i)),64!=r&&(l+=String.fromCharCode(n));return l=Base64._utf8_decode(l)},_utf8_encode:function(e){e=e.replace(/\r\n/g,"\n");for(var t="",i=0;in?t+=String.fromCharCode(n):n>127&&2048>n?(t+=String.fromCharCode(n>>6|192),t+=String.fromCharCode(63&n|128)):(t+=String.fromCharCode(n>>12|224),t+=String.fromCharCode(n>>6&63|128),t+=String.fromCharCode(63&n|128))}return t},_utf8_decode:function(e){for(var t="",i=0,n=c1=c2=0;in?(t+=String.fromCharCode(n),i++):n>191&&224>n?(c2=e.charCodeAt(i+1),t+=String.fromCharCode((31&n)<<6|63&c2),i+=2):(c2=e.charCodeAt(i+1),c3=e.charCodeAt(i+2),t+=String.fromCharCode((15&n)<<12|(63&c2)<<6|63&c3),i+=3);return t}}; \ No newline at end of file +function mapInit(){var e=document.getElementById("map-canvas"),t=e.getAttribute("data-coords"),i=t.indexOf(","),n=parseFloat(t.substring(0,i)),a=parseFloat(t.substring(i+1,t.length)),o=new google.maps.LatLng(n,a),s={zoom:15,center:o};map=new google.maps.Map(e,s);new google.maps.Marker({position:o,map:map})}function addError(e,t){var i=$("#reg_form "+e),n=$("
          ").attr("class","pwf-msg").append($("
          ").attr("class","msg-error").append(t));i.parent().parent().append(n)}function placeInput(e){$("#id_country").val("159").select2({placeholder:"Ваша страна",width:e}),$("#id_city").select2({placeholder:"Ваш город",width:e,ajax:{url:"/city/get-city/",dataType:"json",quietMillis:200,data:function(e,t,i){var i=$("#id_country").val();return{term:e,page:t,country:i}},results:function(e){var t=[];return $.each(e,function(e,i){t.push({id:i.id,text:i.label})}),{results:t}}},initSelection:function(e,t){var i=$(e).val(),n=$(e).attr("data-init-text");t({id:i,text:n})}})}!function(){for(var e,t=function(){},i=["assert","clear","count","debug","dir","dirxml","error","exception","group","groupCollapsed","groupEnd","info","log","markTimeline","profile","profileEnd","table","time","timeEnd","timeStamp","trace","warn"],n=i.length,a=window.console=window.console||{};n--;)e=i[n],a[e]||(a[e]=t)}(),!function(e){"undefined"==typeof e.fn.each2&&e.extend(e.fn,{each2:function(t){for(var i=e([0]),n=-1,a=this.length;++ni;i+=1)if(s(e,t[i]))return i;return-1}function o(){var t=e(z);t.appendTo("body");var i={width:t.width()-t[0].clientWidth,height:t.height()-t[0].clientHeight};return t.remove(),i}function s(e,i){return e===i?!0:e===t||i===t?!1:null===e||null===i?!1:e.constructor===String?e+""==i+"":i.constructor===String?i+""==e+"":!1}function r(t,i){var n,a,o;if(null===t||t.length<1)return[];for(n=t.split(i),a=0,o=n.length;o>a;a+=1)n[a]=e.trim(n[a]);return n}function l(e){return e.outerWidth(!1)-e.width()}function c(i){var n="keyup-change-value";i.on("keydown",function(){e.data(i,n)===t&&e.data(i,n,i.val())}),i.on("keyup",function(){var a=e.data(i,n);a!==t&&i.val()!==a&&(e.removeData(i,n),i.trigger("keyup-change"))})}function d(i){i.on("mousemove",function(i){var n=H;(n===t||n.x!==i.pageX||n.y!==i.pageY)&&e(i.target).trigger("mousemove-filtered",i)})}function h(e,i,n){n=n||t;var a;return function(){var t=arguments;window.clearTimeout(a),a=window.setTimeout(function(){i.apply(n,t)},e)}}function u(e,t){var i=h(e,function(e){t.trigger("scroll-debounced",e)});t.on("scroll",function(e){a(e.target,t.get())>=0&&i(e)})}function p(e){e[0]!==document.activeElement&&window.setTimeout(function(){var t,i=e[0],n=e.val().length;e.focus();var a=i.offsetWidth>0||i.offsetHeight>0;a&&i===document.activeElement&&(i.setSelectionRange?i.setSelectionRange(n,n):i.createTextRange&&(t=i.createTextRange(),t.collapse(!1),t.select()))},0)}function f(t){t=e(t)[0];var i=0,n=0;if("selectionStart"in t)i=t.selectionStart,n=t.selectionEnd-i;else if("selection"in document){t.focus();var a=document.selection.createRange();n=document.selection.createRange().text.length,a.moveStart("character",-t.value.length),i=a.text.length-n}return{offset:i,length:n}}function g(e){e.preventDefault(),e.stopPropagation()}function m(e){e.preventDefault(),e.stopImmediatePropagation()}function v(t){if(!D){var i=t[0].currentStyle||window.getComputedStyle(t[0],null);D=e(document.createElement("div")).css({position:"absolute",left:"-10000px",top:"-10000px",display:"none",fontSize:i.fontSize,fontFamily:i.fontFamily,fontStyle:i.fontStyle,fontWeight:i.fontWeight,letterSpacing:i.letterSpacing,textTransform:i.textTransform,whiteSpace:"nowrap"}),D.attr("class","select2-sizer"),e("body").append(D)}return D.text(t.val()),D.width()}function w(t,i,n){var a,o,s=[];a=e.trim(t.attr("class")),a&&(a=""+a,e(a.split(/\s+/)).each2(function(){0===this.indexOf("select2-")&&s.push(this)})),a=e.trim(i.attr("class")),a&&(a=""+a,e(a.split(/\s+/)).each2(function(){0!==this.indexOf("select2-")&&(o=n(this),o&&s.push(o))})),t.attr("class",s.join(" "))}function x(e,t,i,a){var o=n(e.toUpperCase()).indexOf(n(t.toUpperCase())),s=t.length;return 0>o?void i.push(a(e)):(i.push(a(e.substring(0,o))),i.push(""),i.push(a(e.substring(o,o+s))),i.push(""),void i.push(a(e.substring(o+s,e.length))))}function b(e){var t={"\\":"\","&":"&","<":"<",">":">",'"':""","'":"'","/":"/"};return String(e).replace(/[&<>"'\/\\]/g,function(e){return t[e]})}function y(i){var n,a=null,o=i.quietMillis||100,s=i.url,r=this;return function(l){window.clearTimeout(n),n=window.setTimeout(function(){var n=i.data,o=s,c=i.transport||e.fn.select2.ajaxDefaults.transport,d={type:i.type||"GET",cache:i.cache||!1,jsonpCallback:i.jsonpCallback||t,dataType:i.dataType||"json"},h=e.extend({},e.fn.select2.ajaxDefaults.params,d);n=n?n.call(r,l.term,l.page,l.context):null,o="function"==typeof o?o.call(r,l.term,l.page,l.context):o,a&&"function"==typeof a.abort&&a.abort(),i.params&&(e.isFunction(i.params)?e.extend(h,i.params.call(r)):e.extend(h,i.params)),e.extend(h,{url:o,dataType:i.dataType,data:n,success:function(e){var t=i.results(e,l.page,l);l.callback(t)},error:function(e,t,i){var n={hasError:!0,jqXHR:e,textStatus:t,errorThrown:i};l.callback(n)}}),a=c.call(r,h)},o)}}function C(t){var i,n,a=t,o=function(e){return""+e.text};e.isArray(a)&&(n=a,a={results:n}),e.isFunction(a)===!1&&(n=a,a=function(){return n});var s=a();return s.text&&(o=s.text,e.isFunction(o)||(i=s.text,o=function(e){return e[i]})),function(t){var i,n=t.term,s={results:[]};return""===n?void t.callback(a()):(i=function(a,s){var r,l;if(a=a[0],a.children){r={};for(l in a)a.hasOwnProperty(l)&&(r[l]=a[l]);r.children=[],e(a.children).each2(function(e,t){i(t,r.children)}),(r.children.length||t.matcher(n,o(r),a))&&s.push(r)}else t.matcher(n,o(a),a)&&s.push(a)},e(a().results).each2(function(e,t){i(t,s.results)}),void t.callback(s))}}function S(i){var n=e.isFunction(i);return function(a){var o=a.term,s={results:[]},r=n?i(a):i;e.isArray(r)&&(e(r).each(function(){var e=this.text!==t,i=e?this.text:this;(""===o||a.matcher(o,i))&&s.results.push(e?this:{id:this,text:this})}),a.callback(s))}}function _(t,i){if(e.isFunction(t))return!0;if(!t)return!1;if("string"==typeof t)return!0;throw new Error(i+" must be a string, function, or falsy value")}function T(t,i){if(e.isFunction(t)){var n=Array.prototype.slice.call(arguments,2);return t.apply(i,n)}return t}function k(t){var i=0;return e.each(t,function(e,t){t.children?i+=k(t.children):i++}),i}function E(e,i,n,a){var o,r,l,c,d,h=e,u=!1;if(!a.createSearchChoice||!a.tokenSeparators||a.tokenSeparators.length<1)return t;for(;;){for(r=-1,l=0,c=a.tokenSeparators.length;c>l&&(d=a.tokenSeparators[l],r=e.indexOf(d),!(r>=0));l++);if(0>r)break;if(o=e.substring(0,r),e=e.substring(r+d.length),o.length>0&&(o=a.createSearchChoice.call(this,o,i),o!==t&&null!==o&&a.id(o)!==t&&null!==a.id(o))){for(u=!1,l=0,c=i.length;c>l;l++)if(s(a.id(o),a.id(i[l]))){u=!0;break}u||n(o)}}return h!==e?e:void 0}function M(){var t=this;e.each(arguments,function(e,i){t[i].remove(),t[i]=null})}function P(t,i){var n=function(){};return n.prototype=new t,n.prototype.constructor=n,n.prototype.parent=t.prototype,n.prototype=e.extend(n.prototype,i),n}if(window.Select2===t){var I,L,O,B,A,D,R,W,H={x:0,y:0},I={TAB:9,ENTER:13,ESC:27,SPACE:32,LEFT:37,UP:38,RIGHT:39,DOWN:40,SHIFT:16,CTRL:17,ALT:18,PAGE_UP:33,PAGE_DOWN:34,HOME:36,END:35,BACKSPACE:8,DELETE:46,isArrow:function(e){switch(e=e.which?e.which:e){case I.LEFT:case I.RIGHT:case I.UP:case I.DOWN:return!0}return!1},isControl:function(e){var t=e.which;switch(t){case I.SHIFT:case I.CTRL:case I.ALT:return!0}return e.metaKey?!0:!1},isFunctionKey:function(e){return e=e.which?e.which:e,e>=112&&123>=e}},z="
          ",F={"Ⓐ":"A","A":"A","À":"A","Á":"A","Â":"A","Ầ":"A","Ấ":"A","Ẫ":"A","Ẩ":"A","Ã":"A","Ā":"A","Ă":"A","Ằ":"A","Ắ":"A","Ẵ":"A","Ẳ":"A","Ȧ":"A","Ǡ":"A","Ä":"A","Ǟ":"A","Ả":"A","Å":"A","Ǻ":"A","Ǎ":"A","Ȁ":"A","Ȃ":"A","Ạ":"A","Ậ":"A","Ặ":"A","Ḁ":"A","Ą":"A","Ⱥ":"A","Ɐ":"A","Ꜳ":"AA","Æ":"AE","Ǽ":"AE","Ǣ":"AE","Ꜵ":"AO","Ꜷ":"AU","Ꜹ":"AV","Ꜻ":"AV","Ꜽ":"AY","Ⓑ":"B","B":"B","Ḃ":"B","Ḅ":"B","Ḇ":"B","Ƀ":"B","Ƃ":"B","Ɓ":"B","Ⓒ":"C","C":"C","Ć":"C","Ĉ":"C","Ċ":"C","Č":"C","Ç":"C","Ḉ":"C","Ƈ":"C","Ȼ":"C","Ꜿ":"C","Ⓓ":"D","D":"D","Ḋ":"D","Ď":"D","Ḍ":"D","Ḑ":"D","Ḓ":"D","Ḏ":"D","Đ":"D","Ƌ":"D","Ɗ":"D","Ɖ":"D","Ꝺ":"D","DZ":"DZ","DŽ":"DZ","Dz":"Dz","Dž":"Dz","Ⓔ":"E","E":"E","È":"E","É":"E","Ê":"E","Ề":"E","Ế":"E","Ễ":"E","Ể":"E","Ẽ":"E","Ē":"E","Ḕ":"E","Ḗ":"E","Ĕ":"E","Ė":"E","Ë":"E","Ẻ":"E","Ě":"E","Ȅ":"E","Ȇ":"E","Ẹ":"E","Ệ":"E","Ȩ":"E","Ḝ":"E","Ę":"E","Ḙ":"E","Ḛ":"E","Ɛ":"E","Ǝ":"E","Ⓕ":"F","F":"F","Ḟ":"F","Ƒ":"F","Ꝼ":"F","Ⓖ":"G","G":"G","Ǵ":"G","Ĝ":"G","Ḡ":"G","Ğ":"G","Ġ":"G","Ǧ":"G","Ģ":"G","Ǥ":"G","Ɠ":"G","Ꞡ":"G","Ᵹ":"G","Ꝿ":"G","Ⓗ":"H","H":"H","Ĥ":"H","Ḣ":"H","Ḧ":"H","Ȟ":"H","Ḥ":"H","Ḩ":"H","Ḫ":"H","Ħ":"H","Ⱨ":"H","Ⱶ":"H","Ɥ":"H","Ⓘ":"I","I":"I","Ì":"I","Í":"I","Î":"I","Ĩ":"I","Ī":"I","Ĭ":"I","İ":"I","Ï":"I","Ḯ":"I","Ỉ":"I","Ǐ":"I","Ȉ":"I","Ȋ":"I","Ị":"I","Į":"I","Ḭ":"I","Ɨ":"I","Ⓙ":"J","J":"J","Ĵ":"J","Ɉ":"J","Ⓚ":"K","K":"K","Ḱ":"K","Ǩ":"K","Ḳ":"K","Ķ":"K","Ḵ":"K","Ƙ":"K","Ⱪ":"K","Ꝁ":"K","Ꝃ":"K","Ꝅ":"K","Ꞣ":"K","Ⓛ":"L","L":"L","Ŀ":"L","Ĺ":"L","Ľ":"L","Ḷ":"L","Ḹ":"L","Ļ":"L","Ḽ":"L","Ḻ":"L","Ł":"L","Ƚ":"L","Ɫ":"L","Ⱡ":"L","Ꝉ":"L","Ꝇ":"L","Ꞁ":"L","LJ":"LJ","Lj":"Lj","Ⓜ":"M","M":"M","Ḿ":"M","Ṁ":"M","Ṃ":"M","Ɱ":"M","Ɯ":"M","Ⓝ":"N","N":"N","Ǹ":"N","Ń":"N","Ñ":"N","Ṅ":"N","Ň":"N","Ṇ":"N","Ņ":"N","Ṋ":"N","Ṉ":"N","Ƞ":"N","Ɲ":"N","Ꞑ":"N","Ꞥ":"N","NJ":"NJ","Nj":"Nj","Ⓞ":"O","O":"O","Ò":"O","Ó":"O","Ô":"O","Ồ":"O","Ố":"O","Ỗ":"O","Ổ":"O","Õ":"O","Ṍ":"O","Ȭ":"O","Ṏ":"O","Ō":"O","Ṑ":"O","Ṓ":"O","Ŏ":"O","Ȯ":"O","Ȱ":"O","Ö":"O","Ȫ":"O","Ỏ":"O","Ő":"O","Ǒ":"O","Ȍ":"O","Ȏ":"O","Ơ":"O","Ờ":"O","Ớ":"O","Ỡ":"O","Ở":"O","Ợ":"O","Ọ":"O","Ộ":"O","Ǫ":"O","Ǭ":"O","Ø":"O","Ǿ":"O","Ɔ":"O","Ɵ":"O","Ꝋ":"O","Ꝍ":"O","Ƣ":"OI","Ꝏ":"OO","Ȣ":"OU","Ⓟ":"P","P":"P","Ṕ":"P","Ṗ":"P","Ƥ":"P","Ᵽ":"P","Ꝑ":"P","Ꝓ":"P","Ꝕ":"P","Ⓠ":"Q","Q":"Q","Ꝗ":"Q","Ꝙ":"Q","Ɋ":"Q","Ⓡ":"R","R":"R","Ŕ":"R","Ṙ":"R","Ř":"R","Ȑ":"R","Ȓ":"R","Ṛ":"R","Ṝ":"R","Ŗ":"R","Ṟ":"R","Ɍ":"R","Ɽ":"R","Ꝛ":"R","Ꞧ":"R","Ꞃ":"R","Ⓢ":"S","S":"S","ẞ":"S","Ś":"S","Ṥ":"S","Ŝ":"S","Ṡ":"S","Š":"S","Ṧ":"S","Ṣ":"S","Ṩ":"S","Ș":"S","Ş":"S","Ȿ":"S","Ꞩ":"S","Ꞅ":"S","Ⓣ":"T","T":"T","Ṫ":"T","Ť":"T","Ṭ":"T","Ț":"T","Ţ":"T","Ṱ":"T","Ṯ":"T","Ŧ":"T","Ƭ":"T","Ʈ":"T","Ⱦ":"T","Ꞇ":"T","Ꜩ":"TZ","Ⓤ":"U","U":"U","Ù":"U","Ú":"U","Û":"U","Ũ":"U","Ṹ":"U","Ū":"U","Ṻ":"U","Ŭ":"U","Ü":"U","Ǜ":"U","Ǘ":"U","Ǖ":"U","Ǚ":"U","Ủ":"U","Ů":"U","Ű":"U","Ǔ":"U","Ȕ":"U","Ȗ":"U","Ư":"U","Ừ":"U","Ứ":"U","Ữ":"U","Ử":"U","Ự":"U","Ụ":"U","Ṳ":"U","Ų":"U","Ṷ":"U","Ṵ":"U","Ʉ":"U","Ⓥ":"V","V":"V","Ṽ":"V","Ṿ":"V","Ʋ":"V","Ꝟ":"V","Ʌ":"V","Ꝡ":"VY","Ⓦ":"W","W":"W","Ẁ":"W","Ẃ":"W","Ŵ":"W","Ẇ":"W","Ẅ":"W","Ẉ":"W","Ⱳ":"W","Ⓧ":"X","X":"X","Ẋ":"X","Ẍ":"X","Ⓨ":"Y","Y":"Y","Ỳ":"Y","Ý":"Y","Ŷ":"Y","Ỹ":"Y","Ȳ":"Y","Ẏ":"Y","Ÿ":"Y","Ỷ":"Y","Ỵ":"Y","Ƴ":"Y","Ɏ":"Y","Ỿ":"Y","Ⓩ":"Z","Z":"Z","Ź":"Z","Ẑ":"Z","Ż":"Z","Ž":"Z","Ẓ":"Z","Ẕ":"Z","Ƶ":"Z","Ȥ":"Z","Ɀ":"Z","Ⱬ":"Z","Ꝣ":"Z","ⓐ":"a","a":"a","ẚ":"a","à":"a","á":"a","â":"a","ầ":"a","ấ":"a","ẫ":"a","ẩ":"a","ã":"a","ā":"a","ă":"a","ằ":"a","ắ":"a","ẵ":"a","ẳ":"a","ȧ":"a","ǡ":"a","ä":"a","ǟ":"a","ả":"a","å":"a","ǻ":"a","ǎ":"a","ȁ":"a","ȃ":"a","ạ":"a","ậ":"a","ặ":"a","ḁ":"a","ą":"a","ⱥ":"a","ɐ":"a","ꜳ":"aa","æ":"ae","ǽ":"ae","ǣ":"ae","ꜵ":"ao","ꜷ":"au","ꜹ":"av","ꜻ":"av","ꜽ":"ay","ⓑ":"b","b":"b","ḃ":"b","ḅ":"b","ḇ":"b","ƀ":"b","ƃ":"b","ɓ":"b","ⓒ":"c","c":"c","ć":"c","ĉ":"c","ċ":"c","č":"c","ç":"c","ḉ":"c","ƈ":"c","ȼ":"c","ꜿ":"c","ↄ":"c","ⓓ":"d","d":"d","ḋ":"d","ď":"d","ḍ":"d","ḑ":"d","ḓ":"d","ḏ":"d","đ":"d","ƌ":"d","ɖ":"d","ɗ":"d","ꝺ":"d","dz":"dz","dž":"dz","ⓔ":"e","e":"e","è":"e","é":"e","ê":"e","ề":"e","ế":"e","ễ":"e","ể":"e","ẽ":"e","ē":"e","ḕ":"e","ḗ":"e","ĕ":"e","ė":"e","ë":"e","ẻ":"e","ě":"e","ȅ":"e","ȇ":"e","ẹ":"e","ệ":"e","ȩ":"e","ḝ":"e","ę":"e","ḙ":"e","ḛ":"e","ɇ":"e","ɛ":"e","ǝ":"e","ⓕ":"f","f":"f","ḟ":"f","ƒ":"f","ꝼ":"f","ⓖ":"g","g":"g","ǵ":"g","ĝ":"g","ḡ":"g","ğ":"g","ġ":"g","ǧ":"g","ģ":"g","ǥ":"g","ɠ":"g","ꞡ":"g","ᵹ":"g","ꝿ":"g","ⓗ":"h","h":"h","ĥ":"h","ḣ":"h","ḧ":"h","ȟ":"h","ḥ":"h","ḩ":"h","ḫ":"h","ẖ":"h","ħ":"h","ⱨ":"h","ⱶ":"h","ɥ":"h","ƕ":"hv","ⓘ":"i","i":"i","ì":"i","í":"i","î":"i","ĩ":"i","ī":"i","ĭ":"i","ï":"i","ḯ":"i","ỉ":"i","ǐ":"i","ȉ":"i","ȋ":"i","ị":"i","į":"i","ḭ":"i","ɨ":"i","ı":"i","ⓙ":"j","j":"j","ĵ":"j","ǰ":"j","ɉ":"j","ⓚ":"k","k":"k","ḱ":"k","ǩ":"k","ḳ":"k","ķ":"k","ḵ":"k","ƙ":"k","ⱪ":"k","ꝁ":"k","ꝃ":"k","ꝅ":"k","ꞣ":"k","ⓛ":"l","l":"l","ŀ":"l","ĺ":"l","ľ":"l","ḷ":"l","ḹ":"l","ļ":"l","ḽ":"l","ḻ":"l","ſ":"l","ł":"l","ƚ":"l","ɫ":"l","ⱡ":"l","ꝉ":"l","ꞁ":"l","ꝇ":"l","lj":"lj","ⓜ":"m","m":"m","ḿ":"m","ṁ":"m","ṃ":"m","ɱ":"m","ɯ":"m","ⓝ":"n","n":"n","ǹ":"n","ń":"n","ñ":"n","ṅ":"n","ň":"n","ṇ":"n","ņ":"n","ṋ":"n","ṉ":"n","ƞ":"n","ɲ":"n","ʼn":"n","ꞑ":"n","ꞥ":"n","nj":"nj","ⓞ":"o","o":"o","ò":"o","ó":"o","ô":"o","ồ":"o","ố":"o","ỗ":"o","ổ":"o","õ":"o","ṍ":"o","ȭ":"o","ṏ":"o","ō":"o","ṑ":"o","ṓ":"o","ŏ":"o","ȯ":"o","ȱ":"o","ö":"o","ȫ":"o","ỏ":"o","ő":"o","ǒ":"o","ȍ":"o","ȏ":"o","ơ":"o","ờ":"o","ớ":"o","ỡ":"o","ở":"o","ợ":"o","ọ":"o","ộ":"o","ǫ":"o","ǭ":"o","ø":"o","ǿ":"o","ɔ":"o","ꝋ":"o","ꝍ":"o","ɵ":"o","ƣ":"oi","ȣ":"ou","ꝏ":"oo","ⓟ":"p","p":"p","ṕ":"p","ṗ":"p","ƥ":"p","ᵽ":"p","ꝑ":"p","ꝓ":"p","ꝕ":"p","ⓠ":"q","q":"q","ɋ":"q","ꝗ":"q","ꝙ":"q","ⓡ":"r","r":"r","ŕ":"r","ṙ":"r","ř":"r","ȑ":"r","ȓ":"r","ṛ":"r","ṝ":"r","ŗ":"r","ṟ":"r","ɍ":"r","ɽ":"r","ꝛ":"r","ꞧ":"r","ꞃ":"r","ⓢ":"s","s":"s","ß":"s","ś":"s","ṥ":"s","ŝ":"s","ṡ":"s","š":"s","ṧ":"s","ṣ":"s","ṩ":"s","ș":"s","ş":"s","ȿ":"s","ꞩ":"s","ꞅ":"s","ẛ":"s","ⓣ":"t","t":"t","ṫ":"t","ẗ":"t","ť":"t","ṭ":"t","ț":"t","ţ":"t","ṱ":"t","ṯ":"t","ŧ":"t","ƭ":"t","ʈ":"t","ⱦ":"t","ꞇ":"t","ꜩ":"tz","ⓤ":"u","u":"u","ù":"u","ú":"u","û":"u","ũ":"u","ṹ":"u","ū":"u","ṻ":"u","ŭ":"u","ü":"u","ǜ":"u","ǘ":"u","ǖ":"u","ǚ":"u","ủ":"u","ů":"u","ű":"u","ǔ":"u","ȕ":"u","ȗ":"u","ư":"u","ừ":"u","ứ":"u","ữ":"u","ử":"u","ự":"u","ụ":"u","ṳ":"u","ų":"u","ṷ":"u","ṵ":"u","ʉ":"u","ⓥ":"v","v":"v","ṽ":"v","ṿ":"v","ʋ":"v","ꝟ":"v","ʌ":"v","ꝡ":"vy","ⓦ":"w","w":"w","ẁ":"w","ẃ":"w","ŵ":"w","ẇ":"w","ẅ":"w","ẘ":"w","ẉ":"w","ⱳ":"w","ⓧ":"x","x":"x","ẋ":"x","ẍ":"x","ⓨ":"y","y":"y","ỳ":"y","ý":"y","ŷ":"y","ỹ":"y","ȳ":"y","ẏ":"y","ÿ":"y","ỷ":"y","ẙ":"y","ỵ":"y","ƴ":"y","ɏ":"y","ỿ":"y","ⓩ":"z","z":"z","ź":"z","ẑ":"z","ż":"z","ž":"z","ẓ":"z","ẕ":"z","ƶ":"z","ȥ":"z","ɀ":"z","ⱬ":"z","ꝣ":"z","Ά":"Α","Έ":"Ε","Ή":"Η","Ί":"Ι","Ϊ":"Ι","Ό":"Ο","Ύ":"Υ","Ϋ":"Υ","Ώ":"Ω","ά":"α","έ":"ε","ή":"η","ί":"ι","ϊ":"ι","ΐ":"ι","ό":"ο","ύ":"υ","ϋ":"υ","ΰ":"υ","ω":"ω","ς":"σ"};R=e(document),A=function(){var e=1;return function(){return e++}}(),L=P(Object,{bind:function(e){var t=this;return function(){e.apply(t,arguments)}},init:function(i){var n,a,s=".select2-results";this.opts=i=this.prepareOpts(i),this.id=i.id,i.element.data("select2")!==t&&null!==i.element.data("select2")&&i.element.data("select2").destroy(),this.container=this.createContainer(),this.liveRegion=e("",{role:"status","aria-live":"polite"}).addClass("select2-hidden-accessible").appendTo(document.body),this.containerId="s2id_"+(i.element.attr("id")||"autogen"+A()),this.containerEventName=this.containerId.replace(/([.])/g,"_").replace(/([;&,\-\.\+\*\~':"\!\^#$%@\[\]\(\)=>\|])/g,"\\$1"),this.container.attr("id",this.containerId),this.container.attr("title",i.element.attr("title")),this.body=e("body"),w(this.container,this.opts.element,this.opts.adaptContainerCssClass),this.container.attr("style",i.element.attr("style")),this.container.css(T(i.containerCss,this.opts.element)),this.container.addClass(T(i.containerCssClass,this.opts.element)),this.elementTabIndex=this.opts.element.attr("tabindex"),this.opts.element.data("select2",this).attr("tabindex","-1").before(this.container).on("click.select2",g),this.container.data("select2",this),this.dropdown=this.container.find(".select2-drop"),w(this.dropdown,this.opts.element,this.opts.adaptDropdownCssClass),this.dropdown.addClass(T(i.dropdownCssClass,this.opts.element)),this.dropdown.data("select2",this),this.dropdown.on("click",g),this.results=n=this.container.find(s),this.search=a=this.container.find("input.select2-input"),this.queryCount=0,this.resultsPage=0,this.context=null,this.initContainer(),this.container.on("click",g),d(this.results),this.dropdown.on("mousemove-filtered",s,this.bind(this.highlightUnderEvent)),this.dropdown.on("touchstart touchmove touchend",s,this.bind(function(e){this._touchEvent=!0,this.highlightUnderEvent(e)})),this.dropdown.on("touchmove",s,this.bind(this.touchMoved)),this.dropdown.on("touchstart touchend",s,this.bind(this.clearTouchMoved)),this.dropdown.on("click",this.bind(function(){this._touchEvent&&(this._touchEvent=!1,this.selectHighlighted())})),u(80,this.results),this.dropdown.on("scroll-debounced",s,this.bind(this.loadMoreIfNeeded)),e(this.container).on("change",".select2-input",function(e){e.stopPropagation()}),e(this.dropdown).on("change",".select2-input",function(e){e.stopPropagation()}),e.fn.mousewheel&&n.mousewheel(function(e,t,i,a){var o=n.scrollTop();a>0&&0>=o-a?(n.scrollTop(0),g(e)):0>a&&n.get(0).scrollHeight-n.scrollTop()+a<=n.height()&&(n.scrollTop(n.get(0).scrollHeight-n.height()),g(e))}),c(a),a.on("keyup-change input paste",this.bind(this.updateResults)),a.on("focus",function(){a.addClass("select2-focused")}),a.on("blur",function(){a.removeClass("select2-focused")}),this.dropdown.on("mouseup",s,this.bind(function(t){e(t.target).closest(".select2-result-selectable").length>0&&(this.highlightUnderEvent(t),this.selectHighlighted(t))})),this.dropdown.on("click mouseup mousedown touchstart touchend focusin",function(e){e.stopPropagation()}),this.nextSearchTerm=t,e.isFunction(this.opts.initSelection)&&(this.initSelection(),this.monitorSource()),null!==i.maximumInputLength&&this.search.attr("maxlength",i.maximumInputLength);var r=i.element.prop("disabled");r===t&&(r=!1),this.enable(!r);var l=i.element.prop("readonly");l===t&&(l=!1),this.readonly(l),W=W||o(),this.autofocus=i.element.prop("autofocus"),i.element.prop("autofocus",!1),this.autofocus&&this.focus(),this.search.attr("placeholder",i.searchInputPlaceholder)},destroy:function(){var e=this.opts.element,i=e.data("select2"),n=this;this.close(),e.length&&e[0].detachEvent&&e.each(function(){this.detachEvent("onpropertychange",n._sync)}),this.propertyObserver&&(this.propertyObserver.disconnect(),this.propertyObserver=null),this._sync=null,i!==t&&(i.container.remove(),i.liveRegion.remove(),i.dropdown.remove(),e.removeClass("select2-offscreen").removeData("select2").off(".select2").prop("autofocus",this.autofocus||!1),this.elementTabIndex?e.attr({tabindex:this.elementTabIndex}):e.removeAttr("tabindex"),e.show()),M.call(this,"container","liveRegion","dropdown","results","search")},optionToData:function(e){return e.is("option")?{id:e.prop("value"),text:e.text(),element:e.get(),css:e.attr("class"),disabled:e.prop("disabled"),locked:s(e.attr("locked"),"locked")||s(e.data("locked"),!0)}:e.is("optgroup")?{text:e.attr("label"),children:[],element:e.get(),css:e.attr("class")}:void 0},prepareOpts:function(i){var n,a,o,l,c=this;if(n=i.element,"select"===n.get(0).tagName.toLowerCase()&&(this.select=a=i.element),a&&e.each(["id","multiple","ajax","query","createSearchChoice","initSelection","data","tags"],function(){if(this in i)throw new Error("Option '"+this+"' is not allowed for Select2 when attached to a ","
          "," ","
            ","
          ","
          "].join(""));return t},enableInterface:function(){this.parent.enableInterface.apply(this,arguments)&&this.focusser.prop("disabled",!this.isInterfaceEnabled())},opening:function(){var i,n,a;this.opts.minimumResultsForSearch>=0&&this.showSearch(!0),this.parent.opening.apply(this,arguments),this.showSearchInput!==!1&&this.search.val(this.focusser.val()),this.opts.shouldFocusInput(this)&&(this.search.focus(),i=this.search.get(0),i.createTextRange?(n=i.createTextRange(),n.collapse(!1),n.select()):i.setSelectionRange&&(a=this.search.val().length,i.setSelectionRange(a,a))),""===this.search.val()&&this.nextSearchTerm!=t&&(this.search.val(this.nextSearchTerm),this.search.select()),this.focusser.prop("disabled",!0).val(""),this.updateResults(!0),this.opts.element.trigger(e.Event("select2-open"))},close:function(){this.opened()&&(this.parent.close.apply(this,arguments),this.focusser.prop("disabled",!1),this.opts.shouldFocusInput(this)&&this.focusser.focus())},focus:function(){this.opened()?this.close():(this.focusser.prop("disabled",!1),this.opts.shouldFocusInput(this)&&this.focusser.focus())},isFocused:function(){return this.container.hasClass("select2-container-active")},cancel:function(){this.parent.cancel.apply(this,arguments),this.focusser.prop("disabled",!1),this.opts.shouldFocusInput(this)&&this.focusser.focus()},destroy:function(){e("label[for='"+this.focusser.attr("id")+"']").attr("for",this.opts.element.attr("id")),this.parent.destroy.apply(this,arguments),M.call(this,"selection","focusser")},initContainer:function(){var t,n,a=this.container,o=this.dropdown,s=A();this.opts.minimumResultsForSearch<0?this.showSearch(!1):this.showSearch(!0),this.selection=t=a.find(".select2-choice"),this.focusser=a.find(".select2-focusser"),t.find(".select2-chosen").attr("id","select2-chosen-"+s),this.focusser.attr("aria-labelledby","select2-chosen-"+s),this.results.attr("id","select2-results-"+s),this.search.attr("aria-owns","select2-results-"+s),this.focusser.attr("id","s2id_autogen"+s),n=e("label[for='"+this.opts.element.attr("id")+"']"),this.focusser.prev().text(n.text()).attr("for",this.focusser.attr("id"));var r=this.opts.element.attr("title");this.opts.element.attr("title",r||n.text()),this.focusser.attr("tabindex",this.elementTabIndex),this.search.attr("id",this.focusser.attr("id")+"_search"),this.search.prev().text(e("label[for='"+this.focusser.attr("id")+"']").text()).attr("for",this.search.attr("id")),this.search.on("keydown",this.bind(function(e){if(this.isInterfaceEnabled()&&229!=e.keyCode){if(e.which===I.PAGE_UP||e.which===I.PAGE_DOWN)return void g(e);switch(e.which){case I.UP:case I.DOWN:return this.moveHighlight(e.which===I.UP?-1:1),void g(e);case I.ENTER:return this.selectHighlighted(),void g(e);case I.TAB:return void this.selectHighlighted({noFocus:!0});case I.ESC:return this.cancel(e),void g(e)}}})),this.search.on("blur",this.bind(function(){document.activeElement===this.body.get(0)&&window.setTimeout(this.bind(function(){this.opened()&&this.search.focus()}),0)})),this.focusser.on("keydown",this.bind(function(e){if(this.isInterfaceEnabled()&&e.which!==I.TAB&&!I.isControl(e)&&!I.isFunctionKey(e)&&e.which!==I.ESC){if(this.opts.openOnEnter===!1&&e.which===I.ENTER)return void g(e);if(e.which==I.DOWN||e.which==I.UP||e.which==I.ENTER&&this.opts.openOnEnter){if(e.altKey||e.ctrlKey||e.shiftKey||e.metaKey)return;return this.open(),void g(e)}return e.which==I.DELETE||e.which==I.BACKSPACE?(this.opts.allowClear&&this.clear(),void g(e)):void 0}})),c(this.focusser),this.focusser.on("keyup-change input",this.bind(function(e){if(this.opts.minimumResultsForSearch>=0){if(e.stopPropagation(),this.opened())return;this.open()}})),t.on("mousedown touchstart","abbr",this.bind(function(e){this.isInterfaceEnabled()&&(this.clear(),m(e),this.close(),this.selection.focus())})),t.on("mousedown touchstart",this.bind(function(n){i(t),this.container.hasClass("select2-container-active")||this.opts.element.trigger(e.Event("select2-focus")),this.opened()?this.close():this.isInterfaceEnabled()&&this.open(),g(n)})),o.on("mousedown touchstart",this.bind(function(){this.opts.shouldFocusInput(this)&&this.search.focus()})),t.on("focus",this.bind(function(e){g(e)})),this.focusser.on("focus",this.bind(function(){this.container.hasClass("select2-container-active")||this.opts.element.trigger(e.Event("select2-focus")),this.container.addClass("select2-container-active")})).on("blur",this.bind(function(){this.opened()||(this.container.removeClass("select2-container-active"),this.opts.element.trigger(e.Event("select2-blur")))})),this.search.on("focus",this.bind(function(){this.container.hasClass("select2-container-active")||this.opts.element.trigger(e.Event("select2-focus")),this.container.addClass("select2-container-active")})),this.initContainerWidth(),this.opts.element.addClass("select2-offscreen"),this.setPlaceholder()},clear:function(t){var i=this.selection.data("select2-data");if(i){var n=e.Event("select2-clearing");if(this.opts.element.trigger(n),n.isDefaultPrevented())return;var a=this.getPlaceholderOption();this.opts.element.val(a?a.val():""),this.selection.find(".select2-chosen").empty(),this.selection.removeData("select2-data"),this.setPlaceholder(),t!==!1&&(this.opts.element.trigger({type:"select2-removed",val:this.id(i),choice:i}),this.triggerChange({removed:i}))}},initSelection:function(){if(this.isPlaceholderOptionSelected())this.updateSelection(null),this.close(),this.setPlaceholder();else{var e=this;this.opts.initSelection.call(null,this.opts.element,function(i){i!==t&&null!==i&&(e.updateSelection(i),e.close(),e.setPlaceholder(),e.nextSearchTerm=e.opts.nextSearchTerm(i,e.search.val()))})}},isPlaceholderOptionSelected:function(){var e;return this.getPlaceholder()===t?!1:(e=this.getPlaceholderOption())!==t&&e.prop("selected")||""===this.opts.element.val()||this.opts.element.val()===t||null===this.opts.element.val()},prepareOpts:function(){var t=this.parent.prepareOpts.apply(this,arguments),i=this;return"select"===t.element.get(0).tagName.toLowerCase()?t.initSelection=function(e,t){var n=e.find("option").filter(function(){return this.selected&&!this.disabled});t(i.optionToData(n))}:"data"in t&&(t.initSelection=t.initSelection||function(i,n){var a=i.val(),o=null;t.query({matcher:function(e,i,n){var r=s(a,t.id(n));return r&&(o=n),r},callback:e.isFunction(n)?function(){n(o)}:e.noop})}),t},getPlaceholder:function(){return this.select&&this.getPlaceholderOption()===t?t:this.parent.getPlaceholder.apply(this,arguments)},setPlaceholder:function(){var e=this.getPlaceholder();if(this.isPlaceholderOptionSelected()&&e!==t){if(this.select&&this.getPlaceholderOption()===t)return;this.selection.find(".select2-chosen").html(this.opts.escapeMarkup(e)),this.selection.addClass("select2-default"),this.container.removeClass("select2-allowclear")}},postprocessResults:function(e,t,i){var n=0,a=this;if(this.findHighlightableChoices().each2(function(e,t){return s(a.id(t.data("select2-data")),a.opts.element.val())?(n=e,!1):void 0}),i!==!1&&(t===!0&&n>=0?this.highlight(n):this.highlight(0)),t===!0){var o=this.opts.minimumResultsForSearch;o>=0&&this.showSearch(k(e.results)>=o)}},showSearch:function(t){this.showSearchInput!==t&&(this.showSearchInput=t,this.dropdown.find(".select2-search").toggleClass("select2-search-hidden",!t),this.dropdown.find(".select2-search").toggleClass("select2-offscreen",!t),e(this.dropdown,this.container).toggleClass("select2-with-searchbox",t))},onSelect:function(e,t){if(this.triggerSelect(e)){var i=this.opts.element.val(),n=this.data();this.opts.element.val(this.id(e)),this.updateSelection(e),this.opts.element.trigger({type:"select2-selected",val:this.id(e),choice:e}),this.nextSearchTerm=this.opts.nextSearchTerm(e,this.search.val()),this.close(),t&&t.noFocus||!this.opts.shouldFocusInput(this)||this.focusser.focus(),s(i,this.id(e))||this.triggerChange({added:e,removed:n})}},updateSelection:function(e){var i,n,a=this.selection.find(".select2-chosen");this.selection.data("select2-data",e),a.empty(),null!==e&&(i=this.opts.formatSelection(e,a,this.opts.escapeMarkup)),i!==t&&a.append(i),n=this.opts.formatSelectionCssClass(e,a),n!==t&&a.addClass(n),this.selection.removeClass("select2-default"),this.opts.allowClear&&this.getPlaceholder()!==t&&this.container.addClass("select2-allowclear")},val:function(){var e,i=!1,n=null,a=this,o=this.data();if(0===arguments.length)return this.opts.element.val();if(e=arguments[0],arguments.length>1&&(i=arguments[1]),this.select)this.select.val(e).find("option").filter(function(){return this.selected}).each2(function(e,t){return n=a.optionToData(t),!1}),this.updateSelection(n),this.setPlaceholder(),i&&this.triggerChange({added:n,removed:o});else{if(!e&&0!==e)return void this.clear(i);if(this.opts.initSelection===t)throw new Error("cannot call val() if initSelection() is not defined");this.opts.element.val(e),this.opts.initSelection(this.opts.element,function(e){a.opts.element.val(e?a.id(e):""),a.updateSelection(e),a.setPlaceholder(),i&&a.triggerChange({added:e,removed:o})})}},clearSearch:function(){this.search.val(""),this.focusser.val("")},data:function(e){var i,n=!1;return 0===arguments.length?(i=this.selection.data("select2-data"),i==t&&(i=null),i):(arguments.length>1&&(n=arguments[1]),void(e?(i=this.data(),this.opts.element.val(e?this.id(e):""),this.updateSelection(e),n&&this.triggerChange({added:e,removed:i})):this.clear(n)))}}),B=P(L,{createContainer:function(){var t=e(document.createElement("div")).attr({"class":"select2-container select2-container-multi"}).html(["
            ","
          • "," "," ","
          • ","
          ","
          ","
            ","
          ","
          "].join(""));return t},prepareOpts:function(){var t=this.parent.prepareOpts.apply(this,arguments),i=this;return"select"===t.element.get(0).tagName.toLowerCase()?t.initSelection=function(e,t){var n=[];e.find("option").filter(function(){return this.selected&&!this.disabled}).each2(function(e,t){n.push(i.optionToData(t))}),t(n)}:"data"in t&&(t.initSelection=t.initSelection||function(i,n){var a=r(i.val(),t.separator),o=[];t.query({matcher:function(i,n,r){var l=e.grep(a,function(e){return s(e,t.id(r))}).length;return l&&o.push(r),l},callback:e.isFunction(n)?function(){for(var e=[],i=0;i0||(this.selectChoice(null),this.clearPlaceholder(),this.container.hasClass("select2-container-active")||this.opts.element.trigger(e.Event("select2-focus")),this.open(),this.focusSearch(),t.preventDefault()))})),this.container.on("focus",i,this.bind(function(){this.isInterfaceEnabled()&&(this.container.hasClass("select2-container-active")||this.opts.element.trigger(e.Event("select2-focus")),this.container.addClass("select2-container-active"),this.dropdown.addClass("select2-drop-active"),this.clearPlaceholder())})),this.initContainerWidth(),this.opts.element.addClass("select2-offscreen"),this.clearSearch()},enableInterface:function(){this.parent.enableInterface.apply(this,arguments)&&this.search.prop("disabled",!this.isInterfaceEnabled())},initSelection:function(){if(""===this.opts.element.val()&&""===this.opts.element.text()&&(this.updateSelection([]),this.close(),this.clearSearch()),this.select||""!==this.opts.element.val()){var e=this;this.opts.initSelection.call(null,this.opts.element,function(i){i!==t&&null!==i&&(e.updateSelection(i),e.close(),e.clearSearch())})}},clearSearch:function(){var e=this.getPlaceholder(),i=this.getMaxSearchWidth();e!==t&&0===this.getVal().length&&this.search.hasClass("select2-focused")===!1?(this.search.val(e).addClass("select2-default"),this.search.width(i>0?i:this.container.css("width"))):this.search.val("").width(10)},clearPlaceholder:function(){this.search.hasClass("select2-default")&&this.search.val("").removeClass("select2-default")},opening:function(){this.clearPlaceholder(),this.resizeSearch(),this.parent.opening.apply(this,arguments),this.focusSearch(),""===this.search.val()&&this.nextSearchTerm!=t&&(this.search.val(this.nextSearchTerm),this.search.select()),this.updateResults(!0),this.opts.shouldFocusInput(this)&&this.search.focus(),this.opts.element.trigger(e.Event("select2-open"))},close:function(){this.opened()&&this.parent.close.apply(this,arguments)},focus:function(){this.close(),this.search.focus()},isFocused:function(){return this.search.hasClass("select2-focused")},updateSelection:function(t){var i=[],n=[],o=this;e(t).each(function(){a(o.id(this),i)<0&&(i.push(o.id(this)),n.push(this))}),t=n,this.selection.find(".select2-search-choice").remove(),e(t).each(function(){o.addSelectedChoice(this)}),o.postprocessResults()},tokenize:function(){var e=this.search.val();e=this.opts.tokenizer.call(this,e,this.data(),this.bind(this.onSelect),this.opts),null!=e&&e!=t&&(this.search.val(e),e.length>0&&this.open())},onSelect:function(e,i){this.triggerSelect(e)&&""!==e.text&&(this.addSelectedChoice(e),this.opts.element.trigger({type:"selected",val:this.id(e),choice:e}),this.nextSearchTerm=this.opts.nextSearchTerm(e,this.search.val()),this.clearSearch(),this.updateResults(),(this.select||!this.opts.closeOnSelect)&&this.postprocessResults(e,!1,this.opts.closeOnSelect===!0),this.opts.closeOnSelect?(this.close(),this.search.width(10)):this.countSelectableResults()>0?(this.search.width(10),this.resizeSearch(),this.getMaximumSelectionSize()>0&&this.val().length>=this.getMaximumSelectionSize()?this.updateResults(!0):this.nextSearchTerm!=t&&(this.search.val(this.nextSearchTerm),this.updateResults(),this.search.select()),this.positionDropdown()):(this.close(),this.search.width(10)),this.triggerChange({added:e}),i&&i.noFocus||this.focusSearch())},cancel:function(){this.close(),this.focusSearch()},addSelectedChoice:function(i){var n,a,o=!i.locked,s=e("
        • "),r=e("
        • "),l=o?s:r,c=this.id(i),d=this.getVal();n=this.opts.formatSelection(i,l.find("div"),this.opts.escapeMarkup),n!=t&&l.find("div").replaceWith("
          "+n+"
          "),a=this.opts.formatSelectionCssClass(i,l.find("div")),a!=t&&l.addClass(a),o&&l.find(".select2-search-choice-close").on("mousedown",g).on("click dblclick",this.bind(function(t){this.isInterfaceEnabled()&&(this.unselect(e(t.target)),this.selection.find(".select2-search-choice-focus").removeClass("select2-search-choice-focus"),g(t),this.close(),this.focusSearch())})).on("focus",this.bind(function(){this.isInterfaceEnabled()&&(this.container.addClass("select2-container-active"),this.dropdown.addClass("select2-drop-active"))})),l.data("select2-data",i),l.insertBefore(this.searchContainer),d.push(c),this.setVal(d)},unselect:function(t){var i,n,o=this.getVal();if(t=t.closest(".select2-search-choice"),0===t.length)throw"Invalid argument: "+t+". Must be .select2-search-choice";if(i=t.data("select2-data")){var s=e.Event("select2-removing");if(s.val=this.id(i),s.choice=i,this.opts.element.trigger(s),s.isDefaultPrevented())return!1;for(;(n=a(this.id(i),o))>=0;)o.splice(n,1),this.setVal(o),this.select&&this.postprocessResults();return t.remove(),this.opts.element.trigger({type:"select2-removed",val:this.id(i),choice:i}),this.triggerChange({removed:i}),!0}},postprocessResults:function(e,t,i){var n=this.getVal(),o=this.results.find(".select2-result"),s=this.results.find(".select2-result-with-children"),r=this;o.each2(function(e,t){var i=r.id(t.data("select2-data"));a(i,n)>=0&&(t.addClass("select2-selected"),t.find(".select2-result-selectable").addClass("select2-selected"))}),s.each2(function(e,t){t.is(".select2-result-selectable")||0!==t.find(".select2-result-selectable:not(.select2-selected)").length||t.addClass("select2-selected")}),-1==this.highlight()&&i!==!1&&r.highlight(0),!this.opts.createSearchChoice&&!o.filter(".select2-result:not(.select2-selected)").length>0&&(!e||e&&!e.more&&0===this.results.find(".select2-no-results").length)&&_(r.opts.formatNoMatches,"formatNoMatches")&&this.results.append("
        • "+T(r.opts.formatNoMatches,r.opts.element,r.search.val())+"
        • ")},getMaxSearchWidth:function(){return this.selection.width()-l(this.search)},resizeSearch:function(){var e,t,i,n,a,o=l(this.search);e=v(this.search)+10,t=this.search.offset().left,i=this.selection.width(),n=this.selection.offset().left,a=i-(t-n)-o,e>a&&(a=i-o),40>a&&(a=i-o),0>=a&&(a=e),this.search.width(Math.floor(a))},getVal:function(){var e;return this.select?(e=this.select.val(),null===e?[]:e):(e=this.opts.element.val(),r(e,this.opts.separator))},setVal:function(t){var i;this.select?this.select.val(t):(i=[],e(t).each(function(){a(this,i)<0&&i.push(this)}),this.opts.element.val(0===i.length?"":i.join(this.opts.separator)))},buildChangeDetails:function(e,t){for(var t=t.slice(0),e=e.slice(0),i=0;i0&&i--,e.splice(n,1),n--);return{added:t,removed:e}},val:function(i,n){var a,o=this;if(0===arguments.length)return this.getVal();if(a=this.data(),a.length||(a=[]),!i&&0!==i)return this.opts.element.val(""),this.updateSelection([]),this.clearSearch(),void(n&&this.triggerChange({added:this.data(),removed:a}));if(this.setVal(i),this.select)this.opts.initSelection(this.select,this.bind(this.updateSelection)),n&&this.triggerChange(this.buildChangeDetails(a,this.data()));else{if(this.opts.initSelection===t)throw new Error("val() cannot be called if initSelection() is not defined");this.opts.initSelection(this.opts.element,function(t){var i=e.map(t,o.id);o.setVal(i),o.updateSelection(t),o.clearSearch(),n&&o.triggerChange(o.buildChangeDetails(a,o.data()))})}this.clearSearch()},onSortStart:function(){if(this.select)throw new Error("Sorting of elements is not supported when attached to instead.");this.search.width(0),this.searchContainer.hide()},onSortEnd:function(){var t=[],i=this;this.searchContainer.show(),this.searchContainer.appendTo(this.searchContainer.parent()),this.resizeSearch(),this.selection.find(".select2-search-choice").each(function(){t.push(i.opts.id(e(this).data("select2-data")))}),this.setVal(t),this.triggerChange()},data:function(t,i){var n,a,o=this;return 0===arguments.length?this.selection.children(".select2-search-choice").map(function(){return e(this).data("select2-data")}).get():(a=this.data(),t||(t=[]),n=e.map(t,function(e){return o.opts.id(e)}),this.setVal(n),this.updateSelection(t),this.clearSearch(),void(i&&this.triggerChange(this.buildChangeDetails(a,this.data()))))}}),e.fn.select2=function(){var i,n,o,s,r,l=Array.prototype.slice.call(arguments,0),c=["val","destroy","opened","open","close","focus","isFocused","container","dropdown","onSortStart","onSortEnd","enable","disable","readonly","positionDropdown","data","search"],d=["opened","isFocused","container","dropdown"],h=["val","data"],u={search:"externalSearch"};return this.each(function(){if(0===l.length||"object"==typeof l[0])i=0===l.length?{}:e.extend({},l[0]),i.element=e(this),"select"===i.element.get(0).tagName.toLowerCase()?r=i.element.prop("multiple"):(r=i.multiple||!1,"tags"in i&&(i.multiple=r=!0)),n=r?new window.Select2["class"].multi:new window.Select2["class"].single,n.init(i);else{if("string"!=typeof l[0])throw"Invalid arguments to select2 plugin: "+l;if(a(l[0],c)<0)throw"Unknown method: "+l[0];if(s=t,n=e(this).data("select2"),n===t)return;if(o=l[0],"container"===o?s=n.container:"dropdown"===o?s=n.dropdown:(u[o]&&(o=u[o]),s=n[o].apply(n,l.slice(1))),a(l[0],d)>=0||a(l[0],h)>=0&&1==l.length)return!1}}),s===t?this:s},e.fn.select2.defaults={width:"copy",loadMorePadding:0,closeOnSelect:!0,openOnEnter:!0,containerCss:{},dropdownCss:{},containerCssClass:"",dropdownCssClass:"",formatResult:function(e,t,i,n){var a=[];return x(e.text,i.term,a,n),a.join("")},formatSelection:function(e,i,n){return e?n(e.text):t},sortResults:function(e){return e},formatResultCssClass:function(e){return e.css},formatSelectionCssClass:function(){return t},minimumResultsForSearch:0,minimumInputLength:0,maximumInputLength:null,maximumSelectionSize:0,id:function(e){return e==t?null:e.id},matcher:function(e,t){return n(""+t).toUpperCase().indexOf(n(""+e).toUpperCase())>=0},separator:",",tokenSeparators:[],tokenizer:E,escapeMarkup:b,blurOnChange:!1,selectOnBlur:!1,adaptContainerCssClass:function(e){return e},adaptDropdownCssClass:function(){return null},nextSearchTerm:function(){return t},searchInputPlaceholder:"",createSearchChoicePosition:"top",shouldFocusInput:function(e){var t="ontouchstart"in window||navigator.msMaxTouchPoints>0;return t&&e.opts.minimumResultsForSearch<0?!1:!0}},e.fn.select2.locales=[],e.fn.select2.locales.en={formatMatches:function(e){return 1===e?"One result is available, press enter to select it.":e+" results are available, use up and down arrow keys to navigate."},formatNoMatches:function(){return"No matches found"},formatAjaxError:function(){return"Loading failed"},formatInputTooShort:function(e,t){var i=t-e.length;return"Please enter "+i+" or more character"+(1==i?"":"s")},formatInputTooLong:function(e,t){var i=e.length-t;return"Please delete "+i+" character"+(1==i?"":"s")},formatSelectionTooBig:function(e){return"You can only select "+e+" item"+(1==e?"":"s")},formatLoadMore:function(){return"Loading more results…"},formatSearching:function(){return"Searching…"}},e.extend(e.fn.select2.defaults,e.fn.select2.locales.en),e.fn.select2.ajaxDefaults={transport:e.ajax,params:{type:"GET",cache:!1,dataType:"json"}},window.Select2={query:{ajax:y,local:C,tags:S},util:{debounce:h,markMatch:x,escapeMarkup:b,stripDiacritics:n},"class":{"abstract":L,single:O,multi:B}}}}(jQuery),function(e){"use strict";function t(e){return" "+e+" символ"+(5>e%10&&e%10>0&&(5>e%100||e%100>20)?e%10>1?"a":"":"ов")}e.fn.select2.locales.ru={formatNoMatches:function(){return"Совпадений не найдено"},formatInputTooShort:function(e,i){return"Пожалуйста, введите еще хотя бы"+t(i-e.length)},formatInputTooLong:function(e,i){return"Пожалуйста, введите на"+t(e.length-i)+" меньше"},formatSelectionTooBig:function(e){return"Вы можете выбрать не более "+e+" элемент"+(e%10==1&&e%100!=11?"а":"ов")},formatLoadMore:function(e){return"Загрузка данных…"},formatSearching:function(){return"Поиск…"}},e.extend(e.fn.select2.defaults,e.fn.select2.locales.ru)}(jQuery),jQuery(function(e){e.datepicker.regional.ru={closeText:"Закрыть",prevText:"<Пред",nextText:"След>",currentText:"Сегодня",monthNames:["Январь","Февраль","Март","Апрель","Май","Июнь","Июль","Август","Сентябрь","Октябрь","Ноябрь","Декабрь"],monthNamesShort:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],dayNames:["воскресенье","понедельник","вторник","среда","четверг","пятница","суббота"],dayNamesShort:["вск","пнд","втр","срд","чтв","птн","сбт"],dayNamesMin:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],weekHeader:"Нед",dateFormat:"dd.mm.yy",firstDay:1,isRTL:!1,showMonthAfterYear:!1,yearSuffix:""},e.datepicker.setDefaults(e.datepicker.regional.ru)}),function(e){function t(t){var i=t||window.event,n=[].slice.call(arguments,1),a=0,o=0,s=0;return t=e.event.fix(i),t.type="mousewheel",i.wheelDelta&&(a=i.wheelDelta/120),i.detail&&(a=-i.detail/3),s=a,void 0!==i.axis&&i.axis===i.HORIZONTAL_AXIS&&(s=0,o=-1*a),void 0!==i.wheelDeltaY&&(s=i.wheelDeltaY/120),void 0!==i.wheelDeltaX&&(o=-1*i.wheelDeltaX/120),n.unshift(t,a,o,s),(e.event.dispatch||e.event.handle).apply(this,n)}var i=["DOMMouseScroll","mousewheel"];if(e.event.fixHooks)for(var n=i.length;n;)e.event.fixHooks[i[--n]]=e.event.mouseHooks;e.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var e=i.length;e;)this.addEventListener(i[--e],t,!1);else this.onmousewheel=t; +},teardown:function(){if(this.removeEventListener)for(var e=i.length;e;)this.removeEventListener(i[--e],t,!1);else this.onmousewheel=null}},e.fn.extend({mousewheel:function(e){return e?this.bind("mousewheel",e):this.trigger("mousewheel")},unmousewheel:function(e){return this.unbind("mousewheel",e)}})}(jQuery);var Swiper=function(e,t){function i(e,t){return document.querySelectorAll?(t||document).querySelectorAll(e):jQuery(e,t)}function n(){var e=k-P;return t.freeMode&&(e=k-P),t.slidesPerView>S.slides.length&&(e=0),0>e&&(e=0),e}function a(){function e(e){var i=new Image;i.onload=function(){S.imagesLoaded++,S.imagesLoaded==S.imagesToLoad.length&&(S.reInit(),t.onImagesReady&&S.fireCallback(t.onImagesReady,S))},i.src=e}var n=S.h.addEventListener;if(S.browser.ie10?(n(S.wrapper,S.touchEvents.touchStart,f),n(document,S.touchEvents.touchMove,g),n(document,S.touchEvents.touchEnd,m)):(S.support.touch&&(n(S.wrapper,"touchstart",f),n(S.wrapper,"touchmove",g),n(S.wrapper,"touchend",m)),t.simulateTouch&&(n(S.wrapper,"mousedown",f),n(document,"mousemove",g),n(document,"mouseup",m))),t.autoResize&&n(window,"resize",S.resizeFix),o(),S._wheelEvent=!1,t.mousewheelControl){void 0!==document.onmousewheel&&(S._wheelEvent="mousewheel");try{WheelEvent("wheel"),S._wheelEvent="wheel"}catch(a){}S._wheelEvent||(S._wheelEvent="DOMMouseScroll"),S._wheelEvent&&n(S.container,S._wheelEvent,l)}if(t.keyboardControl&&n(document,"keydown",r),t.updateOnImagesReady)for(S.imagesToLoad=i("img",S.container),n=0;n=a&&c[0]<=a+s&&c[1]>=o&&c[1]<=o+r&&(i=!0)}if(!i)return}O?((37==t||39==t)&&(e.preventDefault?e.preventDefault():e.returnValue=!1),39==t&&S.swipeNext(),37==t&&S.swipePrev()):((38==t||40==t)&&(e.preventDefault?e.preventDefault():e.returnValue=!1),40==t&&S.swipeNext(),38==t&&S.swipePrev())}function l(e){var i=S._wheelEvent,a=0;if(e.detail)a=-e.detail;else if("mousewheel"==i)if(O){if(!(Math.abs(e.wheelDeltaX)>Math.abs(e.wheelDeltaY)))return;a=e.wheelDeltaX}else{if(!(Math.abs(e.wheelDeltaY)>Math.abs(e.wheelDeltaX)))return;a=e.wheelDeltaY}else if("DOMMouseScroll"==i)a=-e.detail;else if("wheel"==i)if(O){if(!(Math.abs(e.deltaX)>Math.abs(e.deltaY)))return;a=-e.deltaX}else{if(!(Math.abs(e.deltaY)>Math.abs(e.deltaX)))return;a=-e.deltaY}if(t.freeMode){if(i=S.getWrapperTranslate()+a,i>0&&(i=0),i<-n()&&(i=-n()),S.setWrapperTransition(0),S.setWrapperTranslate(i),S.updateActiveSlide(i),0==i||i==-n())return}else 60<(new Date).getTime()-D&&(0>a?S.swipeNext():S.swipePrev()),D=(new Date).getTime();return t.autoplay&&S.stopAutoplay(!0),e.preventDefault?e.preventDefault():e.returnValue=!1,!1}function c(e){S.allowSlideClick&&(h(e),S.fireCallback(t.onSlideClick,S,e))}function d(e){h(e),S.fireCallback(t.onSlideTouch,S,e)}function h(e){if(e.currentTarget)S.clickedSlide=e.currentTarget;else{e=e.srcElement;do if(-1Math.abs(i-S.touches.startX))),"undefined"!=typeof M||O||(M=!!(M||Math.abs(a-S.touches.startY)e?P/2:S.positions.current*e),S.positions.current<-n()&&(i=(S.touches.current-S.touches.start)*t.touchRatio+(n()+S.positions.start),e=(P+i)/P,i=S.positions.current-i*(1-e)/2,a=-n()-P/2,S.positions.current=a>i||0>=e?a:i)),t.resistance&&"100%"==t.resistance&&(0t.moveStartThreshold||R?(R=!0,S.setWrapperTranslate(S.positions.current)):S.positions.current=S.positions.start:S.setWrapperTranslate(S.positions.current),(t.freeMode||t.watchActiveIndex)&&S.updateActiveSlide(S.positions.current),t.grabCursor&&(S.container.style.cursor="move",S.container.style.cursor="grabbing",S.container.style.cursor="-moz-grabbin",S.container.style.cursor="-webkit-grabbing"),W||(W=S.touches.current),H||(H=(new Date).getTime()),S.velocity=(S.touches.current-W)/((new Date).getTime()-H)/2,2>Math.abs(S.touches.current-W)&&(S.velocity=0),W=S.touches.current,H=(new Date).getTime(),S.callPlugins("onTouchMoveEnd"),t.onTouchMove&&S.fireCallback(t.onTouchMove,S),!1}}function m(e){if(M&&S.swipeReset(),!t.onlyExternal&&S.isTouched){S.isTouched=!1,t.grabCursor&&(S.container.style.cursor="move",S.container.style.cursor="grab",S.container.style.cursor="-moz-grab",S.container.style.cursor="-webkit-grab"),S.positions.current||0===S.positions.current||(S.positions.current=S.positions.start),t.followFinger&&S.setWrapperTranslate(S.positions.current),S.times.end=(new Date).getTime(),S.touches.diff=S.touches.current-S.touches.start,S.touches.abs=Math.abs(S.touches.diff),S.positions.diff=S.positions.current-S.positions.start,S.positions.abs=Math.abs(S.positions.diff);var i=S.positions.diff,a=S.positions.abs;e=S.times.end-S.times.start,5>a&&300>e&&0==S.allowLinks&&(t.freeMode||0==a||S.swipeReset(),t.preventLinks&&(S.allowLinks=!0),t.onSlideClick&&(S.allowSlideClick=!0)),setTimeout(function(){t.preventLinks&&(S.allowLinks=!0),t.onSlideClick&&(S.allowSlideClick=!0)},100);var o=n();if(!S.isMoved&&t.freeMode)S.isMoved=!1,t.onTouchEnd&&S.fireCallback(t.onTouchEnd,S);else if(!S.isMoved||0i&&(t.momentumBounce&&S.support.transitions?(-l>i+o&&(i=-o-l),s=-o,F=r=!0):i=-o),i>0&&(t.momentumBounce&&S.support.transitions?(i>l&&(i=l),s=0,F=r=!0):i=0),0!=S.velocity&&(a=Math.abs((i-S.positions.current)/S.velocity)),S.setWrapperTranslate(i),S.setWrapperTransition(a),t.momentumBounce&&r&&S.wrapperTransitionEnd(function(){F&&(t.onMomentumBounce&&S.fireCallback(t.onMomentumBounce,S),S.callPlugins("onMomentumBounce"),S.setWrapperTranslate(s),S.setWrapperTransition(300))}),S.updateActiveSlide(i)}(!t.freeModeFluid||e>=300)&&S.updateActiveSlide(S.positions.current),t.onTouchEnd&&S.fireCallback(t.onTouchEnd,S)}else{if(E=0>i?"toNext":"toPrev","toNext"==E&&300>=e&&(30>a||!t.shortSwipes?S.swipeReset():S.swipeNext(!0)),"toPrev"==E&&300>=e&&(30>a||!t.shortSwipes?S.swipeReset():S.swipePrev(!0)),o=0,"auto"==t.slidesPerView){for(var i=Math.abs(S.getWrapperTranslate()),c=r=0;ci){o=l;break}o>P&&(o=P)}else o=T*t.slidesPerView;"toNext"==E&&e>300&&(a>=.5*o?S.swipeNext(!0):S.swipeReset()),"toPrev"==E&&e>300&&(a>=.5*o?S.swipePrev(!0):S.swipeReset()),t.onTouchEnd&&t.onTouchEnd(S)}S.callPlugins("onTouchEnd")}}function v(e,i,n){function a(){s+=r,(c="toNext"==l?s>e:e>s)?(S.setWrapperTranslate(Math.round(s)),S._DOMAnimating=!0,window.setTimeout(function(){a()},1e3/60)):(t.onSlideChangeEnd&&S.fireCallback(t.onSlideChangeEnd,S),S.setWrapperTranslate(e),S._DOMAnimating=!1)}var o="to"==i&&0<=n.speed?n.speed:t.speed;if(S.support.transitions||!t.DOMAnimation)S.setWrapperTranslate(e),S.setWrapperTransition(o);else{var s=S.getWrapperTranslate(),r=Math.ceil((e-s)/o*(1e3/60)),l=s>e?"toNext":"toPrev",c="toNext"==l?s>e:e>s;if(S._DOMAnimating)return;a()}S.updateActiveSlide(e),t.onSlideNext&&"next"==i&&S.fireCallback(t.onSlideNext,S,e),t.onSlidePrev&&"prev"==i&&S.fireCallback(t.onSlidePrev,S,e),t.onSlideReset&&"reset"==i&&S.fireCallback(t.onSlideReset,S,e),("next"==i||"prev"==i||"to"==i&&1==n.runCallbacks)&&w(i)}function w(e){if(S.callPlugins("onSlideChangeStart"),t.onSlideChangeStart)if(t.queueStartCallbacks&&S.support.transitions){if(S._queueStartCallbacks)return;S._queueStartCallbacks=!0,S.fireCallback(t.onSlideChangeStart,S,e),S.wrapperTransitionEnd(function(){S._queueStartCallbacks=!1})}else S.fireCallback(t.onSlideChangeStart,S,e);t.onSlideChangeEnd&&(S.support.transitions?t.queueEndCallbacks?S._queueEndCallbacks||(S._queueEndCallbacks=!0,S.wrapperTransitionEnd(function(i){S.fireCallback(t.onSlideChangeEnd,i,e)})):S.wrapperTransitionEnd(function(i){S.fireCallback(t.onSlideChangeEnd,i,e)}):t.DOMAnimation||setTimeout(function(){S.fireCallback(t.onSlideChangeStart,S,e)},10))}function x(){for(var e=S.paginationButtons,t=0;ti;i++)if(this[i]===e)return i;return-1}),(document.querySelectorAll||window.jQuery)&&"undefined"!=typeof e&&(e.nodeType||0!==i(e).length)){var S=this;S.touches={start:0,startX:0,startY:0,current:0,currentX:0,currentY:0,diff:0,abs:0},S.positions={start:0,abs:0,diff:0,current:0},S.times={start:0,end:0},S.id=(new Date).getTime(),S.container=e.nodeType?e:i(e)[0],S.isTouched=!1,S.isMoved=!1,S.activeIndex=0,S.centerIndex=0,S.activeLoaderIndex=0,S.activeLoopIndex=0,S.previousIndex=null,S.velocity=0,S.snapGrid=[],S.slidesGrid=[],S.imagesToLoad=[],S.imagesLoaded=0,S.wrapperLeft=0,S.wrapperRight=0,S.wrapperTop=0,S.wrapperBottom=0;var _,T,k,E,M,P,C={mode:"horizontal",touchRatio:1,speed:300,freeMode:!1,freeModeFluid:!1,momentumRatio:1,momentumBounce:!0,momentumBounceRatio:1,slidesPerView:1,slidesPerGroup:1,simulateTouch:!0,followFinger:!0,shortSwipes:!0,moveStartThreshold:!1,onlyExternal:!1,createPagination:!0,pagination:!1,paginationElement:"span",paginationClickable:!1,paginationAsRange:!0,resistance:!0,scrollContainer:!1,preventLinks:!0,noSwiping:!1,noSwipingClass:"swiper-no-swiping",initialSlide:0,keyboardControl:!1,mousewheelControl:!1,useCSS3Transforms:!0,autoplay:!1,autoplayDisableOnInteraction:!0,loop:!1,loopAdditionalSlides:0,calculateHeight:!1,cssWidthAndHeight:!1,updateOnImagesReady:!0,releaseFormElements:!0,watchActiveIndex:!1,visibilityFullFit:!1,offsetPxBefore:0,offsetPxAfter:0,offsetSlidesBefore:0,offsetSlidesAfter:0,centeredSlides:!1,queueStartCallbacks:!1,queueEndCallbacks:!1,autoResize:!0,resizeReInit:!1,DOMAnimation:!0,loader:{slides:[],slidesHTMLType:"inner",surroundGroups:1,logic:"reload",loadAllSlides:!1},slideElement:"div",slideClass:"swiper-slide",slideActiveClass:"swiper-slide-active",slideVisibleClass:"swiper-slide-visible",wrapperClass:"swiper-wrapper",paginationElementClass:"swiper-pagination-switch",paginationActiveClass:"swiper-active-switch",paginationVisibleClass:"swiper-visible-switch"};t=t||{};for(var I in C)if(I in t&&"object"==typeof t[I])for(var L in C[I])L in t[I]||(t[I][L]=C[I][L]);else I in t||(t[I]=C[I]);S.params=t,t.scrollContainer&&(t.freeMode=!0,t.freeModeFluid=!0),t.loop&&(t.resistance="100%");var O="horizontal"===t.mode;for(S.touchEvents={touchStart:S.support.touch||!t.simulateTouch?"touchstart":S.browser.ie10?"MSPointerDown":"mousedown",touchMove:S.support.touch||!t.simulateTouch?"touchmove":S.browser.ie10?"MSPointerMove":"mousemove",touchEnd:S.support.touch||!t.simulateTouch?"touchend":S.browser.ie10?"MSPointerUp":"mouseup"},I=S.container.childNodes.length-1;I>=0;I--)if(S.container.childNodes[I].className)for(L=S.container.childNodes[I].className.split(" "),C=0;C=0;i--)e===S.slides[i]&&(t=i);return t},e.isActive=function(){return e.index()===S.activeIndex?!0:!1},e.swiperSlideDataStorage||(e.swiperSlideDataStorage={}),e.getData=function(t){return e.swiperSlideDataStorage[t]},e.setData=function(t,i){return e.swiperSlideDataStorage[t]=i,e},e.data=function(t,i){return i?(e.setAttribute("data-"+t,i),e):e.getAttribute("data-"+t)},e.getWidth=function(t){return S.h.getWidth(e,t)},e.getHeight=function(t){return S.h.getHeight(e,t)},e.getOffset=function(){return S.h.getOffset(e)},e},S.calcSlides=function(e){var i=S.slides?S.slides.length:!1;S.slides=[],S.displaySlides=[];for(var n=0;n=0;n--)S._extendSwiperSlide(S.slides[n]);!1===i||i===S.slides.length&&!e||(s(),o(),S.updateActiveSlide(),S.params.pagination&&S.createPagination(),S.callPlugins("numberOfSlidesChanged"))},S.createSlide=function(e,i,n){return i=i||S.params.slideClass,n=n||t.slideElement,n=document.createElement(n),n.innerHTML=e||"",n.className=i,S._extendSwiperSlide(n)},S.appendSlide=function(e,t,i){return e?e.nodeType?S._extendSwiperSlide(e).append():S.createSlide(e,t,i).append():void 0},S.prependSlide=function(e,t,i){return e?e.nodeType?S._extendSwiperSlide(e).prepend():S.createSlide(e,t,i).prepend():void 0},S.insertSlideAfter=function(e,t,i,n){return"undefined"==typeof e?!1:t.nodeType?S._extendSwiperSlide(t).insertAfter(e):S.createSlide(t,i,n).insertAfter(e)},S.removeSlide=function(e){if(S.slides[e]){if(t.loop){if(!S.slides[e+S.loopedSlides])return!1;S.slides[e+S.loopedSlides].remove(),S.removeLoopedSlides(),S.calcSlides(),S.createLoop()}else S.slides[e].remove();return!0}return!1},S.removeLastSlide=function(){return 0=0;e--)S.slides[e].remove()},S.getSlide=function(e){return S.slides[e]},S.getLastSlide=function(){return S.slides[S.slides.length-1]},S.getFirstSlide=function(){return S.slides[0]},S.activeSlide=function(){return S.slides[S.activeIndex]};var B,A=[];for(B in S.plugins)t[B]&&(I=S.plugins[B](S,t[B]))&&A.push(I);S.callPlugins=function(e,t){t||(t={});for(var i=0;iP){for(f=0;f<=Math.floor(u/(P+S.wrapperLeft));f++)0===f?S.snapGrid.push(r+S.wrapperLeft):S.snapGrid.push(r+S.wrapperLeft+P*f);S.slidesGrid.push(r+S.wrapperLeft)}else S.snapGrid.push(l),S.slidesGrid.push(l);l+=u/2+p/2}else{if(u>P)for(f=0;f<=Math.floor(u/P);f++)S.snapGrid.push(r+P*f);else S.snapGrid.push(r);S.slidesGrid.push(r)}r+=u,o+=a,s+=h}t.calculateHeight&&(S.height=c),O?(k=o+S.wrapperRight+S.wrapperLeft,n.style.width=o+"px",n.style.height=S.height+"px"):(k=s+S.wrapperTop+S.wrapperBottom,n.style.width=S.width+"px",n.style.height=s+"px")}else if(t.scrollContainer)n.style.width="",n.style.height="",c=S.slides[0].getWidth(!0),o=S.slides[0].getHeight(!0),k=O?c:o,n.style.width=c+"px",n.style.height=o+"px",T=O?c:o;else{if(t.calculateHeight){for(o=c=0,O||(S.container.style.height=""),n.style.height="",d=0;d=S.snapGrid[a]&&-eS.snapGrid[n]&&-e0&&(i=0),i==e?!1:(v(i,"prev"),!0)},S.swipeReset=function(){S.callPlugins("onSwipeReset");var e=S.getWrapperTranslate(),i=T*t.slidesPerGroup;if(n(),"auto"==t.slidesPerView){for(var a=i=0;a=S.snapGrid[a]&&-e=S.snapGrid[S.snapGrid.length-1]&&(i=-S.snapGrid[S.snapGrid.length-1]),e<=-n()&&(i=-n())}else i=0>e?Math.round(e/i)*i:0;return t.scrollContainer&&(i=0>e?e:0),i<-n()&&(i=-n()),t.scrollContainer&&P>T&&(i=0),i==e?!1:(v(i,"reset"),!0)},S.swipeTo=function(e,i,a){e=parseInt(e,10),S.callPlugins("onSwipeTo",{index:e,speed:i}),t.loop&&(e+=S.loopedSlides);var o=S.getWrapperTranslate();if(!(e>S.slides.length-1||0>e)){var s;return s="auto"==t.slidesPerView?-S.slidesGrid[e]:-e*T,s<-n()&&(s=-n()),s==o?!1:(v(s,"to",{index:e,speed:i,runCallbacks:!1===a?!1:!0}),!0)}},S._queueStartCallbacks=!1,S._queueEndCallbacks=!1,S.updateActiveSlide=function(e){if(S.initialized&&0!=S.slides.length){if(S.previousIndex=S.activeIndex,"undefined"==typeof e&&(e=S.getWrapperTranslate()),e>0&&(e=0),"auto"==t.slidesPerView){if(S.activeIndex=S.slidesGrid.indexOf(-e),0>S.activeIndex){for(var i=0;iS.slidesGrid[i]&&-e=n?i:i+1}}else S.activeIndex=Math[t.visibilityFullFit?"ceil":"round"](-e/T);if(S.activeIndex==S.slides.length&&(S.activeIndex=S.slides.length-1),0>S.activeIndex&&(S.activeIndex=0),S.slides[S.activeIndex]){for(S.calcVisibleSlides(e),n=RegExp("\\s*"+t.slideActiveClass),a=RegExp("\\s*"+t.slideVisibleClass),i=0;i=S.slides.length-2*i&&(S.activeLoopIndex=S.slides.length-2*i-S.activeLoopIndex),0>S.activeLoopIndex&&(S.activeLoopIndex=S.slides.length-2*i+S.activeLoopIndex)):S.activeLoopIndex=S.activeIndex,t.pagination&&S.updatePagination(e)}}},S.createPagination=function(e){if(t.paginationClickable&&S.paginationButtons&&x(),S.paginationContainer=t.pagination.nodeType?t.pagination:i(t.pagination)[0],t.createPagination){var n="",a=S.slides.length;t.loop&&(a-=2*S.loopedSlides);for(var o=0;a>o;o++)n+="<"+t.paginationElement+' class="'+t.paginationElementClass+'">";S.paginationContainer.innerHTML=n}if(S.paginationButtons=i("."+t.paginationElementClass,S.paginationContainer),e||S.updatePagination(),S.callPlugins("onCreatePagination"),t.paginationClickable)for(e=S.paginationButtons,n=0;nS.slides.length)&&i("."+t.paginationActiveClass,S.paginationContainer)){var n=S.paginationButtons;if(0!=n.length){for(var a=0;as&&(s=S.slides.length-2*S.loopedSlides+s),t.loop&&s>=S.slides.length-2*S.loopedSlides&&(s=S.slides.length-2*S.loopedSlides-s,s=Math.abs(s)),e.push(s)}for(a=0;a=-e&&-e+P>=o&&(r=!0),-e>=n&&o>=-e+P&&(r=!0)):(o>-e&&-e+P>=o&&(r=!0),n>=-e&&-e+P>n&&(r=!0),-e>n&&o>-e+P&&(r=!0)),r&&i.push(S.slides[s])}0==i.length&&(i=[S.slides[S.activeIndex]]),S.visibleSlides=i};var N=void 0;S.startAutoplay=function(){return"undefined"!=typeof N?!1:void(t.autoplay&&(S.callPlugins("onAutoplayStart"),y()))},S.stopAutoplay=function(e){N&&clearTimeout(N),N=void 0,e&&!t.autoplayDisableOnInteraction&&S.wrapperTransitionEnd(function(){y()}),S.callPlugins("onAutoplayStop")},S.loopCreated=!1,S.removeLoopedSlides=function(){if(S.loopCreated)for(var e=0;eS.slides.length&&(S.loopedSlides=S.slides.length);var e,i="",n="",a="",o=S.slides.length,s=Math.floor(S.loopedSlides/o),r=S.loopedSlides%o;for(e=0;s*o>e;e++){var l=e;e>=o&&(l=e-o*Math.floor(e/o)),a+=S.slides[l].outerHTML}for(e=0;r>e;e++)n+=S.slides[e].outerHTML;for(e=o-r;o>e;e++)i+=S.slides[e].outerHTML;for(_.innerHTML=i+a+_.innerHTML+a+n,S.loopCreated=!0,S.calcSlides(),e=0;e=S.slides.length-S.loopedSlides)&&S.slides[e].setData("looped",!0);S.callPlugins("onCreateLoop")}},S.fixLoop=function(){var e;S.activeIndexS.slides.length-2*t.slidesPerView&&(e=-S.slides.length+S.activeIndex+S.loopedSlides,S.swipeTo(e,0,!1))},S.loadSlides=function(){var e="";S.activeLoaderIndex=0;for(var i=t.loader.slides,n=t.loader.loadAllSlides?i.length:t.slidesPerView*(1+t.loader.surroundGroups),a=0;n>a;a++)e="outer"==t.loader.slidesHTMLType?e+i[a]:e+("<"+t.slideElement+' class="'+t.slideClass+'" data-swiperindex="'+a+'">'+i[a]+"");S.wrapper.innerHTML=e,S.calcSlides(!0),t.loader.loadAllSlides||S.wrapperTransitionEnd(S.reloadSlides,!0)},S.reloadSlides=function(){var e=t.loader.slides,i=parseInt(S.activeSlide().data("swiperindex"),10);if(!(0>i||i>e.length-1)){S.activeLoaderIndex=i;var n=Math.max(0,i-t.slidesPerView*t.loader.surroundGroups),a=Math.min(i+t.slidesPerView*(1+t.loader.surroundGroups)-1,e.length-1); +if(i>0&&(S.setWrapperTranslate(-T*(i-n)),S.setWrapperTransition(0)),"reload"===t.loader.logic){for(var o=S.wrapper.innerHTML="",i=n;a>=i;i++)o+="outer"==t.loader.slidesHTMLType?e[i]:"<"+t.slideElement+' class="'+t.slideClass+'" data-swiperindex="'+i+'">'+e[i]+"";S.wrapper.innerHTML=o}else{for(var o=1e3,s=0,i=0;ir||r>a?S.wrapper.removeChild(S.slides[i]):(o=Math.min(r,o),s=Math.max(r,s))}for(i=n;a>=i;i++)o>i&&(n=document.createElement(t.slideElement),n.className=t.slideClass,n.setAttribute("data-swiperindex",i),n.innerHTML=e[i],S.wrapper.insertBefore(n,S.wrapper.firstChild)),i>s&&(n=document.createElement(t.slideElement),n.className=t.slideClass,n.setAttribute("data-swiperindex",i),n.innerHTML=e[i],S.wrapper.appendChild(n))}S.reInit(!0)}},S.calcSlides(),0e}(),ie10:window.navigator.msPointerEnabled}},(window.jQuery||window.Zepto)&&function(e){e.fn.swiper=function(t){return t=new Swiper(e(this)[0],t),e(this).data("swiper",t),t}}(window.jQuery||window.Zepto),"undefined"!=typeof module&&(module.exports=Swiper),!function(e){"function"==typeof define&&define.amd?define(["jquery"],e):"object"==typeof exports?module.exports=e:e(jQuery)}(function(e){function t(t){var s=t||window.event,r=l.call(arguments,1),c=0,h=0,u=0,p=0,f=0,g=0;if(t=e.event.fix(s),t.type="mousewheel","detail"in s&&(u=-1*s.detail),"wheelDelta"in s&&(u=s.wheelDelta),"wheelDeltaY"in s&&(u=s.wheelDeltaY),"wheelDeltaX"in s&&(h=-1*s.wheelDeltaX),"axis"in s&&s.axis===s.HORIZONTAL_AXIS&&(h=-1*u,u=0),c=0===u?h:u,"deltaY"in s&&(u=-1*s.deltaY,c=u),"deltaX"in s&&(h=s.deltaX,0===u&&(c=-1*h)),0!==u||0!==h){if(1===s.deltaMode){var m=e.data(this,"mousewheel-line-height");c*=m,u*=m,h*=m}else if(2===s.deltaMode){var v=e.data(this,"mousewheel-page-height");c*=v,u*=v,h*=v}if(p=Math.max(Math.abs(u),Math.abs(h)),(!o||o>p)&&(o=p,n(s,p)&&(o/=40)),n(s,p)&&(c/=40,h/=40,u/=40),c=Math[c>=1?"floor":"ceil"](c/o),h=Math[h>=1?"floor":"ceil"](h/o),u=Math[u>=1?"floor":"ceil"](u/o),d.settings.normalizeOffset&&this.getBoundingClientRect){var w=this.getBoundingClientRect();f=t.clientX-w.left,g=t.clientY-w.top}return t.deltaX=h,t.deltaY=u,t.deltaFactor=o,t.offsetX=f,t.offsetY=g,t.deltaMode=0,r.unshift(t,c,h,u),a&&clearTimeout(a),a=setTimeout(i,200),(e.event.dispatch||e.event.handle).apply(this,r)}}function i(){o=null}function n(e,t){return d.settings.adjustOldDeltas&&"mousewheel"===e.type&&t%120===0}var a,o,s=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],r="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],l=Array.prototype.slice;if(e.event.fixHooks)for(var c=s.length;c;)e.event.fixHooks[s[--c]]=e.event.mouseHooks;var d=e.event.special.mousewheel={version:"3.1.11",setup:function(){if(this.addEventListener)for(var i=r.length;i;)this.addEventListener(r[--i],t,!1);else this.onmousewheel=t;e.data(this,"mousewheel-line-height",d.getLineHeight(this)),e.data(this,"mousewheel-page-height",d.getPageHeight(this))},teardown:function(){if(this.removeEventListener)for(var i=r.length;i;)this.removeEventListener(r[--i],t,!1);else this.onmousewheel=null;e.removeData(this,"mousewheel-line-height"),e.removeData(this,"mousewheel-page-height")},getLineHeight:function(t){var i=e(t)["offsetParent"in e.fn?"offsetParent":"parent"]();return i.length||(i=e("body")),parseInt(i.css("fontSize"),10)},getPageHeight:function(t){return e(t).height()},settings:{adjustOldDeltas:!0,normalizeOffset:!0}};e.fn.extend({mousewheel:function(e){return e?this.bind("mousewheel",e):this.trigger("mousewheel")},unmousewheel:function(e){return this.unbind("mousewheel",e)}})}),function(e,t,i){!function(e){e(jQuery)}(function(i){var n="mCustomScrollbar",a="mCS",o=".mCustomScrollbar",s={setWidth:!1,setHeight:!1,setTop:0,setLeft:0,axis:"y",scrollbarPosition:"inside",scrollInertia:950,autoDraggerLength:!0,autoHideScrollbar:!1,autoExpandScrollbar:!1,alwaysShowScrollbar:0,snapAmount:null,snapOffset:0,mouseWheel:{enable:!0,scrollAmount:"auto",axis:"y",preventDefault:!1,deltaFactor:"auto",normalizeDelta:!1,invert:!1,disableOver:["select","option","keygen","datalist","textarea"]},scrollButtons:{enable:!1,scrollType:"stepless",scrollAmount:"auto"},keyboard:{enable:!0,scrollType:"stepless",scrollAmount:"auto"},contentTouchScroll:25,advanced:{autoExpandHorizontalScroll:!1,autoScrollOnFocus:"input,textarea,select,button,datalist,keygen,a[tabindex],area,object,[contenteditable='true']",updateOnContentResize:!0,updateOnImageLoad:!0,updateOnSelectorChange:!1},theme:"light",callbacks:{onScrollStart:!1,onScroll:!1,onTotalScroll:!1,onTotalScrollBack:!1,whileScrolling:!1,onTotalScrollOffset:0,onTotalScrollBackOffset:0,alwaysTriggerOffsets:!0,onOverflowY:!1,onOverflowX:!1,onOverflowYNone:!1,onOverflowXNone:!1},live:!1,liveSelector:null},r=0,l={},c=function(e){l[e]&&(clearTimeout(l[e]),p._delete.call(null,l[e]))},d=e.attachEvent&&!e.addEventListener?1:0,h=!1,u={init:function(e){var e=i.extend(!0,{},s,e),t=p._selector.call(this);if(e.live){var n=e.liveSelector||this.selector||o,d=i(n);if("off"===e.live)return void c(n);l[n]=setTimeout(function(){d.mCustomScrollbar(e),"once"===e.live&&d.length&&c(n)},500)}else c(n);return e.setWidth=e.set_width?e.set_width:e.setWidth,e.setHeight=e.set_height?e.set_height:e.setHeight,e.axis=e.horizontalScroll?"x":p._findAxis.call(null,e.axis),e.scrollInertia=e.scrollInertia>0&&e.scrollInertia<17?17:e.scrollInertia,"object"!=typeof e.mouseWheel&&1==e.mouseWheel&&(e.mouseWheel={enable:!0,scrollAmount:"auto",axis:"y",preventDefault:!1,deltaFactor:"auto",normalizeDelta:!1,invert:!1}),e.mouseWheel.scrollAmount=e.mouseWheelPixels?e.mouseWheelPixels:e.mouseWheel.scrollAmount,e.mouseWheel.normalizeDelta=e.advanced.normalizeMouseWheelDelta?e.advanced.normalizeMouseWheelDelta:e.mouseWheel.normalizeDelta,e.scrollButtons.scrollType=p._findScrollButtonsType.call(null,e.scrollButtons.scrollType),p._theme.call(null,e),i(t).each(function(){var t=i(this);if(!t.data(a)){t.data(a,{idx:++r,opt:e,scrollRatio:{y:null,x:null},overflowed:null,contentReset:{y:null,x:null},bindEvents:!1,tweenRunning:!1,sequential:{},langDir:t.css("direction"),cbOffsets:null,trigger:null});var n=t.data(a).opt,o=t.data("mcs-axis"),s=t.data("mcs-scrollbar-position"),l=t.data("mcs-theme");o&&(n.axis=o),s&&(n.scrollbarPosition=s),l&&(n.theme=l,p._theme.call(null,n)),p._pluginMarkup.call(this),u.update.call(null,t)}})},update:function(e){var t=e||p._selector.call(this);return i(t).each(function(){var e=i(this);if(e.data(a)){var t=e.data(a),n=t.opt,o=i("#mCSB_"+t.idx+"_container"),s=[i("#mCSB_"+t.idx+"_dragger_vertical"),i("#mCSB_"+t.idx+"_dragger_horizontal")];if(!o.length)return;t.tweenRunning&&p._stop.call(null,e),e.hasClass("mCS_disabled")&&e.removeClass("mCS_disabled"),e.hasClass("mCS_destroyed")&&e.removeClass("mCS_destroyed"),p._maxHeight.call(this),p._expandContentHorizontally.call(this),"y"===n.axis||n.advanced.autoExpandHorizontalScroll||o.css("width",p._contentWidth(o.children())),t.overflowed=p._overflowed.call(this),p._scrollbarVisibility.call(this),n.autoDraggerLength&&p._setDraggerLength.call(this),p._scrollRatio.call(this),p._bindEvents.call(this);var r=[Math.abs(o[0].offsetTop),Math.abs(o[0].offsetLeft)];"x"!==n.axis&&(t.overflowed[0]?s[0].height()>s[0].parent().height()?p._resetContentPosition.call(this):(p._scrollTo.call(this,e,r[0].toString(),{dir:"y",dur:0,overwrite:"none"}),t.contentReset.y=null):(p._resetContentPosition.call(this),"y"===n.axis?p._unbindEvents.call(this):"yx"===n.axis&&t.overflowed[1]&&p._scrollTo.call(this,e,r[1].toString(),{dir:"x",dur:0,overwrite:"none"}))),"y"!==n.axis&&(t.overflowed[1]?s[1].width()>s[1].parent().width()?p._resetContentPosition.call(this):(p._scrollTo.call(this,e,r[1].toString(),{dir:"x",dur:0,overwrite:"none"}),t.contentReset.x=null):(p._resetContentPosition.call(this),"x"===n.axis?p._unbindEvents.call(this):"yx"===n.axis&&t.overflowed[0]&&p._scrollTo.call(this,e,r[0].toString(),{dir:"y",dur:0,overwrite:"none"}))),p._autoUpdate.call(this)}})},scrollTo:function(e,t){if("undefined"!=typeof e&&null!=e){var n=p._selector.call(this);return i(n).each(function(){var n=i(this);if(n.data(a)){var o=n.data(a),s=o.opt,r={trigger:"external",scrollInertia:s.scrollInertia,scrollEasing:"mcsEaseInOut",moveDragger:!1,timeout:60,callbacks:!0,onStart:!0,onUpdate:!0,onComplete:!0},l=i.extend(!0,{},r,t),c=p._arr.call(this,e),d=l.scrollInertia>0&&l.scrollInertia<17?17:l.scrollInertia;c[0]=p._to.call(this,c[0],"y"),c[1]=p._to.call(this,c[1],"x"),l.moveDragger&&(c[0]*=o.scrollRatio.y,c[1]*=o.scrollRatio.x),l.dur=d,setTimeout(function(){null!==c[0]&&"undefined"!=typeof c[0]&&"x"!==s.axis&&o.overflowed[0]&&(l.dir="y",l.overwrite="all",p._scrollTo.call(this,n,c[0].toString(),l)),null!==c[1]&&"undefined"!=typeof c[1]&&"y"!==s.axis&&o.overflowed[1]&&(l.dir="x",l.overwrite="none",p._scrollTo.call(this,n,c[1].toString(),l))},l.timeout)}})}},stop:function(){var e=p._selector.call(this);return i(e).each(function(){var e=i(this);e.data(a)&&p._stop.call(null,e)})},disable:function(e){var t=p._selector.call(this);return i(t).each(function(){var t=i(this);if(t.data(a)){var n=t.data(a);n.opt;p._autoUpdate.call(this,"remove"),p._unbindEvents.call(this),e&&p._resetContentPosition.call(this),p._scrollbarVisibility.call(this,!0),t.addClass("mCS_disabled")}})},destroy:function(){var e=p._selector.call(this);return i(e).each(function(){var t=i(this);if(t.data(a)){var o=t.data(a),s=o.opt,r=i("#mCSB_"+o.idx),l=i("#mCSB_"+o.idx+"_container"),d=i(".mCSB_"+o.idx+"_scrollbar");s.live&&c(e),p._autoUpdate.call(this,"remove"),p._unbindEvents.call(this),p._resetContentPosition.call(this),t.removeData(a),p._delete.call(null,this.mcs),d.remove(),r.replaceWith(l.contents()),t.removeClass(n+" _"+a+"_"+o.idx+" mCS-autoHide mCS-dir-rtl mCS_no_scrollbar mCS_disabled").addClass("mCS_destroyed")}})}},p={_selector:function(){return"object"!=typeof i(this)||i(this).length<1?o:this},_theme:function(e){var t=["rounded","rounded-dark","rounded-dots","rounded-dots-dark"],n=["rounded-dots","rounded-dots-dark","3d","3d-dark","3d-thick","3d-thick-dark","inset","inset-dark","inset-2","inset-2-dark","inset-3","inset-3-dark"],a=["minimal","minimal-dark"],o=["minimal","minimal-dark"],s=["minimal","minimal-dark"];e.autoDraggerLength=i.inArray(e.theme,t)>-1?!1:e.autoDraggerLength,e.autoExpandScrollbar=i.inArray(e.theme,n)>-1?!1:e.autoExpandScrollbar,e.scrollButtons.enable=i.inArray(e.theme,a)>-1?!1:e.scrollButtons.enable,e.autoHideScrollbar=i.inArray(e.theme,o)>-1?!0:e.autoHideScrollbar,e.scrollbarPosition=i.inArray(e.theme,s)>-1?"outside":e.scrollbarPosition},_findAxis:function(e){return"yx"===e||"xy"===e||"auto"===e?"yx":"x"===e||"horizontal"===e?"x":"y"},_findScrollButtonsType:function(e){return"stepped"===e||"pixels"===e||"step"===e||"click"===e?"stepped":"stepless"},_pluginMarkup:function(){var e=i(this),t=e.data(a),o=t.opt,s=o.autoExpandScrollbar?" mCSB_scrollTools_onDrag_expand":"",r=["
          ","
          "],l="yx"===o.axis?"mCSB_vertical_horizontal":"x"===o.axis?"mCSB_horizontal":"mCSB_vertical",c="yx"===o.axis?r[0]+r[1]:"x"===o.axis?r[1]:r[0],d="yx"===o.axis?"
          ":"",h=o.autoHideScrollbar?" mCS-autoHide":"",u="x"!==o.axis&&"rtl"===t.langDir?" mCS-dir-rtl":"";o.setWidth&&e.css("width",o.setWidth),o.setHeight&&e.css("height",o.setHeight),o.setLeft="y"!==o.axis&&"rtl"===t.langDir?"989999px":o.setLeft,e.addClass(n+" _"+a+"_"+t.idx+h+u).wrapInner("
          ");var f=i("#mCSB_"+t.idx),g=i("#mCSB_"+t.idx+"_container");"y"===o.axis||o.advanced.autoExpandHorizontalScroll||g.css("width",p._contentWidth(g.children())),"outside"===o.scrollbarPosition?("static"===e.css("position")&&e.css("position","relative"),e.css("overflow","visible"),f.addClass("mCSB_outside").after(c)):(f.addClass("mCSB_inside").append(c),g.wrap(d)),p._scrollButtons.call(this);var m=[i("#mCSB_"+t.idx+"_dragger_vertical"),i("#mCSB_"+t.idx+"_dragger_horizontal")];m[0].css("min-height",m[0].height()),m[1].css("min-width",m[1].width())},_contentWidth:function(e){return Math.max.apply(Math,e.map(function(){return i(this).outerWidth(!0)}).get())},_expandContentHorizontally:function(){var e=i(this),t=e.data(a),n=t.opt,o=i("#mCSB_"+t.idx+"_container");n.advanced.autoExpandHorizontalScroll&&"y"!==n.axis&&o.css({position:"absolute",width:"auto"}).wrap("
          ").css({width:Math.ceil(o[0].getBoundingClientRect().right+.4)-Math.floor(o[0].getBoundingClientRect().left),position:"relative"}).unwrap()},_scrollButtons:function(){var e=i(this),t=e.data(a),n=t.opt,o=i(".mCSB_"+t.idx+"_scrollbar:first"),s=["","","",""],r=["x"===n.axis?s[2]:s[0],"x"===n.axis?s[3]:s[1],s[2],s[3]];n.scrollButtons.enable&&o.prepend(r[0]).append(r[1]).next(".mCSB_scrollTools").prepend(r[2]).append(r[3])},_maxHeight:function(){var e=i(this),t=e.data(a),n=(t.opt,i("#mCSB_"+t.idx)),o=e.css("max-height"),s=-1!==o.indexOf("%"),r=e.css("box-sizing");if("none"!==o){var l=s?e.parent().height()*parseInt(o)/100:parseInt(o);"border-box"===r&&(l-=e.innerHeight()-e.height()+(e.outerHeight()-e.innerHeight())),n.css("max-height",Math.round(l))}},_setDraggerLength:function(){var e=i(this),t=e.data(a),n=i("#mCSB_"+t.idx),o=i("#mCSB_"+t.idx+"_container"),s=[i("#mCSB_"+t.idx+"_dragger_vertical"),i("#mCSB_"+t.idx+"_dragger_horizontal")],r=[n.height()/o.outerHeight(!1),n.width()/o.outerWidth(!1)],l=[parseInt(s[0].css("min-height")),Math.round(r[0]*s[0].parent().height()),parseInt(s[1].css("min-width")),Math.round(r[1]*s[1].parent().width())],c=d&&l[1]n.height(),r>n.width()]},_resetContentPosition:function(){var e=i(this),t=e.data(a),n=t.opt,o=i("#mCSB_"+t.idx),s=i("#mCSB_"+t.idx+"_container"),r=[i("#mCSB_"+t.idx+"_dragger_vertical"),i("#mCSB_"+t.idx+"_dragger_horizontal")];if(p._stop(e),("x"!==n.axis&&!t.overflowed[0]||"y"===n.axis&&t.overflowed[0])&&(r[0].add(s).css("top",0),p._scrollTo(e,"_resetY")),"y"!==n.axis&&!t.overflowed[1]||"x"===n.axis&&t.overflowed[1]){var l=dx=0;"rtl"===t.langDir&&(l=o.width()-s.outerWidth(!1),dx=Math.abs(l/t.scrollRatio.x)),s.css("left",l),r[1].css("left",dx),p._scrollTo(e,"_resetX")}},_bindEvents:function(){function e(){s=setTimeout(function(){i.event.special.mousewheel?(clearTimeout(s),p._mousewheel.call(t[0])):e()},1e3)}var t=i(this),n=t.data(a),o=n.opt;if(!n.bindEvents){if(p._draggable.call(this),o.contentTouchScroll&&p._contentDraggable.call(this),o.mouseWheel.enable){var s;e()}p._draggerRail.call(this),p._wrapperScroll.call(this),o.advanced.autoScrollOnFocus&&p._focus.call(this),o.scrollButtons.enable&&p._buttons.call(this),o.keyboard.enable&&p._keyboard.call(this),n.bindEvents=!0}},_unbindEvents:function(){var e=i(this),n=e.data(a),o=a+"_"+n.idx,s=".mCSB_"+n.idx+"_scrollbar",r=i("#mCSB_"+n.idx+",#mCSB_"+n.idx+"_container,#mCSB_"+n.idx+"_container_wrapper,"+s+" .mCSB_draggerContainer,#mCSB_"+n.idx+"_dragger_vertical,#mCSB_"+n.idx+"_dragger_horizontal,"+s+">a"),l=i("#mCSB_"+n.idx+"_container");n.bindEvents&&(i(t).unbind("."+o),r.each(function(){i(this).unbind("."+o)}),clearTimeout(e[0]._focusTimeout),p._delete.call(null,e[0]._focusTimeout),clearTimeout(n.sequential.step),p._delete.call(null,n.sequential.step),clearTimeout(l[0].onCompleteTimeout),p._delete.call(null,l[0].onCompleteTimeout),n.bindEvents=!1)},_scrollbarVisibility:function(e){var t=i(this),n=t.data(a),o=n.opt,s=i("#mCSB_"+n.idx+"_container_wrapper"),r=s.length?s:i("#mCSB_"+n.idx+"_container"),l=[i("#mCSB_"+n.idx+"_scrollbar_vertical"),i("#mCSB_"+n.idx+"_scrollbar_horizontal")],c=[l[0].find(".mCSB_dragger"),l[1].find(".mCSB_dragger")];"x"!==o.axis&&(n.overflowed[0]&&!e?(l[0].add(c[0]).add(l[0].children("a")).css("display","block"),r.removeClass("mCS_no_scrollbar_y mCS_y_hidden")):(o.alwaysShowScrollbar?(2!==o.alwaysShowScrollbar&&c[0].add(l[0].children("a")).css("display","none"),r.removeClass("mCS_y_hidden")):(l[0].css("display","none"),r.addClass("mCS_y_hidden")),r.addClass("mCS_no_scrollbar_y"))),"y"!==o.axis&&(n.overflowed[1]&&!e?(l[1].add(c[1]).add(l[1].children("a")).css("display","block"),r.removeClass("mCS_no_scrollbar_x mCS_x_hidden")):(o.alwaysShowScrollbar?(2!==o.alwaysShowScrollbar&&c[1].add(l[1].children("a")).css("display","none"),r.removeClass("mCS_x_hidden")):(l[1].css("display","none"),r.addClass("mCS_x_hidden")),r.addClass("mCS_no_scrollbar_x"))),n.overflowed[0]||n.overflowed[1]?t.removeClass("mCS_no_scrollbar"):t.addClass("mCS_no_scrollbar")},_coordinates:function(e){var t=e.type;switch(t){case"pointerdown":case"MSPointerDown":case"pointermove":case"MSPointerMove":case"pointerup":case"MSPointerUp":return[e.originalEvent.pageY,e.originalEvent.pageX];case"touchstart":case"touchmove":case"touchend":var i=e.originalEvent.touches[0]||e.originalEvent.changedTouches[0];return[i.pageY,i.pageX];default:return[e.pageY,e.pageX]}},_draggable:function(){function e(e){var t=m.find("iframe");if(t.length){var i=e?"auto":"none";t.css("pointer-events",i)}}function n(e,t,i,n){if(m[0].idleTimer=u.scrollInertia<233?250:0,o.attr("id")===g[1])var a="x",s=(o[0].offsetLeft-t+n)*c.scrollRatio.x;else var a="y",s=(o[0].offsetTop-e+i)*c.scrollRatio.y;p._scrollTo(l,s.toString(),{dir:a,drag:!0})}var o,s,r,l=i(this),c=l.data(a),u=c.opt,f=a+"_"+c.idx,g=["mCSB_"+c.idx+"_dragger_vertical","mCSB_"+c.idx+"_dragger_horizontal"],m=i("#mCSB_"+c.idx+"_container"),v=i("#"+g[0]+",#"+g[1]);v.bind("mousedown."+f+" touchstart."+f+" pointerdown."+f+" MSPointerDown."+f,function(n){if(n.stopImmediatePropagation(),n.preventDefault(),p._mouseBtnLeft(n)){h=!0,d&&(t.onselectstart=function(){return!1}),e(!1),p._stop(l),o=i(this);var a=o.offset(),c=p._coordinates(n)[0]-a.top,f=p._coordinates(n)[1]-a.left,g=o.height()+a.top,m=o.width()+a.left;g>c&&c>0&&m>f&&f>0&&(s=c,r=f),p._onDragClasses(o,"active",u.autoExpandScrollbar)}}).bind("touchmove."+f,function(e){e.stopImmediatePropagation(),e.preventDefault();var t=o.offset(),i=p._coordinates(e)[0]-t.top,a=p._coordinates(e)[1]-t.left;n(s,r,i,a)}),i(t).bind("mousemove."+f+" pointermove."+f+" MSPointerMove."+f,function(e){if(o){var t=o.offset(),i=p._coordinates(e)[0]-t.top,a=p._coordinates(e)[1]-t.left;if(s===i)return;n(s,r,i,a)}}).add(v).bind("mouseup."+f+" touchend."+f+" pointerup."+f+" MSPointerUp."+f,function(i){o&&(p._onDragClasses(o,"active",u.autoExpandScrollbar),o=null),h=!1,d&&(t.onselectstart=null),e(!0)})},_contentDraggable:function(){function e(e,t){var i=[1.5*t,2*t,t/1.5,t/2];return e>90?t>4?i[0]:i[3]:e>60?t>3?i[3]:i[2]:e>30?t>8?i[1]:t>6?i[0]:t>4?t:i[2]:t>8?t:i[3]}function t(e,t,i,n,a,o){e&&p._scrollTo(v,e.toString(),{dur:t,scrollEasing:i,dir:n,overwrite:a,drag:o})}var n,o,s,r,l,c,d,u,f,g,m,v=i(this),w=v.data(a),x=w.opt,b=a+"_"+w.idx,y=i("#mCSB_"+w.idx),C=i("#mCSB_"+w.idx+"_container"),S=[i("#mCSB_"+w.idx+"_dragger_vertical"),i("#mCSB_"+w.idx+"_dragger_horizontal")],_=[],T=[],k=0,E="yx"===x.axis?"none":"all";C.bind("touchstart."+b+" pointerdown."+b+" MSPointerDown."+b,function(e){if(p._pointerTouch(e)&&!h){var t=C.offset();n=p._coordinates(e)[0]-t.top,o=p._coordinates(e)[1]-t.left}}).bind("touchmove."+b+" pointermove."+b+" MSPointerMove."+b,function(e){if(p._pointerTouch(e)&&!h){e.stopImmediatePropagation(),c=p._getTime();var i=y.offset(),a=p._coordinates(e)[0]-i.top,s=p._coordinates(e)[1]-i.left,r="mcsLinearOut";if(_.push(a),T.push(s),w.overflowed[0])var l=S[0].parent().height()-S[0].height(),d=n-a>0&&a-n>-(l*w.scrollRatio.y);if(w.overflowed[1])var u=S[1].parent().width()-S[1].width(),f=o-s>0&&s-o>-(u*w.scrollRatio.x);(d||f)&&e.preventDefault(),g="yx"===x.axis?[n-a,o-s]:"x"===x.axis?[null,o-s]:[n-a,null],C[0].idleTimer=250,w.overflowed[0]&&t(g[0],k,r,"y","all",!0),w.overflowed[1]&&t(g[1],k,r,"x",E,!0)}}),y.bind("touchstart."+b+" pointerdown."+b+" MSPointerDown."+b,function(e){if(p._pointerTouch(e)&&!h){e.stopImmediatePropagation(),p._stop(v),l=p._getTime();var t=y.offset();s=p._coordinates(e)[0]-t.top,r=p._coordinates(e)[1]-t.left,_=[],T=[]}}).bind("touchend."+b+" pointerup."+b+" MSPointerUp."+b,function(i){if(p._pointerTouch(i)&&!h){i.stopImmediatePropagation(),d=p._getTime();var n=y.offset(),a=p._coordinates(i)[0]-n.top,o=p._coordinates(i)[1]-n.left;if(!(d-c>30)){f=1e3/(d-l);var v="mcsEaseOut",b=2.5>f,S=b?[_[_.length-2],T[T.length-2]]:[0,0];u=b?[a-S[0],o-S[1]]:[a-s,o-r];var k=[Math.abs(u[0]),Math.abs(u[1])];f=b?[Math.abs(u[0]/4),Math.abs(u[1]/4)]:[f,f];var M=[Math.abs(C[0].offsetTop)-u[0]*e(k[0]/f[0],f[0]),Math.abs(C[0].offsetLeft)-u[1]*e(k[1]/f[1],f[1])];g="yx"===x.axis?[M[0],M[1]]:"x"===x.axis?[null,M[1]]:[M[0],null],m=[4*k[0]+x.scrollInertia,4*k[1]+x.scrollInertia];var P=parseInt(x.contentTouchScroll)||0;g[0]=k[0]>P?g[0]:0,g[1]=k[1]>P?g[1]:0,w.overflowed[0]&&t(g[0],m[0],v,"y",E,!1),w.overflowed[1]&&t(g[1],m[1],v,"x",E,!1)}}})},_mousewheel:function(){function e(e){var t=null;try{var i=e.contentDocument||e.contentWindow.document;t=i.body.innerHTML}catch(n){}return null!==t}var t=i(this),n=t.data(a);if(n){var o=n.opt,s=a+"_"+n.idx,r=i("#mCSB_"+n.idx),l=[i("#mCSB_"+n.idx+"_dragger_vertical"),i("#mCSB_"+n.idx+"_dragger_horizontal")],c=i("#mCSB_"+n.idx+"_container").find("iframe"),h=r;c.length&&c.each(function(){var t=this;e(t)&&(h=h.add(i(t).contents().find("body")))}),h.bind("mousewheel."+s,function(e,a){if(p._stop(t),!p._disableMousewheel(t,e.target)){var s="auto"!==o.mouseWheel.deltaFactor?parseInt(o.mouseWheel.deltaFactor):d&&e.deltaFactor<100?100:e.deltaFactor||100;if("x"===o.axis||"x"===o.mouseWheel.axis)var c="x",h=[Math.round(s*n.scrollRatio.x),parseInt(o.mouseWheel.scrollAmount)],u="auto"!==o.mouseWheel.scrollAmount?h[1]:h[0]>=r.width()?.9*r.width():h[0],f=Math.abs(i("#mCSB_"+n.idx+"_container")[0].offsetLeft),g=l[1][0].offsetLeft,m=l[1].parent().width()-l[1].width(),v=e.deltaX||e.deltaY||a;else var c="y",h=[Math.round(s*n.scrollRatio.y),parseInt(o.mouseWheel.scrollAmount)],u="auto"!==o.mouseWheel.scrollAmount?h[1]:h[0]>=r.height()?.9*r.height():h[0],f=Math.abs(i("#mCSB_"+n.idx+"_container")[0].offsetTop),g=l[0][0].offsetTop,m=l[0].parent().height()-l[0].height(),v=e.deltaY||a;"y"===c&&!n.overflowed[0]||"x"===c&&!n.overflowed[1]||(o.mouseWheel.invert&&(v=-v),o.mouseWheel.normalizeDelta&&(v=0>v?-1:1),(v>0&&0!==g||0>v&&g!==m||o.mouseWheel.preventDefault)&&(e.stopImmediatePropagation(),e.preventDefault()),p._scrollTo(t,(f-v*u).toString(),{dir:c}))}})}},_disableMousewheel:function(e,t){var n=t.nodeName.toLowerCase(),o=e.data(a).opt.mouseWheel.disableOver,s=["select","textarea"];return i.inArray(n,o)>-1&&!(i.inArray(n,s)>-1&&!i(t).is(":focus"))},_draggerRail:function(){var e=i(this),t=e.data(a),n=a+"_"+t.idx,o=i("#mCSB_"+t.idx+"_container"),s=o.parent(),r=i(".mCSB_"+t.idx+"_scrollbar .mCSB_draggerContainer");r.bind("touchstart."+n+" pointerdown."+n+" MSPointerDown."+n,function(e){h=!0}).bind("touchend."+n+" pointerup."+n+" MSPointerUp."+n,function(e){h=!1}).bind("click."+n,function(n){if(i(n.target).hasClass("mCSB_draggerContainer")||i(n.target).hasClass("mCSB_draggerRail")){p._stop(e);var a=i(this),r=a.find(".mCSB_dragger");if(a.parent(".mCSB_scrollTools_horizontal").length>0){if(!t.overflowed[1])return;var l="x",c=n.pageX>r.offset().left?-1:1,d=Math.abs(o[0].offsetLeft)-c*(.9*s.width())}else{if(!t.overflowed[0])return;var l="y",c=n.pageY>r.offset().top?-1:1,d=Math.abs(o[0].offsetTop)-c*(.9*s.height()); +}p._scrollTo(e,d.toString(),{dir:l,scrollEasing:"mcsEaseInOut"})}})},_focus:function(){var e=i(this),n=e.data(a),o=n.opt,s=a+"_"+n.idx,r=i("#mCSB_"+n.idx+"_container"),l=r.parent();r.bind("focusin."+s,function(n){var a=i(t.activeElement),s=r.find(".mCustomScrollBox").length,c=0;a.is(o.advanced.autoScrollOnFocus)&&(p._stop(e),clearTimeout(e[0]._focusTimeout),e[0]._focusTimer=s?(c+17)*s:0,e[0]._focusTimeout=setTimeout(function(){var t=[a.offset().top-r.offset().top,a.offset().left-r.offset().left],i=[r[0].offsetTop,r[0].offsetLeft],n=[i[0]+t[0]>=0&&i[0]+t[0]=0&&i[0]+t[1]a");l.bind("mousedown."+s+" touchstart."+s+" pointerdown."+s+" MSPointerDown."+s+" mouseup."+s+" touchend."+s+" pointerup."+s+" MSPointerUp."+s+" mouseout."+s+" pointerout."+s+" MSPointerOut."+s+" click."+s,function(a){function s(t,i){o.scrollAmount=n.snapAmount||n.scrollButtons.scrollAmount,p._sequentialScroll.call(this,e,t,i)}if(a.preventDefault(),p._mouseBtnLeft(a)){var r=i(this).attr("class");switch(o.type=n.scrollButtons.scrollType,a.type){case"mousedown":case"touchstart":case"pointerdown":case"MSPointerDown":if("stepped"===o.type)return;h=!0,t.tweenRunning=!1,s("on",r);break;case"mouseup":case"touchend":case"pointerup":case"MSPointerUp":case"mouseout":case"pointerout":case"MSPointerOut":if("stepped"===o.type)return;h=!1,o.dir&&s("off",r);break;case"click":if("stepped"!==o.type||t.tweenRunning)return;s("on",r)}}})},_keyboard:function(){var e=i(this),n=e.data(a),o=n.opt,s=n.sequential,r=a+"_"+n.idx,l=i("#mCSB_"+n.idx),c=i("#mCSB_"+n.idx+"_container"),d=c.parent(),h="input,textarea,select,datalist,keygen,[contenteditable='true']";l.attr("tabindex","0").bind("blur."+r+" keydown."+r+" keyup."+r,function(a){function r(t,i){s.type=o.keyboard.scrollType,s.scrollAmount=o.snapAmount||o.keyboard.scrollAmount,"stepped"===s.type&&n.tweenRunning||p._sequentialScroll.call(this,e,t,i)}switch(a.type){case"blur":n.tweenRunning&&s.dir&&r("off",null);break;case"keydown":case"keyup":var l=a.keyCode?a.keyCode:a.which,u="on";if("x"!==o.axis&&(38===l||40===l)||"y"!==o.axis&&(37===l||39===l)){if((38===l||40===l)&&!n.overflowed[0]||(37===l||39===l)&&!n.overflowed[1])return;"keyup"===a.type&&(u="off"),i(t.activeElement).is(h)||(a.preventDefault(),a.stopImmediatePropagation(),r(u,l))}else if(33===l||34===l){if((n.overflowed[0]||n.overflowed[1])&&(a.preventDefault(),a.stopImmediatePropagation()),"keyup"===a.type){p._stop(e);var f=34===l?-1:1;if("x"===o.axis||"yx"===o.axis&&n.overflowed[1]&&!n.overflowed[0])var g="x",m=Math.abs(c[0].offsetLeft)-f*(.9*d.width());else var g="y",m=Math.abs(c[0].offsetTop)-f*(.9*d.height());p._scrollTo(e,m.toString(),{dir:g,scrollEasing:"mcsEaseInOut"})}}else if((35===l||36===l)&&!i(t.activeElement).is(h)&&((n.overflowed[0]||n.overflowed[1])&&(a.preventDefault(),a.stopImmediatePropagation()),"keyup"===a.type)){if("x"===o.axis||"yx"===o.axis&&n.overflowed[1]&&!n.overflowed[0])var g="x",m=35===l?Math.abs(d.width()-c.outerWidth(!1)):0;else var g="y",m=35===l?Math.abs(d.height()-c.outerHeight(!1)):0;p._scrollTo(e,m.toString(),{dir:g,scrollEasing:"mcsEaseInOut"})}}})},_sequentialScroll:function(e,t,n){function o(t){var i="stepped"!==c.type,n=t?i?l.scrollInertia/1.5:l.scrollInertia:1e3/60,a=t?i?7.5:40:2.5,s=[Math.abs(d[0].offsetTop),Math.abs(d[0].offsetLeft)],h=[r.scrollRatio.y>10?10:r.scrollRatio.y,r.scrollRatio.x>10?10:r.scrollRatio.x],u="x"===c.dir[0]?s[1]+c.dir[1]*(h[1]*a):s[0]+c.dir[1]*(h[0]*a),f="x"===c.dir[0]?s[1]+c.dir[1]*parseInt(c.scrollAmount):s[0]+c.dir[1]*parseInt(c.scrollAmount),g="auto"!==c.scrollAmount?f:u,m=t?i?"mcsLinearOut":"mcsEaseInOut":"mcsLinear",v=t?!0:!1;return t&&17>n&&(g="x"===c.dir[0]?s[1]:s[0]),p._scrollTo(e,g.toString(),{dir:c.dir[0],scrollEasing:m,dur:n,onComplete:v}),t?void(c.dir=!1):(clearTimeout(c.step),void(c.step=setTimeout(function(){o()},n)))}function s(){clearTimeout(c.step),p._stop(e)}var r=e.data(a),l=r.opt,c=r.sequential,d=i("#mCSB_"+r.idx+"_container"),h="stepped"===c.type?!0:!1;switch(t){case"on":if(c.dir=["mCSB_buttonRight"===n||"mCSB_buttonLeft"===n||39===n||37===n?"x":"y","mCSB_buttonUp"===n||"mCSB_buttonLeft"===n||38===n||37===n?-1:1],p._stop(e),p._isNumeric(n)&&"stepped"===c.type)return;o(h);break;case"off":s(),(h||r.tweenRunning&&c.dir)&&o(!0)}},_arr:function(e){var t=i(this).data(a).opt,n=[];return"function"==typeof e&&(e=e()),e instanceof Array?n=e.length>1?[e[0],e[1]]:"x"===t.axis?[null,e[0]]:[e[0],null]:(n[0]=e.y?e.y:e.x||"x"===t.axis?null:e,n[1]=e.x?e.x:e.y||"y"===t.axis?null:e),"function"==typeof n[0]&&(n[0]=n[0]()),"function"==typeof n[1]&&(n[1]=n[1]()),n},_to:function(e,t){if(null!=e&&"undefined"!=typeof e){var n=i(this),o=n.data(a),s=o.opt,r=i("#mCSB_"+o.idx+"_container"),l=r.parent(),c=typeof e;t||(t="x"===s.axis?"x":"y");var d="x"===t?r.outerWidth(!1):r.outerHeight(!1),h="x"===t?r.offset().left:r.offset().top,f="x"===t?r[0].offsetLeft:r[0].offsetTop,g="x"===t?"left":"top";switch(c){case"function":return e();case"object":if(e.nodeType)var m="x"===t?i(e).offset().left:i(e).offset().top;else if(e.jquery){if(!e.length)return;var m="x"===t?e.offset().left:e.offset().top}return m-h;case"string":case"number":if(p._isNumeric.call(null,e))return Math.abs(e);if(-1!==e.indexOf("%"))return Math.abs(d*parseInt(e)/100);if(-1!==e.indexOf("-="))return Math.abs(f-parseInt(e.split("-=")[1]));if(-1!==e.indexOf("+=")){var v=f+parseInt(e.split("+=")[1]);return v>=0?0:Math.abs(v)}if(-1!==e.indexOf("px")&&p._isNumeric.call(null,e.split("px")[0]))return Math.abs(e.split("px")[0]);if("top"===e||"left"===e)return 0;if("bottom"===e)return Math.abs(l.height()-r.outerHeight(!1));if("right"===e)return Math.abs(l.width()-r.outerWidth(!1));if("first"===e||"last"===e){var w=r.find(":"+e),m="x"===t?i(w).offset().left:i(w).offset().top;return m-h}if(i(e).length){var m="x"===t?i(e).offset().left:i(e).offset().top;return m-h}return r.css(g,e),void u.update.call(null,n[0])}}},_autoUpdate:function(e){function t(){clearTimeout(h[0].autoUpdate),h[0].autoUpdate=setTimeout(function(){return d.advanced.updateOnSelectorChange&&(f=s(),f!==b)?(r(),void(b=f)):(d.advanced.updateOnContentResize&&(g=[h.outerHeight(!1),h.outerWidth(!1),v.height(),v.width(),x()[0],x()[1]],(g[0]!==y[0]||g[1]!==y[1]||g[2]!==y[2]||g[3]!==y[3]||g[4]!==y[4]||g[5]!==y[5])&&(r(),y=g)),d.advanced.updateOnImageLoad&&(m=n(),m!==C&&(h.find("img").each(function(){o(this.src)}),C=m)),void((d.advanced.updateOnSelectorChange||d.advanced.updateOnContentResize||d.advanced.updateOnImageLoad)&&t()))},60)}function n(){var e=0;return d.advanced.updateOnImageLoad&&(e=h.find("img").length),e}function o(e){function t(e,t){return function(){return t.apply(e,arguments)}}function i(){this.onload=null,r()}var n=new Image;n.onload=t(n,i),n.src=e}function s(){d.advanced.updateOnSelectorChange===!0&&(d.advanced.updateOnSelectorChange="*");var e=0,t=h.find(d.advanced.updateOnSelectorChange);return d.advanced.updateOnSelectorChange&&t.length>0&&t.each(function(){e+=i(this).height()+i(this).width()}),e}function r(){clearTimeout(h[0].autoUpdate),u.update.call(null,l[0])}var l=i(this),c=l.data(a),d=c.opt,h=i("#mCSB_"+c.idx+"_container");if(e)return clearTimeout(h[0].autoUpdate),void p._delete.call(null,h[0].autoUpdate);var f,g,m,v=h.parent(),w=[i("#mCSB_"+c.idx+"_scrollbar_vertical"),i("#mCSB_"+c.idx+"_scrollbar_horizontal")],x=function(){return[w[0].is(":visible")?w[0].outerHeight(!0):0,w[1].is(":visible")?w[1].outerWidth(!0):0]},b=s(),y=[h.outerHeight(!1),h.outerWidth(!1),v.height(),v.width(),x()[0],x()[1]],C=n();t()},_snapAmount:function(e,t,i){return Math.round(e/t)*t-i},_stop:function(e){var t=e.data(a),n=i("#mCSB_"+t.idx+"_container,#mCSB_"+t.idx+"_container_wrapper,#mCSB_"+t.idx+"_dragger_vertical,#mCSB_"+t.idx+"_dragger_horizontal");n.each(function(){p._stopTween.call(this)})},_scrollTo:function(e,t,n){function o(e){return l&&c.callbacks[e]&&"function"==typeof c.callbacks[e]}function s(){return[c.callbacks.alwaysTriggerOffsets||x>=b[0]+C,c.callbacks.alwaysTriggerOffsets||-S>=x]}function r(){var t=[f[0].offsetTop,f[0].offsetLeft],i=[v[0].offsetTop,v[0].offsetLeft],a=[f.outerHeight(!1),f.outerWidth(!1)],o=[u.height(),u.width()];e[0].mcs={content:f,top:t[0],left:t[1],draggerTop:i[0],draggerLeft:i[1],topPct:Math.round(100*Math.abs(t[0])/(Math.abs(a[0])-o[0])),leftPct:Math.round(100*Math.abs(t[1])/(Math.abs(a[1])-o[1])),direction:n.dir}}var l=e.data(a),c=l.opt,d={trigger:"internal",dir:"y",scrollEasing:"mcsEaseOut",drag:!1,dur:c.scrollInertia,overwrite:"all",callbacks:!0,onStart:!0,onUpdate:!0,onComplete:!0},n=i.extend(d,n),h=[n.dur,n.drag?0:n.dur],u=i("#mCSB_"+l.idx),f=i("#mCSB_"+l.idx+"_container"),g=c.callbacks.onTotalScrollOffset?p._arr.call(e,c.callbacks.onTotalScrollOffset):[0,0],m=c.callbacks.onTotalScrollBackOffset?p._arr.call(e,c.callbacks.onTotalScrollBackOffset):[0,0];if(l.trigger=n.trigger,"_resetY"!==t||l.contentReset.y||(o("onOverflowYNone")&&c.callbacks.onOverflowYNone.call(e[0]),l.contentReset.y=1),"_resetX"!==t||l.contentReset.x||(o("onOverflowXNone")&&c.callbacks.onOverflowXNone.call(e[0]),l.contentReset.x=1),"_resetY"!==t&&"_resetX"!==t){switch(!l.contentReset.y&&e[0].mcs||!l.overflowed[0]||(o("onOverflowY")&&c.callbacks.onOverflowY.call(e[0]),l.contentReset.x=null),!l.contentReset.x&&e[0].mcs||!l.overflowed[1]||(o("onOverflowX")&&c.callbacks.onOverflowX.call(e[0]),l.contentReset.x=null),c.snapAmount&&(t=p._snapAmount(t,c.snapAmount,c.snapOffset)),n.dir){case"x":var v=i("#mCSB_"+l.idx+"_dragger_horizontal"),w="left",x=f[0].offsetLeft,b=[u.width()-f.outerWidth(!1),v.parent().width()-v.width()],y=[t,0===t?0:t/l.scrollRatio.x],C=g[1],S=m[1],_=C>0?C/l.scrollRatio.x:0,T=S>0?S/l.scrollRatio.x:0;break;case"y":var v=i("#mCSB_"+l.idx+"_dragger_vertical"),w="top",x=f[0].offsetTop,b=[u.height()-f.outerHeight(!1),v.parent().height()-v.height()],y=[t,0===t?0:t/l.scrollRatio.y],C=g[0],S=m[0],_=C>0?C/l.scrollRatio.y:0,T=S>0?S/l.scrollRatio.y:0}y[1]<0||0===y[0]&&0===y[1]?y=[0,0]:y[1]>=b[1]?y=[b[0],b[1]]:y[0]=-y[0],e[0].mcs||r(),clearTimeout(f[0].onCompleteTimeout),(l.tweenRunning||!(0===x&&y[0]>=0||x===b[0]&&y[0]<=b[0]))&&(p._tweenTo.call(null,v[0],w,Math.round(y[1]),h[1],n.scrollEasing),p._tweenTo.call(null,f[0],w,Math.round(y[0]),h[0],n.scrollEasing,n.overwrite,{onStart:function(){n.callbacks&&n.onStart&&!l.tweenRunning&&(o("onScrollStart")&&(r(),c.callbacks.onScrollStart.call(e[0])),l.tweenRunning=!0,p._onDragClasses(v),l.cbOffsets=s())},onUpdate:function(){n.callbacks&&n.onUpdate&&o("whileScrolling")&&(r(),c.callbacks.whileScrolling.call(e[0]))},onComplete:function(){if(n.callbacks&&n.onComplete){"yx"===c.axis&&clearTimeout(f[0].onCompleteTimeout);var t=f[0].idleTimer||0;f[0].onCompleteTimeout=setTimeout(function(){o("onScroll")&&(r(),c.callbacks.onScroll.call(e[0])),o("onTotalScroll")&&y[1]>=b[1]-_&&l.cbOffsets[0]&&(r(),c.callbacks.onTotalScroll.call(e[0])),o("onTotalScrollBack")&&y[1]<=T&&l.cbOffsets[1]&&(r(),c.callbacks.onTotalScrollBack.call(e[0])),l.tweenRunning=!1,f[0].idleTimer=0,p._onDragClasses(v,"hide")},t)}}}))}},_tweenTo:function(t,i,n,a,o,s,r){function l(){t._mcsstop||(b||m.call(),b=p._getTime()-x,c(),b>=t._mcstime&&(t._mcstime=b>t._mcstime?b+f-(b-t._mcstime):b+f-1,t._mcstime0?(t._mcscurrVal=u(t._mcstime,y,S,a,o),C[i]=Math.round(t._mcscurrVal)+"px"):C[i]=n+"px",v.call()}function d(){f=1e3/60,t._mcstime=b+f,g=e.requestAnimationFrame?e.requestAnimationFrame:function(e){return c(),setTimeout(e,.01)},t._mcsid=g(l)}function h(){null!=t._mcsid&&(e.requestAnimationFrame?e.cancelAnimationFrame(t._mcsid):clearTimeout(t._mcsid),t._mcsid=null)}function u(e,t,i,n,a){switch(a){case"linear":case"mcsLinear":return i*e/n+t;case"mcsLinearOut":return e/=n,e--,i*Math.sqrt(1-e*e)+t;case"easeInOutSmooth":return e/=n/2,1>e?i/2*e*e+t:(e--,-i/2*(e*(e-2)-1)+t);case"easeInOutStrong":return e/=n/2,1>e?i/2*Math.pow(2,10*(e-1))+t:(e--,i/2*(-Math.pow(2,-10*e)+2)+t);case"easeInOut":case"mcsEaseInOut":return e/=n/2,1>e?i/2*e*e*e+t:(e-=2,i/2*(e*e*e+2)+t);case"easeOutSmooth":return e/=n,e--,-i*(e*e*e*e-1)+t;case"easeOutStrong":return i*(-Math.pow(2,-10*e/n)+1)+t;case"easeOut":case"mcsEaseOut":default:var o=(e/=n)*e,s=o*e;return t+i*(.499999999999997*s*o+-2.5*o*o+5.5*s+-6.5*o+4*e)}}var f,g,r=r||{},m=r.onStart||function(){},v=r.onUpdate||function(){},w=r.onComplete||function(){},x=p._getTime(),b=0,y=t.offsetTop,C=t.style;"left"===i&&(y=t.offsetLeft);var S=n-y;t._mcsstop=0,"none"!==s&&h(),d()},_getTime:function(){return e.performance&&e.performance.now?e.performance.now():e.performance&&e.performance.webkitNow?e.performance.webkitNow():Date.now?Date.now():(new Date).getTime()},_stopTween:function(){var t=this;null!=t._mcsid&&(e.requestAnimationFrame?e.cancelAnimationFrame(t._mcsid):clearTimeout(t._mcsid),t._mcsid=null,t._mcsstop=1)},_delete:function(e){try{delete e}catch(t){e=null}},_mouseBtnLeft:function(e){return!(e.which&&1!==e.which)},_pointerTouch:function(e){var t=e.originalEvent.pointerType;return!(t&&"touch"!==t&&2!==t)},_isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)}};i.fn[n]=function(e){return u[e]?u[e].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof e&&e?void i.error("Method "+e+" does not exist"):u.init.apply(this,arguments)},i[n]=function(e){return u[e]?u[e].apply(this,Array.prototype.slice.call(arguments,1)):"object"!=typeof e&&e?void i.error("Method "+e+" does not exist"):u.init.apply(this,arguments)},i[n].defaults=s,e[n]=!0,i(e).load(function(){i(o)[n]()})})}(window,document),function(e,t,i,n){"use strict";var a=i("html"),o=i(e),s=i(t),r=i.fancybox=function(){r.open.apply(this,arguments)},l=navigator.userAgent.match(/msie/i),c=null,d=t.createTouch!==n,h=function(e){return e&&e.hasOwnProperty&&e instanceof i},u=function(e){return e&&"string"===i.type(e)},p=function(e){return u(e)&&e.indexOf("%")>0},f=function(e){return e&&!(e.style.overflow&&"hidden"===e.style.overflow)&&(e.clientWidth&&e.scrollWidth>e.clientWidth||e.clientHeight&&e.scrollHeight>e.clientHeight)},g=function(e,t){var i=parseInt(e,10)||0;return t&&p(e)&&(i=r.getViewport()[t]/100*i),Math.ceil(i)},m=function(e,t){return g(e,t)+"px"};i.extend(r,{version:"2.1.5",defaults:{padding:15,margin:20,width:800,height:600,minWidth:100,minHeight:100,maxWidth:9999,maxHeight:9999,pixelRatio:1,autoSize:!0,autoHeight:!1,autoWidth:!1,autoResize:!0,autoCenter:!d,fitToView:!0,aspectRatio:!1,topRatio:.5,leftRatio:.5,scrolling:"auto",wrapCSS:"",arrows:!0,closeBtn:!0,closeClick:!1,nextClick:!1,mouseWheel:!0,autoPlay:!1,playSpeed:3e3,preload:3,modal:!1,loop:!0,ajax:{dataType:"html",headers:{"X-fancyBox":!0}},iframe:{scrolling:"auto",preload:!0},swf:{wmode:"transparent",allowfullscreen:"true",allowscriptaccess:"always"},keys:{next:{13:"left",34:"up",39:"left",40:"up"},prev:{8:"right",33:"down",37:"right",38:"down"},close:[27],play:[32],toggle:[70]},direction:{next:"left",prev:"right"},scrollOutside:!0,index:0,type:null,href:null,content:null,title:null,tpl:{wrap:'
          ',image:'',iframe:'",error:'

          The requested content cannot be loaded.
          Please try again later.

          ',closeBtn:'
          ',next:'',prev:''},openEffect:"fade",openSpeed:250,openEasing:"swing",openOpacity:!0,openMethod:"zoomIn",closeEffect:"fade",closeSpeed:250,closeEasing:"swing",closeOpacity:!0,closeMethod:"zoomOut",nextEffect:"elastic",nextSpeed:250,nextEasing:"swing",nextMethod:"changeIn",prevEffect:"elastic",prevSpeed:250,prevEasing:"swing",prevMethod:"changeOut",helpers:{overlay:!0,title:!0},onCancel:i.noop,beforeLoad:i.noop,afterLoad:i.noop,beforeShow:i.noop,afterShow:i.noop,beforeChange:i.noop,beforeClose:i.noop,afterClose:i.noop},group:{},opts:{},previous:null,coming:null,current:null,isActive:!1,isOpen:!1,isOpened:!1,wrap:null,skin:null,outer:null,inner:null,player:{timer:null,isActive:!1},ajaxLoad:null,imgPreload:null,transitions:{},helpers:{},open:function(e,t){return e&&(i.isPlainObject(t)||(t={}),!1!==r.close(!0))?(i.isArray(e)||(e=h(e)?i(e).get():[e]),i.each(e,function(a,o){var s,l,c,d,p,f,g,m={};"object"===i.type(o)&&(o.nodeType&&(o=i(o)),h(o)?(m={href:o.data("fancybox-href")||o.attr("href"),title:o.data("fancybox-title")||o.attr("title"),isDom:!0,element:o},i.metadata&&i.extend(!0,m,o.metadata())):m=o),s=t.href||m.href||(u(o)?o:null),l=t.title!==n?t.title:m.title||"",c=t.content||m.content,d=c?"html":t.type||m.type,!d&&m.isDom&&(d=o.data("fancybox-type"),d||(p=o.prop("class").match(/fancybox\.(\w+)/),d=p?p[1]:null)),u(s)&&(d||(r.isImage(s)?d="image":r.isSWF(s)?d="swf":"#"===s.charAt(0)?d="inline":u(o)&&(d="html",c=o)),"ajax"===d&&(f=s.split(/\s+/,2),s=f.shift(),g=f.shift())),c||("inline"===d?s?c=i(u(s)?s.replace(/.*(?=#[^\s]+$)/,""):s):m.isDom&&(c=o):"html"===d?c=s:d||s||!m.isDom||(d="inline",c=o)),i.extend(m,{href:s,type:d,content:c,title:l,selector:g}),e[a]=m}),r.opts=i.extend(!0,{},r.defaults,t),t.keys!==n&&(r.opts.keys=t.keys?i.extend({},r.defaults.keys,t.keys):!1),r.group=e,r._start(r.opts.index)):void 0},cancel:function(){var e=r.coming;e&&!1!==r.trigger("onCancel")&&(r.hideLoading(),r.ajaxLoad&&r.ajaxLoad.abort(),r.ajaxLoad=null,r.imgPreload&&(r.imgPreload.onload=r.imgPreload.onerror=null),e.wrap&&e.wrap.stop(!0,!0).trigger("onReset").remove(),r.coming=null,r.current||r._afterZoomOut(e))},close:function(e){r.cancel(),!1!==r.trigger("beforeClose")&&(r.unbindEvents(),r.isActive&&(r.isOpen&&e!==!0?(r.isOpen=r.isOpened=!1,r.isClosing=!0,i(".fancybox-item, .fancybox-nav").remove(),r.wrap.stop(!0,!0).removeClass("fancybox-opened"),r.transitions[r.current.closeMethod]()):(i(".fancybox-wrap").stop(!0).trigger("onReset").remove(),r._afterZoomOut())))},play:function(e){var t=function(){clearTimeout(r.player.timer)},i=function(){t(),r.current&&r.player.isActive&&(r.player.timer=setTimeout(r.next,r.current.playSpeed))},n=function(){t(),s.unbind(".player"),r.player.isActive=!1,r.trigger("onPlayEnd")},a=function(){r.current&&(r.current.loop||r.current.index=a.index?"next":"prev"],r.router=i||"jumpto",a.loop&&(0>e&&(e=a.group.length+e%a.group.length),e%=a.group.length),a.group[e]!==n&&(r.cancel(),r._start(e)))},reposition:function(e,t){var n,a=r.current,o=a?a.wrap:null;o&&(n=r._getPosition(t),e&&"scroll"===e.type?(delete n.position,o.stop(!0,!0).animate(n,200)):(o.css(n),a.pos=i.extend({},a.dim,n)))},update:function(e){var t=e&&e.type,i=!t||"orientationchange"===t;i&&(clearTimeout(c),c=null),r.isOpen&&!c&&(c=setTimeout(function(){var n=r.current;n&&!r.isClosing&&(r.wrap.removeClass("fancybox-tmp"),(i||"load"===t||"resize"===t&&n.autoResize)&&r._setDimension(),"scroll"===t&&n.canShrink||r.reposition(e),r.trigger("onUpdate"),c=null)},i&&!d?0:300))},toggle:function(e){r.isOpen&&(r.current.fitToView="boolean"===i.type(e)?e:!r.current.fitToView,d&&(r.wrap.removeAttr("style").addClass("fancybox-tmp"),r.trigger("onUpdate")),r.update())},hideLoading:function(){s.unbind(".loading"),i("#fancybox-loading").remove()},showLoading:function(){var e,t;r.hideLoading(),e=i('
          ').click(r.cancel).appendTo("body"),s.bind("keydown.loading",function(e){27===(e.which||e.keyCode)&&(e.preventDefault(),r.cancel())}),r.defaults.fixed||(t=r.getViewport(),e.css({position:"absolute",top:.5*t.h+t.y,left:.5*t.w+t.x}))},getViewport:function(){var t=r.current&&r.current.locked||!1,i={x:o.scrollLeft(),y:o.scrollTop()};return t?(i.w=t[0].clientWidth,i.h=t[0].clientHeight):(i.w=d&&e.innerWidth?e.innerWidth:o.width(),i.h=d&&e.innerHeight?e.innerHeight:o.height()),i},unbindEvents:function(){r.wrap&&h(r.wrap)&&r.wrap.unbind(".fb"),s.unbind(".fb"),o.unbind(".fb")},bindEvents:function(){var e,t=r.current;t&&(o.bind("orientationchange.fb"+(d?"":" resize.fb")+(t.autoCenter&&!t.locked?" scroll.fb":""),r.update),e=t.keys,e&&s.bind("keydown.fb",function(a){var o=a.which||a.keyCode,s=a.target||a.srcElement;return 27===o&&r.coming?!1:void(a.ctrlKey||a.altKey||a.shiftKey||a.metaKey||s&&(s.type||i(s).is("[contenteditable]"))||i.each(e,function(e,s){return t.group.length>1&&s[o]!==n?(r[e](s[o]),a.preventDefault(),!1):i.inArray(o,s)>-1?(r[e](),a.preventDefault(),!1):void 0}))}),i.fn.mousewheel&&t.mouseWheel&&r.wrap.bind("mousewheel.fb",function(e,n,a,o){for(var s=e.target||null,l=i(s),c=!1;l.length&&!(c||l.is(".fancybox-skin")||l.is(".fancybox-wrap"));)c=f(l[0]),l=i(l).parent();0===n||c||r.group.length>1&&!t.canShrink&&(o>0||a>0?r.prev(o>0?"down":"left"):(0>o||0>a)&&r.next(0>o?"up":"right"),e.preventDefault())}))},trigger:function(e,t){var n,a=t||r.coming||r.current;if(a){if(i.isFunction(a[e])&&(n=a[e].apply(a,Array.prototype.slice.call(arguments,1))),n===!1)return!1;a.helpers&&i.each(a.helpers,function(t,n){n&&r.helpers[t]&&i.isFunction(r.helpers[t][e])&&r.helpers[t][e](i.extend(!0,{},r.helpers[t].defaults,n),a)}),s.trigger(e)}},isImage:function(e){return u(e)&&e.match(/(^data:image\/.*,)|(\.(jp(e|g|eg)|gif|png|bmp|webp|svg)((\?|#).*)?$)/i)},isSWF:function(e){return u(e)&&e.match(/\.(swf)((\?|#).*)?$/i)},_start:function(e){var t,n,a,o,s,l={};if(e=g(e),t=r.group[e]||null,!t)return!1;if(l=i.extend(!0,{},r.opts,t),o=l.margin,s=l.padding,"number"===i.type(o)&&(l.margin=[o,o,o,o]),"number"===i.type(s)&&(l.padding=[s,s,s,s]),l.modal&&i.extend(!0,l,{closeBtn:!1,closeClick:!1,nextClick:!1,arrows:!1,mouseWheel:!1,keys:null,helpers:{overlay:{closeClick:!1}}}),l.autoSize&&(l.autoWidth=l.autoHeight=!0),"auto"===l.width&&(l.autoWidth=!0),"auto"===l.height&&(l.autoHeight=!0),l.group=r.group,l.index=e,r.coming=l,!1===r.trigger("beforeLoad"))return void(r.coming=null);if(a=l.type,n=l.href,!a)return r.coming=null,r.current&&r.router&&"jumpto"!==r.router?(r.current.index=e,r[r.router](r.direction)):!1;if(r.isActive=!0,("image"===a||"swf"===a)&&(l.autoHeight=l.autoWidth=!1,l.scrolling="visible"),"image"===a&&(l.aspectRatio=!0),"iframe"===a&&d&&(l.scrolling="scroll"),l.wrap=i(l.tpl.wrap).addClass("fancybox-"+(d?"mobile":"desktop")+" fancybox-type-"+a+" fancybox-tmp "+l.wrapCSS).appendTo(l.parent||"body"),i.extend(l,{skin:i(".fancybox-skin",l.wrap),outer:i(".fancybox-outer",l.wrap),inner:i(".fancybox-inner",l.wrap)}),i.each(["Top","Right","Bottom","Left"],function(e,t){l.skin.css("padding"+t,m(l.padding[e]))}),r.trigger("onReady"),"inline"===a||"html"===a){if(!l.content||!l.content.length)return r._error("content")}else if(!n)return r._error("href");"image"===a?r._loadImage():"ajax"===a?r._loadAjax():"iframe"===a?r._loadIframe():r._afterLoad()},_error:function(e){i.extend(r.coming,{type:"html",autoWidth:!0,autoHeight:!0,minWidth:0,minHeight:0,scrolling:"no",hasError:e,content:r.coming.tpl.error}),r._afterLoad()},_loadImage:function(){var e=r.imgPreload=new Image;e.onload=function(){this.onload=this.onerror=null,r.coming.width=this.width/r.opts.pixelRatio,r.coming.height=this.height/r.opts.pixelRatio,r._afterLoad()},e.onerror=function(){this.onload=this.onerror=null,r._error("image")},e.src=r.coming.href,e.complete!==!0&&r.showLoading()},_loadAjax:function(){var e=r.coming;r.showLoading(),r.ajaxLoad=i.ajax(i.extend({},e.ajax,{url:e.href,error:function(e,t){r.coming&&"abort"!==t?r._error("ajax",e):r.hideLoading()},success:function(t,i){"success"===i&&(e.content=t,r._afterLoad())}}))},_loadIframe:function(){var e=r.coming,t=i(e.tpl.iframe.replace(/\{rnd\}/g,(new Date).getTime())).attr("scrolling",d?"auto":e.iframe.scrolling).attr("src",e.href);i(e.wrap).bind("onReset",function(){try{i(this).find("iframe").hide().attr("src","//about:blank").end().empty()}catch(e){}}),e.iframe.preload&&(r.showLoading(),t.one("load",function(){i(this).data("ready",1),d||i(this).bind("load.fb",r.update),i(this).parents(".fancybox-wrap").width("100%").removeClass("fancybox-tmp").show(),r._afterLoad()})),e.content=t.appendTo(e.inner),e.iframe.preload||r._afterLoad()},_preloadImages:function(){var e,t,i=r.group,n=r.current,a=i.length,o=n.preload?Math.min(n.preload,a-1):0;for(t=1;o>=t;t+=1)e=i[(n.index+t)%a],"image"===e.type&&e.href&&((new Image).src=e.href)},_afterLoad:function(){var e,t,n,a,o,s,l=r.coming,c=r.current,d="fancybox-placeholder";if(r.hideLoading(),l&&r.isActive!==!1){if(!1===r.trigger("afterLoad",l,c))return l.wrap.stop(!0).trigger("onReset").remove(),void(r.coming=null);switch(c&&(r.trigger("beforeChange",c),c.wrap.stop(!0).removeClass("fancybox-opened").find(".fancybox-item, .fancybox-nav").remove()),r.unbindEvents(),e=l,t=l.content,n=l.type,a=l.scrolling,i.extend(r,{wrap:e.wrap,skin:e.skin,outer:e.outer,inner:e.inner,current:e,previous:c}),o=e.href,n){case"inline":case"ajax":case"html":e.selector?t=i("
          ").html(t).find(e.selector):h(t)&&(t.data(d)||t.data(d,i('
          ').insertAfter(t).hide()),t=t.show().detach(),e.wrap.bind("onReset",function(){i(this).find(t).length&&t.hide().replaceAll(t.data(d)).data(d,!1)}));break;case"image":t=e.tpl.image.replace("{href}",o);break;case"swf":t='',s="",i.each(e.swf,function(e,i){t+='',s+=" "+e+'="'+i+'"'}),t+='"}h(t)&&t.parent().is(e.inner)||e.inner.append(t),r.trigger("beforeShow"),e.inner.css("overflow","yes"===a?"scroll":"no"===a?"hidden":a),r._setDimension(),r.reposition(),r.isOpen=!1,r.coming=null,r.bindEvents(),r.isOpened?c.prevMethod&&r.transitions[c.prevMethod]():i(".fancybox-wrap").not(e.wrap).stop(!0).trigger("onReset").remove(),r.transitions[r.isOpened?e.nextMethod:e.openMethod](),r._preloadImages()}},_setDimension:function(){var e,t,n,a,o,s,l,c,d,h,u,f,v,w,x,b=r.getViewport(),y=0,C=!1,S=!1,_=r.wrap,T=r.skin,k=r.inner,E=r.current,M=E.width,P=E.height,I=E.minWidth,L=E.minHeight,O=E.maxWidth,B=E.maxHeight,A=E.scrolling,D=E.scrollOutside?E.scrollbarWidth:0,R=E.margin,W=g(R[1]+R[3]),H=g(R[0]+R[2]);if(_.add(T).add(k).width("auto").height("auto").removeClass("fancybox-tmp"),e=g(T.outerWidth(!0)-T.width()),t=g(T.outerHeight(!0)-T.height()),n=W+e,a=H+t,o=p(M)?(b.w-n)*g(M)/100:M,s=p(P)?(b.h-a)*g(P)/100:P,"iframe"===E.type){if(w=E.content,E.autoHeight&&1===w.data("ready"))try{w[0].contentWindow.document.location&&(k.width(o).height(9999),x=w.contents().find("body"),D&&x.css("overflow-x","hidden"),s=x.outerHeight(!0))}catch(z){}}else(E.autoWidth||E.autoHeight)&&(k.addClass("fancybox-tmp"),E.autoWidth||k.width(o),E.autoHeight||k.height(s),E.autoWidth&&(o=k.width()),E.autoHeight&&(s=k.height()),k.removeClass("fancybox-tmp"));if(M=g(o),P=g(s),d=o/s,I=g(p(I)?g(I,"w")-n:I),O=g(p(O)?g(O,"w")-n:O),L=g(p(L)?g(L,"h")-a:L),B=g(p(B)?g(B,"h")-a:B),l=O,c=B,E.fitToView&&(O=Math.min(b.w-n,O),B=Math.min(b.h-a,B)),f=b.w-W,v=b.h-H,E.aspectRatio?(M>O&&(M=O,P=g(M/d)),P>B&&(P=B,M=g(P*d)),I>M&&(M=I,P=g(M/d)),L>P&&(P=L,M=g(P*d))):(M=Math.max(I,Math.min(M,O)),E.autoHeight&&"iframe"!==E.type&&(k.width(M),P=k.height()),P=Math.max(L,Math.min(P,B))),E.fitToView)if(k.width(M).height(P),_.width(M+e),h=_.width(),u=_.height(),E.aspectRatio)for(;(h>f||u>v)&&M>I&&P>L&&!(y++>19);)P=Math.max(L,Math.min(B,P-10)),M=g(P*d),I>M&&(M=I,P=g(M/d)),M>O&&(M=O,P=g(M/d)),k.width(M).height(P),_.width(M+e),h=_.width(),u=_.height();else M=Math.max(I,Math.min(M,M-(h-f))),P=Math.max(L,Math.min(P,P-(u-v)));D&&"auto"===A&&s>P&&f>M+e+D&&(M+=D),k.width(M).height(P),_.width(M+e),h=_.width(),u=_.height(),C=(h>f||u>v)&&M>I&&P>L,S=E.aspectRatio?l>M&&c>P&&o>M&&s>P:(l>M||c>P)&&(o>M||s>P),i.extend(E,{dim:{width:m(h),height:m(u)},origWidth:o,origHeight:s,canShrink:C,canExpand:S,wPadding:e,hPadding:t,wrapSpace:u-T.outerHeight(!0),skinSpace:T.height()-P}),!w&&E.autoHeight&&P>L&&B>P&&!S&&k.height("auto")},_getPosition:function(e){var t=r.current,i=r.getViewport(),n=t.margin,a=r.wrap.width()+n[1]+n[3],o=r.wrap.height()+n[0]+n[2],s={position:"absolute",top:n[0],left:n[3]};return t.autoCenter&&t.fixed&&!e&&o<=i.h&&a<=i.w?s.position="fixed":t.locked||(s.top+=i.y,s.left+=i.x),s.top=m(Math.max(s.top,s.top+(i.h-o)*t.topRatio)),s.left=m(Math.max(s.left,s.left+(i.w-a)*t.leftRatio)),s},_afterZoomIn:function(){var e=r.current;e&&(r.isOpen=r.isOpened=!0,r.wrap.css("overflow","visible").addClass("fancybox-opened"),r.update(),(e.closeClick||e.nextClick&&r.group.length>1)&&r.inner.css("cursor","pointer").bind("click.fb",function(t){i(t.target).is("a")||i(t.target).parent().is("a")||(t.preventDefault(),r[e.closeClick?"close":"next"]())}),e.closeBtn&&i(e.tpl.closeBtn).appendTo(r.skin).bind("click.fb",function(e){e.preventDefault(),r.close()}),e.arrows&&r.group.length>1&&((e.loop||e.index>0)&&i(e.tpl.prev).appendTo(r.outer).bind("click.fb",r.prev),(e.loop||e.index
          ').appendTo(r.coming?r.coming.parent:e.parent),this.fixed=!1,e.fixed&&r.defaults.fixed&&(this.overlay.addClass("fancybox-overlay-fixed"),this.fixed=!0)},open:function(e){var t=this;e=i.extend({},this.defaults,e),this.overlay?this.overlay.unbind(".overlay").width("auto").height("auto"):this.create(e),this.fixed||(o.bind("resize.overlay",i.proxy(this.update,this)),this.update()),e.closeClick&&this.overlay.bind("click.overlay",function(e){return i(e.target).hasClass("fancybox-overlay")?(r.isActive?r.close():t.close(),!1):void 0}),this.overlay.css(e.css).show()},close:function(){var e,t;o.unbind("resize.overlay"),this.el.hasClass("fancybox-lock")&&(i(".fancybox-margin").removeClass("fancybox-margin"),e=o.scrollTop(),t=o.scrollLeft(),this.el.removeClass("fancybox-lock"),o.scrollTop(e).scrollLeft(t)),i(".fancybox-overlay").remove().hide(),i.extend(this,{overlay:null,fixed:!1})},update:function(){var e,i="100%";this.overlay.width(i).height("100%"),l?(e=Math.max(t.documentElement.offsetWidth,t.body.offsetWidth),s.width()>e&&(i=s.width())):s.width()>o.width()&&(i=s.width()),this.overlay.width(i).height(s.height())},onReady:function(e,t){var n=this.overlay;i(".fancybox-overlay").stop(!0,!0),n||this.create(e),e.locked&&this.fixed&&t.fixed&&(n||(this.margin=s.height()>o.height()?i("html").css("margin-right").replace("px",""):!1),t.locked=this.overlay.append(t.wrap),t.fixed=!1),e.showEarly===!0&&this.beforeShow.apply(this,arguments)},beforeShow:function(e,t){var n,a;t.locked&&(this.margin!==!1&&(i("*").filter(function(){return"fixed"===i(this).css("position")&&!i(this).hasClass("fancybox-overlay")&&!i(this).hasClass("fancybox-wrap")}).addClass("fancybox-margin"),this.el.addClass("fancybox-margin")),n=o.scrollTop(),a=o.scrollLeft(),this.el.addClass("fancybox-lock"),o.scrollTop(n).scrollLeft(a)),this.open(e)},onUpdate:function(){this.fixed||this.update()},afterClose:function(e){this.overlay&&!r.coming&&this.overlay.fadeOut(e.speedOut,i.proxy(this.close,this))}},r.helpers.title={defaults:{type:"float",position:"bottom"},beforeShow:function(e){var t,n,a=r.current,o=a.title,s=e.type;if(i.isFunction(o)&&(o=o.call(a.element,a)),u(o)&&""!==i.trim(o)){switch(t=i('
          '+o+"
          "),s){case"inside":n=r.skin;break;case"outside":n=r.wrap;break;case"over":n=r.inner;break;default:n=r.skin,t.appendTo("body"),l&&t.width(t.width()),t.wrapInner(''),r.current.margin[2]+=Math.abs(g(t.css("margin-bottom")))}t["top"===e.position?"prependTo":"appendTo"](n)}}},i.fn.fancybox=function(e){var t,n=i(this),a=this.selector||"",o=function(o){var s,l,c=i(this).blur(),d=t;o.ctrlKey||o.altKey||o.shiftKey||o.metaKey||c.is(".fancybox-wrap")||(s=e.groupAttr||"data-fancybox-group",l=c.attr(s),l||(s="rel",l=c.get(0)[s]),l&&""!==l&&"nofollow"!==l&&(c=a.length?i(a):n,c=c.filter("["+s+'="'+l+'"]'),d=c.index(this)),e.index=d,r.open(c,e)!==!1&&o.preventDefault())};return e=e||{},t=e.index||0,a&&e.live!==!1?s.undelegate(a,"click.fb-start").delegate(a+":not('.fancybox-item, .fancybox-nav')","click.fb-start",o):n.unbind("click.fb-start").bind("click.fb-start",o),this.filter("[data-fancybox-start=1]").trigger("click"),this},s.ready(function(){var t,o;i.scrollbarWidth===n&&(i.scrollbarWidth=function(){var e=i('
          ').appendTo("body"),t=e.children(),n=t.innerWidth()-t.height(99).innerWidth();return e.remove(),n}),i.support.fixedPosition===n&&(i.support.fixedPosition=function(){var e=i('
          ').appendTo("body"),t=20===e[0].offsetTop||15===e[0].offsetTop;return e.remove(),t}()),i.extend(r.defaults,{scrollbarWidth:i.scrollbarWidth(),fixed:i.support.fixedPosition,parent:i("body")}),t=i(e).width(),a.addClass("fancybox-lock-test"),o=i(e).width(),a.removeClass("fancybox-lock-test"),i("").appendTo("head")})}(window,document,jQuery),function(e,t,i){function n(e){var t={},n=/^jQuery\d+$/;return i.each(e.attributes,function(e,i){i.specified&&!n.test(i.name)&&(t[i.name]=i.value)}),t}function a(e,t){var n=this,a=i(n);if(n.value==a.attr("placeholder")&&a.hasClass("placeholder"))if(a.data("placeholder-password")){if(a=a.hide().next().show().attr("id",a.removeAttr("id").data("placeholder-id")),e===!0)return a[0].value=t;a.focus()}else n.value="",a.removeClass("placeholder"),n==s()&&n.select()}function o(){var e,t=this,o=i(t),s=this.id;if(""==t.value){if("password"==t.type){if(!o.data("placeholder-textinput")){try{e=o.clone().attr({type:"text"})}catch(r){e=i("").attr(i.extend(n(this),{type:"text"}))}e.removeAttr("name").data({"placeholder-password":o,"placeholder-id":s}).bind("focus.placeholder",a),o.data({"placeholder-textinput":e,"placeholder-id":s}).before(e)}o=o.removeAttr("id").hide().prev().attr("id",s).show()}o.addClass("placeholder"),o[0].value=o.attr("placeholder")}else o.removeClass("placeholder")}function s(){try{return t.activeElement}catch(e){}}var r,l,c="placeholder"in t.createElement("input"),d="placeholder"in t.createElement("textarea"),h=i.fn,u=i.valHooks,p=i.propHooks;c&&d?(l=h.placeholder=function(){return this},l.input=l.textarea=!0):(l=h.placeholder=function(){var e=this;return e.filter((c?"textarea":":input")+"[placeholder]").not(".placeholder").bind({"focus.placeholder":a,"blur.placeholder":o}).data("placeholder-enabled",!0).trigger("blur.placeholder"),e},l.input=c,l.textarea=d,r={get:function(e){var t=i(e),n=t.data("placeholder-password");return n?n[0].value:t.data("placeholder-enabled")&&t.hasClass("placeholder")?"":e.value},set:function(e,t){var n=i(e),r=n.data("placeholder-password");return r?r[0].value=t:n.data("placeholder-enabled")?(""==t?(e.value=t,e!=s()&&o.call(e)):n.hasClass("placeholder")?a.call(e,!0,t)||(e.value=t):e.value=t,n):e.value=t}},c||(u.input=r,p.value=r),d||(u.textarea=r,p.value=r),i(function(){i(t).delegate("form","submit.placeholder",function(){var e=i(".placeholder",this).each(a);setTimeout(function(){e.each(o)},10)})}),i(e).bind("beforeunload.placeholder",function(){i(".placeholder").each(function(){this.value=""})}))}(this,document,jQuery),function(){var e,t;jQuery.uaMatch=function(e){e=e.toLowerCase();var t=/(chrome)[ \/]([\w.]+)/.exec(e)||/(webkit)[ \/]([\w.]+)/.exec(e)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(e)||/(msie) ([\w.]+)/.exec(e)||e.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(e)||[];return{browser:t[1]||"",version:t[2]||"0"}},e=jQuery.uaMatch(navigator.userAgent),t={},e.browser&&(t[e.browser]=!0,t.version=e.version),t.chrome?t.webkit=!0:t.webkit&&(t.safari=!0),jQuery.browser=t,jQuery.sub=function(){function e(t,i){return new e.fn.init(t,i)}jQuery.extend(!0,e,this),e.superclass=this,e.fn=e.prototype=this(),e.fn.constructor=e,e.sub=this.sub,e.fn.init=function(i,n){return n&&n instanceof jQuery&&!(n instanceof e)&&(n=e(n)),jQuery.fn.init.call(this,i,n,t)},e.fn.init.prototype=e.fn;var t=e(document);return e}}(),function(e){e.fn.photoTag=function(t){function i(e){e.parent().css({overflow:"visible"}),e.parent().find(".utag-bot, .utag-top, .utag-right, .utag-left").show(),e.parent().find(".utag-bot").css({top:e.parent().css("height")}),e.parent().find(".utag-right").css({height:e.parent().css("height"),left:e.parent().css("width")}),e.parent().find(".utag-left").css({height:e.parent().css("height")}),e.parent().stop().animate({opacity:1},500)}function n(e){e.parent().stop().animate({opacity:0},500,function(){e.parent().css({overflow:"hidden"})}),e.parent().find(".utag-bot, .utag-top, .utag-right, .utag-left").hide()}function a(e){e.css({overflow:"visible"}),e.find(".utag-bot, .utag-top, .utag-right, .utag-left").show(),e.find(".utag-bot").css({top:e.css("height")}),e.find(".utag-right").css({height:e.css("height"),left:e.css("width")}),e.find(".utag-left").css({height:e.css("height")}),e.stop().animate({opacity:1},500)}function o(e){e.stop().animate({opacity:0},500,function(){e.css({overflow:"hidden"})}),e.find(".utag-bot, .utag-top, .utag-right, .utag-left").hide()}function s(){e(".highlight-tag").each(function(){e(this).mouseenter(function(){a(e("#photoTag-tag_"+e(this).attr("tag-id")))}).mouseleave(function(){o(e("#photoTag-tag_"+e(this).attr("tag-id")))})})}var r={deleteTagsUrl:"/photo/delete-tag/",addTagUrl:"/add-tag.php",parametersForNewTag:{name:{parameterKey:"name",isAutocomplete:!0,label:"Name"}},parametersForRequest:["image-id","album-id"],literals:{communicationProblem:"Произошла ошибка. Изменения не сохранены.",saveTag:"Добавить",cancelTag:"",addNewTag:"Отметить человека",removeTag:"X"},tag:{tagIdParameter:"tag-id",defaultWidth:100,defaultHeight:100,isResizable:!0,minWidth:50,minHeight:50,maxWidth:150,maxHeight:150,cssClass:"photoTag-tag",idPrefix:"photoTag-tag_",showDeleteLinkOnTag:!0,deleteLinkCssClass:"photoTag-delete",deleteLinkIdPrefix:"photoTag-delete_",flashAfterCreation:!0,newTagFormWidth:170,newTagFormClass:"photoTag-newTagForm"},imageWrapBox:{cssClass:"photoTag-wrap",idPrefix:"photoTag-wrap_",addNewLinkIdPrefix:"photoTag-add_",controlPaneIdPrefix:"photoTag-cpanel_",showTagList:!0,tagListCssClass:"photoTag-taglist",tagListIdPrefix:"photoTag-taglist_",tagListRemoveItemIdPrefix:"photoTag-removeTag",canvasIdPrefix:"photoTag-canvas_",controlPanelHeight:25},showAddTagLinks:!0,externalAddTagLinks:{bind:!0,selector:".addTag"},isEnabledToEditTags:!0,manageError:"internal function, user can bind a new one. function(response)",beforeTagRequest:"bind by user, function( parameters )"},l={tags:{}},t=e.extend(!0,r,t),c=function(i){var n={};return e.each(t.parametersForRequest,function(e,t){var a=i.attr("data-"+t);a&&(n[t]=a)}),n},d=function(i){e.isFunction(t.manageError)?t.manageError(i):i.message?alert(i.message):alert(t.literals.communicationProblem)},h=function(a,o){a.click(function(s){s.preventDefault();var r=a.attr("href").substring(1),l=c(o);l[t.tag.tagIdParameter]=r,e.getJSON(t.deleteTagsUrl,l,function(e){e.result||d(e)}),e("#"+t.tag.deleteLinkIdPrefix+r).parents().eq(1).remove(),e("#"+t.imageWrapBox.tagListRemoveItemIdPrefix+r).parent().remove();var h=e("span.comma"),u=e("a.highlight-tag");return e("ul.photoTag-taglist li").last().find(h).remove(),e("ul.photoTag-taglist li").last().find(u).mouseover(function(){i(e("#photoTag-tag_"+e(this).attr("tag-id")).find(".taghover"))}).mouseleave(function(){n(e("#photoTag-tag_"+e(this).attr("tag-id")).find(".taghover"))}),!1})},u=function(i,n,a){e(i).click(function(i){i.preventDefault(),0==e("#"+t.tag.idPrefix+"expo").length&&(S(a),e("#"+t.imageWrapBox.idPrefix+a).append(C(n)),m(e("#"+t.tag.idPrefix+"expo"),n,a))})},p=function(t,i){var n=(e(this),e(this).position()),a=n.left,o=n.top;e("#expoTagBoxForm")&&e("#expoTagBoxForm").css({top:o,left:a+e(this).width()+10}),e("#photoTag-tag_expo .utag-right").css({height:e(this).height(),left:e(this).width()}),e("#photoTag-tag_expo .utag-left").css({height:e(this).height()}),e("#photoTag-tag_expo .utag-bot").css({top:e(this).height()})},f=function(t,i){e("#expoTagBoxForm")&&e("#expoTagBoxForm").css({display:"none"})},g=function(t,i){var n=(e(this),e(this).position()),a=n.left,o=n.top;e("#expoTagBoxForm")&&e("#expoTagBoxForm").css({display:"block",top:o,left:a+e(this).width()+10})},m=function(i,n,a){i.draggable({containment:n,cursor:"move",drag:p,start:f,stop:g,grid:[1,1]}),i.resizable({handles:"n, e, s, w, ne, se, sw, nw",maxHeight:n.height(),maxWidth:n.width(),minHeight:t.tag.minHeight,minWidth:t.tag.minWidth,containment:n,resize:p}),v(i,n,a),e(".utag-bot").css({top:t.tag.defaultWidth}),e(".utag-right").css({height:t.tag.defaultHeight,left:t.tag.defaultWidth}),e(".utag-left").css({height:t.tag.defaultHeight})},v=function(i,n,a){var o=e('
          '),r=e('
          '),l=e(i).position();r.css({position:"absolute",top:l.top,left:l.left+i.width()+10,width:t.tag.newTagFormWidth}),r.append(e('
          '));var c=e("#"+t.imageWrapBox.idPrefix+a);c.append(r),e("#expoNewTagFormContent").append(o),e.each(t.parametersForNewTag,function(t,i){var n=e('
          ');if(i.label){var a=e("");e("
          ");a.append(i.label),e("#expoNewTagForm").append(a)}e("#expoNewTagForm").append(n),e("#expoInput_name").bind("keydown",function(t){t.keyCode===e.ui.keyCode.TAB&&e(this).data("ui-autocomplete").menu.active&&t.preventDefault()}).autocomplete({appendTo:e(".ptListHolder"),minLength:1,source:function(t,i){var n=e.ui.autocomplete.escapeRegex(t.term),a=new RegExp("^"+n,"i"),o=e.grep(photoTagData,function(e){return a.test(e.label||e.value||e)}),s=new RegExp(n,"i"),r=e.grep(photoTagData,function(t){return e.inArray(t,o)<0&&s.test(t.label||t.value||t)});i(o.concat(r))},focus:function(){return!1},select:function(t,i){e("#hidden_expoInput_name").val(i.item.id)}}),e("#expoInput_name").parent().append(e(''))});var h=e('");e("#expoNewTagForm").append(h);var u=e("");e("#expoNewTagForm").append(u);var p=e('');p.click(function(e){return e.preventDefault(),w(),_(a),!1}),e("#expoNewTagForm").append(p),e("#expoNewTagForm").submit(function(i){i.preventDefault();var o=e("#"+t.tag.idPrefix+"expo"),r={left:o.position().left,top:o.position().top,width:o.width(),height:o.height()};e.getJSON(t.addTagUrl+"?"+e.param(r)+"&"+e(this).serialize(),function(i){if(void 0!=i.result&&!i.result)return void d(i);var o=b(i.tag,n);e("#"+t.imageWrapBox.idPrefix+a).append(o),s(),E(o,i.tag,n,a)}),w(),_(a)})},w=function(){e("#"+t.tag.idPrefix+"expo").remove(),e("#expoTagBoxForm").remove()},x=function(i,n,a,o){var s=e('
          '),r={position:"absolute",top:Math.round(a.top)+"px",left:Math.round(a.left)+"px",height:n.height+"px",width:n.width+"px",opacity:o};return s.css(r),s.append(' 
          '),s},b=function(i,n){i.height&&i.width||(i.height=t.tag.defaultHeight,i.width=t.tag.defaultWidth);var a={width:i.width,height:i.height},o={top:i.top,left:i.left},s=x(i.id,a,o,0),r=e("
          ");if(r.append(i.text.replace(/ /g," ")),s.append(r),t.isEnabledToEditTags&&i.isDeleteEnable&&t.tag.showDeleteLinkOnTag){var l=e('');h(l,n)}return s.find(".taghover").append(l),s},y=function(a,o){e(".photoTag-taglist").html().length>0&&e(".photoTag-taglist li").last().append(', ');var s=e("
        • ");if(a.url){var r=e(''+a.text+"");s.append(r)}else s.append(a.text);if(a.isDeleteEnable){var l=e('  ');h(l,o),s.append(l)}var c=e("a.highlight-tag");return e("ul.photoTag-taglist li").last().find(c).mouseover(function(){i(e("#photoTag-tag_"+e(this).attr("tag-id")).find(".taghover"))}).mouseleave(function(){n(e("#photoTag-tag_"+e(this).attr("tag-id")).find(".taghover"))}),s},C=function(e,i){var n={width:t.tag.defaultWidth,height:t.tag.defaultHeight},a={top:e.height()/2-n.height/2,left:e.width()/2-n.width/2};l.expoId++;var o=x("expo",n,a,1);return o},S=function(t){e.each(l.tags[t],function(){e(this).css({opacity:0}),e(this).hide()})},_=function(t){e.each(l.tags[t],function(){e(this).show()})},T=function(i,n){var a=e(''+t.literals.addNewTag+"");return u(a,i,n),a},k=function(i,n){var a=i.height(),o=i.width(),s=e('
          '),r=e('
          ');s.append(r);var l=e('
          ');if(s.append(l),i.wrap(s),t.externalAddTagLinks.bind){var c=e(t.externalAddTagLinks.selector);c.each(function(){u(this,i,n)})}else e("#"+t.imageWrapBox.controlPaneIdPrefix+n).append(T(i,n));var d=e("
          ");if(e("#"+t.imageWrapBox.canvasIdPrefix+n).wrap(d),t.imageWrapBox.showTagList){var h=e('
            ');e(".pg-photo-descr#imgid"+n).append(h)}},E=function(a,o,s,r){if(t.tag.flashAfterCreation&&(e(a).css({opacity:1}),e(a).stop().animate({opacity:0},800)),t.imageWrapBox.showTagList){var l=y(o,s);e("#"+t.imageWrapBox.tagListIdPrefix+r).append(l);var c=e("a.highlight-tag");e("ul.photoTag-taglist li").last().find(c).mouseover(function(){i(e("#photoTag-tag_"+e(this).attr("tag-id")).find(".taghover"))}).mouseleave(function(){n(e("#photoTag-tag_"+e(this).attr("tag-id")).find(".taghover"))})}},M=function(i,n){k(n,i.id);var a=l.tags[i.id]={};e.each(i.Tags,function(){var o=b(this,n);a[this.id]=o,e("#"+t.imageWrapBox.idPrefix+i.id).append(o),s(),E(o,this,n,i.id)})};return this.each(function(){var i=e(this),n=c(i);(!e.isFunction(t.beforeTagRequest)||t.beforeTagRequest(n))&&e.getJSON(t.requestTagsUrl,n,function(n){return void 0==n.result||n.result?(n.options&&(t=e.extend(!0,t,n.options)),void e.each(n.Image,function(){M(this,i)})):void d(n)})}),this}}(jQuery);var dna={clone:function(e,t,i){var n={fade:!1,top:!1,container:null,empty:!1,html:!1,callback:null};$.extend(n,i);var a=dna.store.getTemplate(e);a.nested&&!n.container&&dna.core.berserk("Container missing for nested template: "+e),n.empty&&dna.empty(e);for(var o=t instanceof Array?t:[t],s=$(),r=0;r0&&i(window,e.split(".")),n}},dna.ui={toElem:function(e,t){return e instanceof jQuery?e:$(e?e.target:t)},deleteElem:function(e){return dna.ui.toElem(e,this).remove()},slideFade:function(e,t,i){function n(){e.css(r)}var a={opacity:0,transition:"opacity 0s ease 0s"},o={opacity:1,transition:"opacity 0.4s ease-in"},s={opacity:0,transition:"opacity 0.4s ease-out"},r={transition:"opacity 0s ease 0s"};return window.setTimeout(n,1e3),i?e.css(a).hide().slideDown({complete:t}).css(o):e.css(s).slideUp({complete:t}),e},slideFadeIn:function(e,t){return dna.ui.slideFade(e,t,!0)},slideFadeOut:function(e,t){return dna.ui.slideFade(e,t,!1)},slideFadeToggle:function(e,t){return dna.ui.slideFade(e,t,e.is(":hidden"))},slideFadeDelete:function(e){return dna.ui.slideFadeOut(e,dna.ui.deleteElem)},slidingFlasher:function(e,t){return e.is(":hidden")?dna.ui.slideFadeIn(e,t):e.hide().fadeIn()}},dna.compile={regexDnaField:/^[\s]*(~~|\{\{).*(~~|\}\})[\s]*$/,regexDnaBasePair:/~~|{{|}}/,regexDnaBasePairs:/~~|\{\{|\}\}/g,setupNucleotide:function(e){return void 0===e.data().dnaRules&&(e.data().dnaRules={}),e.addClass("dna-nucleotide")},isDnaField:function(){var e=$(this)[0].childNodes[0];return e&&e.nodeValue&&e.nodeValue.match(dna.compile.regexDnaField)},field:function(){var e=dna.compile.setupNucleotide($(this));return e.data().dnaRules.text=$.trim(e.text()).replace(dna.compile.regexDnaBasePairs,""),e.empty()},propsAndAttrs:function(){function e(){if(/^data-dna-prop-/.test(this.name))i.push(this.name.replace(/^data-dna-prop-/,""),this.value.replace(dna.compile.regexDnaBasePairs,""));else{if(3!==this.value.split(dna.compile.regexDnaBasePair).length)return;n.push(this.name.replace(/^data-dna-attr-/,""),this.value.split(dna.compile.regexDnaBasePair))}a.push(this.name)}var t=$(this),i=[],n=[],a=[];return $.each(t.get(0).attributes,e),i.length>0&&(dna.compile.setupNucleotide(t).data().dnaRules.props=i),n.length>0&&(dna.compile.setupNucleotide(t).data().dnaRules.attrs=n),t.removeAttr(a.join(" "))},getDataField:function(e,t){return $.trim(e.data("dna-"+t).replace(dna.compile.regexDnaBasePairs,""))},subTemplateName:function(e,t){var i=e instanceof jQuery?dna.getClone(e).data().dnaRules.template:e;return i+"-"+t+"-instance"},rules:function(e,t,i){function n(){var e=dna.compile.setupNucleotide($(this)),n=dna.compile.getDataField(e,t);e.data().dnaRules[t]=i?n.split(","):n}return e.filter("[data-dna-"+t+"]").each(n).removeAttr("data-dna-"+t)},template:function(e){function t(){$(this).data().dnaRules={template:$(this).attr("id")}}var i=$("#"+e);i.length||dna.core.berserk("Template not found: "+e),i.find(".dna-template").addBack().each(t).removeAttr("id");var n=i.find("*").addBack();return n.filter(dna.compile.isDnaField).each(dna.compile.field),dna.compile.rules(n,"array").addClass("dna-array"),dna.compile.rules(n,"class",!0),dna.compile.rules(n,"require"),dna.compile.rules(n,"missing"),dna.compile.rules(n,"truthy"),dna.compile.rules(n,"falsey"),n.each(dna.compile.propsAndAttrs),dna.store.stash(i)}},dna.store={templates:{},stash:function(e){function t(){var e=$(this),t=e.data().dnaRules.template,i={name:t,elem:e,container:e.parent().addClass("dna-container").addClass("dna-contains-"+t),nested:0!==e.parent().closest(".dna-clone").length,index:e.index(),clones:0};dna.store.templates[t]=i,e.removeClass("dna-template").addClass("dna-clone").addClass(t).detach()}function i(){var e=$(this),t=e.data().dnaRules.array,i=dna.compile.subTemplateName(n,t);dna.compile.setupNucleotide(e.parent()).data().dnaRules.loop={name:i,field:t},e.data().dnaRules.template=i}var n=e.data().dnaRules.template;return e.find(".dna-template").addBack().each(t),e.find(".dna-array").each(i).each(t),dna.store.templates[n]},getTemplate:function(e){return dna.store.templates[e]||dna.compile.template(e)}},dna.events={initializers:[],elementSetup:function(e,t){function i(){dna.util.apply($(this).data("dna-setup"),[$(this),t])}var n="[data-dna-setup]",a=e?e.find(n).addBack(n):$(".dna-setup");return a.each(i).addClass("dna-initialized")},runInitializers:function(e,t){function i(){dna.util.apply(this.func,[(this.selector?e.find(this.selector).addBack(this.selector):e).addClass("dna-initialized")].concat(this.params))}return dna.events.elementSetup(e,t),$.each(dna.events.initializers,i),e},runner:function(e,t,i){return e=e.closest("[data-dna-"+t+"]"),dna.util.apply(e.data("dna-"+t),[e,i])},handle:function(e){return dna.events.runner($(e.target),e.type.replace("key","key-"),e)},handleEnterKey:function(e){return 13===e.which?dna.events.runner($(e.target),"enter-key",e):null},setup:function(){$(document).click(dna.events.handle).change(dna.events.handle).keyup(dna.events.handle).keyup(dna.events.handleEnterKey).keydown(dna.events.handle).keypress(dna.events.handle),dna.events.elementSetup()}},$(dna.events.setup),dna.core={inject:function(e,t,i,n){function a(e,a){function o(e){return-1!==$.inArray(typeof e,r)}var s="object"==typeof t?dna.util.value(t,a):"[count]"===a?i:"[value]"===a?t:null,r=["string","number","boolean"];o(s)&&(e=n.html?e.html(s):e.text(s))}function o(e,i){for(var n=0;n1&&(e.toggleClass(i[1],a),i[2]&&e.toggleClass(i[2],!a))}function l(e,i){var n=dna.util.value(t,i.field);n&&dna.clone(i.name,n,{container:e})}function c(){var e=$(this),i=e.data().dnaRules;i.text&&a(e,i.text),i.props&&o(e,i.props),i.attrs&&s(e,i.attrs),i["class"]&&r(e,i["class"]),i.require&&e.toggle(void 0!==dna.util.value(t,i.require)),i.missing&&e.toggle(void 0===dna.util.value(t,i.missing)),i.truthy&&e.toggle(dna.util.realTruth(dna.util.value(t,i.truthy))),i.falsey&&e.toggle(!dna.util.realTruth(dna.util.value(t,i.falsey))),i.loop&&l(e,i.loop)}return e.find(".dna-array").remove(),e.find(".dna-nucleotide").addBack(".dna-nucleotide").each(c),e.data("dna-model",t)},replicate:function(e,t,i,n){var a=e.elem.clone(!0,!0);e.clones++,dna.core.inject(a,t,i,n);var o=".dna-contains-"+e.name,s=n.container?n.container.find(o).addBack(o):e.container;return s[n.top?"prepend":"append"](a),dna.events.runInitializers(a,t),n.callback&&n.callback(a,t),n.fade&&dna.ui.slideFadeIn(a),a},unload:function(e,t,i){t.error||dna.clone(e,t,i)},berserk:function(e){throw"dna.js error -> "+e}};var map;!function(e){var t=e(window),i=(e("html"),e("body"),e(document));e.widget("custom.catcomplete",e.ui.autocomplete,{_renderMenu:function(t,i){var n=this,a="";e.each(i,function(e,i){i.category!=a&&(t.append("
          • "+i.category+"
          • "),a=i.category),n._renderItemData(t,i)})}}),e(function(){function n(e){return(e.getDate()<10?"0":"")+e.getDate()+"."+(e.getMonth()<9?"0":"")+(e.getMonth()+1)+"."+e.getFullYear()}e("#send_message_form").on("submit",function(t){t.preventDefault(),$this=e(this);var i=$this.serialize(),n=$this.attr("action");e.post(n,i,function(t){t.success&&(e.fancybox.close(),$this.find("#id_body").val(""))})}),e("#reply_form").on("submit",function(t){t.preventDefault(),$this=e(this);var i=$this.serialize(),n=e("#reply_message").val(),a="/profile/messages/reply/"+n+"/";e.post(a,i,function(t){t.success&&(e.fancybox.close(),$this.find("#id_recipient").val(""),$this.find("#id_body").val(""))})}),e(".visit, .unvisit").on("click",function(t){t.preventDefault();var i=e(this),n=e(this).attr("href");e.get(n,function(t){t.not_authorized?e.fancybox.open("#pw-login"):t.success&&(t["in"]?i.hasClass("visit")&&(i.hide(),i.siblings(".unvisit").show()):i.hasClass("unvisit")&&(i.hide(),i.siblings(".visit").show()))})}),e("#paswd_change").on("submit",function(t){t.preventDefault();var i=e(this).serialize(),n="/profile/change-password/",a=e(this);e.post(n,i,function(t){if(t.success)e("#paswd_change .mf-success").fadeIn(300),setTimeout(function(){e("#paswd_change .mf-success").fadeOut(300)},3e3),a.find("#id_old password").val("");else{e("#paswd_change .mf-error").parent().remove();var i=e("
            ").attr("class","mf-line").append(e("
            ").attr("class","mf-error").append(t.errors[0]));a.find(".mf-buttons-line").before(i)}})}),e(".reg").on("click",function(t){t.preventDefault(),e(".register").click()}),e.fn.customSelect=function(){return e(this).each(function(){var t=e(this),i=t.children("option"),n=t.children("option").length,a=e(":selected",t);t.addClass("s-hidden"),t.wrap('
            '),t.after('
            ');var o=t.next("div.custom-select-wrap"),s=o.children(".custom-select-text"),r=0!=a.length?a.text():t.children("option").eq(0).text();s.text(r),0!=i.index(a)||t.children("option").eq(0).val()&&t.children("option").eq(0).attr("value")||s.addClass("placeholder");for(var l=e('
            ').insertAfter(o),c=l.find(".scroll-content"),d=e("
              ").appendTo(c),h=0;n>h;h++){var u=""!=t.children("option").eq(h).text()?t.children("option").eq(h).html():" ";e("
            • ",{html:u,"data-value":t.children("option").eq(h).val()}).appendTo(d)}var p=d.children("li");if(o.on("click",function(i){i.stopPropagation(),e("div.custom-select-wrap.active").not(this).each(function(){e(this).removeClass("active").next(".options").hide()}),t.prop("disabled")||e(this).toggleClass("active").next(".options").toggle()}),p.on("click",function(i){var n=e(this);i.stopPropagation(), +s.text(n.text()),o.removeClass("active"),t.val(n.data("value")),0!=n.index()||t.children("option").eq(0).val()&&t.children("option").eq(0).attr("value")?s.removeClass("placeholder"):s.addClass("placeholder"),l.hide()}),e.fn.mCustomScrollbar){var f={scrollInertia:200,contentTouchScroll:!0,scrollButtons:{enable:!1},advanced:{autoScrollOnFocus:!1,updateOnContentResize:!0}},g=l.find("div.cs-scroll-container");g.mCustomScrollbar(f)}e(document).on("click",function(){o.removeClass("active"),l.hide()}),t.on("change",function(){var i=e(this),n=i.prop("selectedIndex"),a=i.children("option").eq(n).text();s.text(a),0!=n||t.children("option").eq(0).val()&&t.children("option").eq(0).attr("value")?s.removeClass("placeholder"):s.addClass("placeholder")})})},e("select:not([multiple])").each(function(){var t=e(this);t.hasClass("select2")||t.customSelect()}),e("#mp-recent-expo").each(function(){var t=e(this),i=t.children("ul"),n=i.children("li"),a=t.children("div.re-controls"),o=a.children("a.prev"),s=a.children("a.next");if(n.length>1){a.addClass("enabled"),n.css({display:"block"}),t.height(n.eq(0).height());var r=t.swiper({speed:500,mode:"horizontal",loop:!1,simulateTouch:!1,autoplay:4200,onInit:function(){o.addClass("disabled")},onSlideChangeStart:function(e){t.animate({height:n.eq(e.activeIndex).children("div.re-body").height()},300),0==e.activeIndex?(o.hasClass("disabled")||o.addClass("disabled"),s.hasClass("disabled")&&s.removeClass("disabled")):e.activeIndex==e.slides.length-1?(s.hasClass("disabled")||s.addClass("disabled"),o.hasClass("disabled")&&o.removeClass("disabled")):(o.hasClass("disabled")&&o.removeClass("disabled"),s.hasClass("disabled")&&s.removeClass("disabled"))}});o.on("click",function(){return e(this).hasClass("disabled")||r.swipePrev(),!1}),s.on("click",function(){return e(this).hasClass("disabled")||r.swipeNext(),!1})}}),e("#mp-photo-gallery").each(function(){var t=e(this),i=t.children("ul"),n=i.children("li"),a=t.children("div.re-controls"),o=a.children("a.prev"),s=a.children("a.next");if(n.length>1){a.addClass("enabled");var r=t.swiper({speed:500,mode:"horizontal",loop:!1,simulateTouch:!1,onInit:function(e){o.addClass("disabled")},onSlideChangeStart:function(e){var t=n.find("div.pgi-descr");t.animate({height:"hide",opacity:"hide"},500),0==e.activeIndex?(o.hasClass("disabled")||o.addClass("disabled"),s.hasClass("disabled")&&s.removeClass("disabled")):e.activeIndex==e.slides.length-1?(s.hasClass("disabled")||s.addClass("disabled"),o.hasClass("disabled")&&o.removeClass("disabled")):(o.hasClass("disabled")&&o.removeClass("disabled"),s.hasClass("disabled")&&s.removeClass("disabled"))},onSlideChangeEnd:function(e){var t=n.find("div.pgi-descr");t.eq(e.activeIndex).slideDown(250)}});o.on("click",function(){return e(this).hasClass("disabled")||r.swipePrev(),!1}),s.on("click",function(){return e(this).hasClass("disabled")||r.swipeNext(),!1})}}),e("#ps-photo-gallery").each(function(){var t=e(this),i=t.children("ul"),n=i.children("li"),a=t.children("div.re-controls"),o=a.children("a.prev"),s=a.children("a.next");if(n.length>1){a.addClass("enabled"),n.css({display:"block"});var r=t.swiper({speed:500,mode:"horizontal",calculateHeight:!0,loop:!1,simulateTouch:!1,onInit:function(e){o.addClass("disabled")},onSlideChangeStart:function(e){0==e.activeIndex?(o.hasClass("disabled")||o.addClass("disabled"),s.hasClass("disabled")&&s.removeClass("disabled")):e.activeIndex==e.slides.length-1?(s.hasClass("disabled")||s.addClass("disabled"),o.hasClass("disabled")&&o.removeClass("disabled")):(o.hasClass("disabled")&&o.removeClass("disabled"),s.hasClass("disabled")&&s.removeClass("disabled"))}});o.on("click",function(){return e(this).hasClass("disabled")||r.swipePrev(),!1}),s.on("click",function(){return e(this).hasClass("disabled")||r.swipeNext(),!1})}}),e("#s-slide-gallery").each(function(){var i=e(this),n=i.children("ul"),a=n.children("li"),o=i.children("div.re-controls"),s=o.children("a.prev"),r=o.children("a.next");if(a.length>4){o.addClass("enabled"),a.css({display:"block"}),t.on("resize",function(){i.height(a.eq(0).height())}).trigger("resize");var l=i.swiper({slidesPerView:4,slidesPerGroup:4,speed:500,mode:"horizontal",calculateHeight:!0,loop:!1,simulateTouch:!1,onInit:function(e){s.addClass("disabled")},onSlideChangeStart:function(e){0==e.activeIndex?(s.hasClass("disabled")||s.addClass("disabled"),r.hasClass("disabled")&&r.removeClass("disabled")):e.activeIndex==e.slides.length-4?(r.hasClass("disabled")||r.addClass("disabled"),s.hasClass("disabled")&&s.removeClass("disabled")):(s.hasClass("disabled")&&s.removeClass("disabled"),r.hasClass("disabled")&&r.removeClass("disabled"))}});s.on("click",function(){return e(this).hasClass("disabled")||l.swipePrev(),!1}),r.on("click",function(){return e(this).hasClass("disabled")||l.swipeNext(),!1})}}),e(".sli-slides").each(function(){var i=e(this),n=i.children("ul"),a=n.children("li"),o=i.children("div.re-controls"),s=o.children("a.prev"),r=o.children("a.next");if(a.length>4){o.addClass("enabled"),a.css({display:"block"}),t.on("resize",function(){i.css({height:a.eq(0).height()})}).trigger("resize");var l=i.swiper({slidesPerView:4,slidesPerGroup:4,calculateHeight:!0,speed:500,mode:"horizontal",loop:!1,simulateTouch:!1,onInit:function(e){s.addClass("disabled")},onSlideChangeStart:function(e){0==e.activeIndex?(s.hasClass("disabled")||s.addClass("disabled"),r.hasClass("disabled")&&r.removeClass("disabled")):e.activeIndex==e.slides.length-4?(r.hasClass("disabled")||r.addClass("disabled"),s.hasClass("disabled")&&s.removeClass("disabled")):(s.hasClass("disabled")&&s.removeClass("disabled"),r.hasClass("disabled")&&r.removeClass("disabled"))}});s.on("click",function(){return e(this).hasClass("disabled")||l.swipePrev(),!1}),r.on("click",function(){return e(this).hasClass("disabled")||l.swipeNext(),!1})}});var a={padding:0,fitToView:!1};e("a.pw-open").fancybox(a),e("input[placeholder], textarea[placeholder]").placeholder(),i.on("focus",'form.pw-form input[type="text"], form.pw-form input[type="password"]',function(t){var i=e(this),n=i.closest(".pwf-line"),a=n.find("div.msg-help"),o=n.find("div.msg-error"),s=e(this).parent().parent().parent().find(".mf-error");o.parent().remove(),s.parent().remove(),a.is(":hidden")&&a.fadeIn(300)}),i.on("blur",'form.pw-form input[type="text"], form.pw-form input[type="password"]',function(t){var i=e(this),n=i.closest(".pwf-line"),a=n.find("div.msg-help");a.is(":visible")&&a.fadeOut(300)});var o={scrollInertia:200,contentTouchScroll:!0,scrollButtons:{enable:!1},advanced:{updateOnContentResize:!0}};e("div.scroll-container").each(function(){var t=e(this);t.mCustomScrollbar(o)}),e("#subscribe-sm").each(function(){var t=e(this),i=t.find("a");i.on("click",function(){var t=(e(this),i.index(this)),n=e("#pw-subscribe");e.fancybox(n,a);var o=n.find("ul.tabs > li");return o.eq(t).trigger("click"),!1})}),e("ul.tabs > li").on("click",function(){var t=e(this),i=t.closest("ul"),n=i.children("li").index(this),a=i.siblings(".tabs-content"),o=t.find("a"),s=t.closest("#pw-subscribe");if(!t.hasClass("active")){s.length&&(a=s.find(".tabs-content"));var r=i.children("li.active"),l=a.find("li.active"),c=a.children("li").eq(n);r.removeClass("active"),l.removeClass("active"),t.addClass("active"),c.addClass("active")}return o.blur(),closeSelectBox(),!1}),e("#cli-pg").each(function(){var t=e(this),i=t.find("a");i.on({mouseenter:function(){var t=e(this),i=t.find(".pg-title");i.stop(!0,!0).slideDown(300,function(){i.css({display:"block"})})},mouseleave:function(){var t=e(this),i=t.find(".pg-title");i.stop(!0,!0).slideUp(300)}})}),e("#map-canvas").each(function(){var t=e(this);t.is(":hidden")||(google.maps.event.addDomListener(window,"load",mapInit),t.data("init",!0))}),e("a.toggle-map").on({click:function(){var t=e(this),i=t.closest(".i-address"),n=i.children(".i-map"),a=e("#map-canvas");i.find("header a.toggle-map");return n.is(":hidden")?n.stop(!0,!0).animate({opacity:"show",height:"show"},300,function(){a.data("init")||(mapInit(),a.data("init",!0)),i.addClass("map-opened")}):n.stop(!0,!0).animate({opacity:"hide",height:"hide"},300,function(){i.removeClass("map-opened")}),!1}}),e("ul.messages-list").each(function(){var t=e(this),i=t.children("li");i.on({mouseenter:function(){var t=e(this),i=t.find("div.mi-buttons");i.stop(!0,!0).animate({opacity:"show",height:"show"},250)},mouseleave:function(){var t=e(this),i=t.find("div.mi-buttons");i.stop(!0,!0).animate({opacity:"hide",height:"hide"},250)}})}),e(".set-sect > header").on("click",function(){var t=e(this),i=t.closest(".set-sect"),n=i.children("div.set-sect-body");n.is(":visible")?n.stop(!0,!0).animate({height:"hide",opacity:"hide"},300,function(){i.addClass("closed")}):n.stop(!0,!0).animate({height:"show",opacity:"show"},300,function(){i.removeClass("closed")})}),e('input[type="checkbox"].annoncesFlag').each(function(){var t=e(this);t.on("change",function(){var e=t.closest("div.mf-announces").children("div.mf-announces-body"),i=e.find("input, select, textarea"),n=e.find("div.c-select-box");t.prop("checked")?(e.removeClass("disabled"),n.removeClass("disabled"),i.prop("disabled",!1)):(e.addClass("disabled"),n.addClass("disabled"),i.prop("disabled",!0))}).trigger("change")}),e("a.icb-edit-profile").on("click",function(){var t=e(this),i=t.next("a.icb-exit-edit"),n=e("div.p-editable");return t.css({display:"none"}),i.css({display:"inline-block"}),n.addClass("pe-active"),!1}),e("a.icb-exit-edit").on("click",function(){var t=e(this),i=t.prev("a.icb-edit-profile"),n=e("div.p-editable");return i.css({display:"inline-block"}),t.css({display:"none"}),n.removeClass("pe-active"),!1}),e('input[type="file"]').each(function(){var t=e(this),i=t.closest(".input-file"),n=i.children(".file-text");""!=t.val()?(n.text(t.val()),n.removeClass("placeholder")):(n.text(n.data("placeholder")),n.addClass("placeholder")),t.on({change:function(){""!=t.val()?(n.text(t.val()),n.removeClass("placeholder")):(n.text(n.data("placeholder")),n.addClass("placeholder"))}})}),e("form.af-statistic div.mf-stat").each(function(){var t=e(this),i=t.children(".mf-stat-add-button"),n=i.find("a.icon-add");n.on("click",function(){var n=t.children(".mf-stat-item"),a=n.length,o=n.eq(0).find("select").eq(0).find("option").length-1,s=n.eq(0).clone(),r=s.find("select"),l=s.find("input");return l.val(""),r.each(function(){var t=e(this),i=t.closest(".custom-select"),n=t.clone();n.insertAfter(i),n.customSelect(),i.remove()}),s.insertBefore(i),a==o-1&&i.hide(),!1})}),e('input[type="checkbox"].w-time-switcher').each(function(){function t(){var t=n.find("div.w-time"),a=t.eq(0),o=a.find("select");t.each(function(t){var i=e(this);if(0!=t)for(var n=i.find("select"),a=1;a");o.val(n(t)).text(n(t)),i.html(o);for(var s=1;u>s;s++){var l=o.clone();t.setDate(t.getDate()+1),l.val(n(t)).text(n(t)),i.append(l)}i.prop("selectedIndex",0),a.length&&(i.insertAfter(a),a.remove()),i.customSelect()});for(var f=1;u>f;f++){var g=a.clone(),m=g.find("select");g.children("label.check").remove(),m.each(function(t){var i=e(this),n=i.closest(".custom-select");i.insertAfter(n),0==t?i.prop("selectedIndex",f):h.prop("checked")&&i.prop("selectedIndex",p.eq(t).prop("selectedIndex")),n.remove(),i.customSelect()}),c.append(g)}}var a=e(this),o=a.find("input.dateFrom"),s=a.find("input.dateTo"),r=new Date,l=new Date,c=e("#work-time");o.on("change",function(){i()}),s.on("change",function(){i()}),i()}),e("div.request-form").each(function(){var t=e(this),i=t.find("div.rq-btn-to-hide"),n=i.find("a"),a=t.find("div.rq-form"),o=t.find("div.rq-to-hide");a.find("div.rq-btn-wrap");n.on("click",function(){return o.hide(),a.animate({height:"show",opacity:"show"},300,function(){t.addClass("rqf-opened")}),!1})}),e("form div.rq-switch").each(function(){function t(){var e=o.find("input, select"),t=o.find("div.c-select-box");n.prop("checked")?(o.removeClass("disabled"),t.removeClass("disabled"),e.prop("disabled",!1)):(o.addClass("disabled"),t.addClass("disabled"),e.prop("checked",!1).prop("disabled",!0),e.trigger("change"))}var i=e(this),n=i.find('input[type="checkbox"]'),a=i.closest(".rq-sub-sect"),o=a.children(".rq-sub-sect-body");t(),n.on("change",t)}),e("a.reply-msg").on("click",function(){var t=e(this).attr("data-sender"),i=e(this).attr("data-reply-message"),n=e("#pw-reply");n.find("#id_recipient").val(t),n.find("#reply_message").val(i)})})}(jQuery),$(document).ready(function(){$("div.ht-main_1").each(function(){$(this).width($("div.serv-links").width())}),$(window).resize(function(){$("div.ht-main_1").each(function(){$(this).width($("div.serv-links").width())})}),$("a.small_link").click(function(){return $("#large img").hide().attr({src:$(this).attr("href"),title:$("> img",this).attr("title")}),!1}),$("#large>img").load(function(){$("#large>img:hidden").fadeIn("slow")}),setTimeout(function(){$("a.subscribe_link").click()},3e3),$(".subscribe_success").click(function(){return $("div.subscribe_before").hide(),$("div.subscribe_after").show(),setTimeout(function(){$("a.fancybox-close").click()},2e3),!1});var e=$("div.subjects_list ul li").length,t=e-5;$("div.subjects_list ul li:gt(4)").hide(),$("div.subjects_list span i").text(t),e>5&&$("div.subjects_list").addClass("more"),$("div.subjects_list span").click(function(){return $(this).parents("div.subjects_list").removeClass("more"),$(this).parents("div.subjects_list").find("li").show(),!1})});var Base64={_keyStr:"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",encode:function(e){var t,i,n,a,o,s,r,l="",c=0;for(e=Base64._utf8_encode(e);c>2,o=(3&t)<<4|i>>4,s=(15&i)<<2|n>>6,r=63&n,isNaN(i)?s=r=64:isNaN(n)&&(r=64),l=l+this._keyStr.charAt(a)+this._keyStr.charAt(o)+this._keyStr.charAt(s)+this._keyStr.charAt(r);return l},decode:function(e){var t,i,n,a,o,s,r,l="",c=0;for(e=e.replace(/[^A-Za-z0-9\+\/\=]/g,"");c>4,i=(15&o)<<4|s>>2,n=(3&s)<<6|r,l+=String.fromCharCode(t),64!=s&&(l+=String.fromCharCode(i)),64!=r&&(l+=String.fromCharCode(n));return l=Base64._utf8_decode(l)},_utf8_encode:function(e){e=e.replace(/\r\n/g,"\n");for(var t="",i=0;in?t+=String.fromCharCode(n):n>127&&2048>n?(t+=String.fromCharCode(n>>6|192),t+=String.fromCharCode(63&n|128)):(t+=String.fromCharCode(n>>12|224),t+=String.fromCharCode(n>>6&63|128),t+=String.fromCharCode(63&n|128))}return t},_utf8_decode:function(e){for(var t="",i=0,n=c1=c2=0;in?(t+=String.fromCharCode(n),i++):n>191&&224>n?(c2=e.charCodeAt(i+1),t+=String.fromCharCode((31&n)<<6|63&c2),i+=2):(c2=e.charCodeAt(i+1),c3=e.charCodeAt(i+2),t+=String.fromCharCode((15&n)<<12|(63&c2)<<6|63&c3),i+=3);return t}}; \ No newline at end of file From 537f5bc50191b85642c9e346dc7214a1247637eb Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Thu, 24 Sep 2015 15:32:17 +0300 Subject: [PATCH 40/45] pagination improved --- accounts/views.py | 3 ++- article/views.py | 3 ++- company/views.py | 3 ++- conference/views.py | 3 ++- core/views.py | 3 ++- exposition/views.py | 3 ++- functions/custom_views.py | 20 +++++++++++++++++--- functions/overrides.py | 19 +++++++++++++++++++ photologue/views.py | 2 +- place_exposition/views.py | 3 ++- proj/settings.py | 12 +++++++++--- specialist_catalog/views.py | 8 ++++++-- translator/views.py | 3 ++- 13 files changed, 68 insertions(+), 17 deletions(-) create mode 100644 functions/overrides.py diff --git a/accounts/views.py b/accounts/views.py index e4eb1243..c6cc53b5 100644 --- a/accounts/views.py +++ b/accounts/views.py @@ -8,7 +8,8 @@ from django.contrib.auth.decorators import login_required from django.utils.translation import ugettext as _, get_language from django.utils import timezone from django_messages.forms import SendForm -from django.views.generic import TemplateView, FormView, ListView +from django.views.generic import TemplateView, FormView +from functions.custom_views import ListView from sorl.thumbnail import get_thumbnail from .forms import ChangePasswordForm, EmailAnnouncementForm, FeedFilterForm from company.forms import CreateCompanyForm diff --git a/article/views.py b/article/views.py index 4b421db2..53dbdb6e 100644 --- a/article/views.py +++ b/article/views.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- import json -from django.views.generic import DetailView, ListView +from django.views.generic import DetailView +from functions.custom_views import ListView from django.http import HttpResponse from models import Article from forms import ArticleFilterForm diff --git a/company/views.py b/company/views.py index d82401a8..d77a6ca2 100644 --- a/company/views.py +++ b/company/views.py @@ -2,7 +2,8 @@ import json from django.http import HttpResponse from django.conf import settings -from django.views.generic import ListView, DetailView +from django.views.generic import DetailView +from functions.custom_views import ListView from django.shortcuts import get_object_or_404 from django.utils.translation import ugettext as _, get_language from haystack.query import EmptySearchQuerySet diff --git a/conference/views.py b/conference/views.py index bbbc63c6..c5a854e8 100644 --- a/conference/views.py +++ b/conference/views.py @@ -6,7 +6,8 @@ from django.http import HttpResponse, Http404, HttpResponseRedirect, HttpRespons from django.contrib import messages from django.shortcuts import get_object_or_404 from django.contrib.contenttypes.models import ContentType -from django.views.generic import ListView, DetailView +from django.views.generic import DetailView +from functions.custom_views import ListView from django.views.generic.edit import FormMixin from django.utils.translation import ugettext as _ from django.utils import translation diff --git a/core/views.py b/core/views.py index 0ec0cb16..1ad5be9a 100644 --- a/core/views.py +++ b/core/views.py @@ -3,7 +3,8 @@ from country.models import Country from city.models import City from place_exposition.models import PlaceExposition from place_conference.models import PlaceConference -from django.views.generic import ListView, CreateView, DeleteView, UpdateView, DetailView +from django.views.generic import CreateView, DeleteView, UpdateView, DetailView +from functions.custom_views import ListView from django.core.urlresolvers import reverse_lazy from functions.views_help import split_params from django.utils.translation import ugettext as _ diff --git a/exposition/views.py b/exposition/views.py index fa7eff6a..b35e42a6 100644 --- a/exposition/views.py +++ b/exposition/views.py @@ -4,7 +4,8 @@ import datetime from django.http import HttpResponseRedirect, HttpResponse, HttpResponsePermanentRedirect from django.contrib.contenttypes.models import ContentType from django.conf import settings -from django.views.generic import ListView, DetailView +from django.views.generic import DetailView +from functions.custom_views import ListView from django.utils.translation import ugettext as _ from django.shortcuts import get_object_or_404 from django.http import Http404 diff --git a/functions/custom_views.py b/functions/custom_views.py index dfbc9071..781626cc 100644 --- a/functions/custom_views.py +++ b/functions/custom_views.py @@ -18,9 +18,23 @@ from hvad.utils import get_translation_aware_manager #python import random +from django.views.generic import ListView as OldListView -from country.models import Country - +class ListView(OldListView): + """ + List of modules, where overrided ListView is used: + - accounts.views + - article.views + - company.views + - conference.views + - core.views + - exposition.views + - photologue.views + - place_exposition.views + - specialist_catalog.views + - translator.views + """ + paginator_class = settings.DEFAULT_PAGINATOR @login_required def filtered_list(request, objects, template, item_per_page=settings.ADMIN_PAGINATION): @@ -186,7 +200,7 @@ def delete_object(request, Model, Form, url, prev_page,): return render_to_response('delete.html', args) #-----class------------------ -from django.views.generic import ListView, DetailView +from django.views.generic import DetailView from functions.views_help import split_params from city.models import City diff --git a/functions/overrides.py b/functions/overrides.py new file mode 100644 index 00000000..8a132cb7 --- /dev/null +++ b/functions/overrides.py @@ -0,0 +1,19 @@ +from django.core.paginator import Paginator, PageNotAnInteger, EmptyPage + +class SeoPaginator(Paginator): + + def validate_number(self, number): + "Validates the given 1-based page number." + try: + number = int(number) + except (TypeError, ValueError): + raise PageNotAnInteger('That page number is not an integer') + if number < 1: + raise EmptyPage('That page number is less than 1') + if number > self.num_pages: + if number == 1 and self.allow_empty_first_page: + pass + else: + number = 1 + return number + diff --git a/photologue/views.py b/photologue/views.py index a0ebb335..fb2e9589 100644 --- a/photologue/views.py +++ b/photologue/views.py @@ -3,7 +3,7 @@ import warnings from django.conf import settings from django.views.generic.dates import ArchiveIndexView, DateDetailView, DayArchiveView, MonthArchiveView, YearArchiveView from django.views.generic.detail import DetailView -from django.views.generic.list import ListView +from functions.custom_views import ListView from .models import Photo, Gallery # Number of galleries to display per page. diff --git a/place_exposition/views.py b/place_exposition/views.py index a40f28d7..ba8f939a 100644 --- a/place_exposition/views.py +++ b/place_exposition/views.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- from django.shortcuts import render_to_response -from django.views.generic import ListView, DetailView, FormView +from django.views.generic import DetailView, FormView +from functions.custom_views import ListView from django.utils import translation from django.http import HttpResponseRedirect, HttpResponse from django.template import RequestContext diff --git a/proj/settings.py b/proj/settings.py index 9fdca037..f7fb9c17 100644 --- a/proj/settings.py +++ b/proj/settings.py @@ -422,10 +422,14 @@ THUMBNAIL_DEBUG = DEBUG CALLBACK_EMAIL = 'kotzilla@ukr.net' BOOKING_AID = '333667' - - +try: + from functions.overrides import SeoPaginator as Paginator +except ImportError: + from django.core.paginator import Paginator +DEFAULT_PAGINATOR = Paginator ADMIN_PAGINATION = 20 CLIENT_PAGINATION = 15 + TEMPLATE_DEBUG = DEBUG NO_LOGO = '/static/client/img/no-logo.png' @@ -504,4 +508,6 @@ if DEBUG: # 'INTERCEPT_REDIRECTS': False, #} -""" \ No newline at end of file +""" + +# -- PAGINATION -- # diff --git a/specialist_catalog/views.py b/specialist_catalog/views.py index 49ff483d..c3a17a20 100644 --- a/specialist_catalog/views.py +++ b/specialist_catalog/views.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- -from django.views.generic import CreateView, UpdateView, DeleteView, ListView, FormView, DetailView +from django.views.generic import CreateView, UpdateView, DeleteView, FormView, DetailView +from functions.custom_views import ListView from django.views.generic.detail import SingleObjectMixin from django.utils.translation import ugettext as _ from .forms import * @@ -11,6 +12,8 @@ from django.http import HttpResponseRedirect, Http404 from .models import _city, _country + + # =========== ADMIN VIEWS =========== # Specialist views @@ -70,11 +73,12 @@ class CatalogCreateView(CreateView): success_url = reverse_lazy("catalog_all") + class CatalogListView(ListView): model = SpecialistCatalog template_name = 'admin/specialist/catalog_all.html' paginate_by = settings.ADMIN_PAGINATION - + paginator_class = settings.DEFAULT_PAGINATOR def get_queryset(self): _GET = self.request.GET query, city, country, only_cntry = _GET.get('query'), _GET.get('city'), _GET.get('country'), _GET.get('only_countries') diff --git a/translator/views.py b/translator/views.py index a6884462..30d277c5 100644 --- a/translator/views.py +++ b/translator/views.py @@ -1,5 +1,6 @@ # -*- coding: utf-8 -*- -from django.views.generic import ListView, DetailView +from django.views.generic import DetailView +from functions.custom_views import ListView from django.shortcuts import get_object_or_404 from django.views.generic.detail import SingleObjectMixin from django.utils.translation import ugettext as _ From a04fe870fa4907df6279e48d74aa4ad29df9c351 Mon Sep 17 00:00:00 2001 From: Nazar Kotjuk Date: Thu, 24 Sep 2015 16:35:54 +0300 Subject: [PATCH 41/45] Translators seo fix --- article/models.py | 2 +- specialist_catalog/urls.py | 18 +++++++++++++----- specialist_catalog/views.py | 23 ++++++++++++++++++----- 3 files changed, 32 insertions(+), 11 deletions(-) diff --git a/article/models.py b/article/models.py index b1a4d2c5..5b981113 100644 --- a/article/models.py +++ b/article/models.py @@ -45,7 +45,7 @@ class ArticleManager(TranslationManager): if cached_news: return cached_news else: - news = list(self.news().filter(publish_date__isnull=False).order_by('-main_page', '-publish_date')[:3]) + news = list(self.news().filter(publish_date__isnull=False).order_by('-main_page', '-publish_date', '-modified')[:3]) cache.set(key, news, self.cache_time) return news diff --git a/specialist_catalog/urls.py b/specialist_catalog/urls.py index 91382837..d3853d9c 100644 --- a/specialist_catalog/urls.py +++ b/specialist_catalog/urls.py @@ -1,11 +1,19 @@ # -*- coding: utf-8 -*- from django.conf.urls import url, patterns -from .views import CatalogDetailedView, SpecCatalog +from .views import CatalogDetailedView, SpecCatalog, redirect_old + urlpatterns = patterns('', - url(r'^city/$', SpecCatalog.as_view(), {'type': 'city'}, name="spec_city"), - url(r'^country/$', SpecCatalog.as_view(), {'type': 'country'}, name="spec_country"), + url(r'^city/(?P.*)/all/page/(?P\d+)/$', redirect_old, {'type': 'city'}), + url(r'^city/(?P.*)/all/$', redirect_old, {'type': 'city'}), + url(r'^city/$', SpecCatalog.as_view(), {'type': 'city', 'meta_id': 86}, name="spec_city"), + url(r'^city/(?P.*)/$', CatalogDetailedView.as_view(), {'type': 'city', 'meta_id': 88}, name="spec_catalog_city"), - url(r'^city/(?P.*)/$', CatalogDetailedView.as_view(), {'type': 'city'}, name="spec_catalog_city"), - url(r'^country/(?P.*)/$', CatalogDetailedView.as_view(), {'type': 'country'}, name="spec_catalog_country"), + url(r'^country/(?P.*)/all/page/(?P\d+)/$', redirect_old), + url(r'^country/(?P.*)/all/$', redirect_old), + url(r'^country/$', SpecCatalog.as_view(), {'type': 'country', 'meta_id': 86}, name="spec_country"), + url(r'^country/(?P.*)/$', CatalogDetailedView.as_view(), {'type': 'country', 'meta_id': 87}, name="spec_catalog_country"), + url(r'^(?P.*)/$', redirect_old), + url(r'^page/(?P\d+)/$', redirect_old), + url(r'^$', redirect_old), ) \ No newline at end of file diff --git a/specialist_catalog/views.py b/specialist_catalog/views.py index b7ed1b44..fe81fccb 100644 --- a/specialist_catalog/views.py +++ b/specialist_catalog/views.py @@ -2,12 +2,13 @@ from django.views.generic import CreateView, UpdateView, DeleteView, ListView, FormView, DetailView from django.views.generic.detail import SingleObjectMixin from django.utils.translation import ugettext as _ +from meta.views import MetadataMixin from .forms import * from django.core.urlresolvers import reverse_lazy from django.conf import settings from django.shortcuts import get_object_or_404 from service.order_forms import TranslationForm -from django.http import HttpResponseRedirect, Http404 +from django.http import HttpResponseRedirect, Http404, HttpResponsePermanentRedirect from .models import _city, _country @@ -155,7 +156,7 @@ class FeedbackDeleteView(DeleteView): # ========= CLIENT VIEWS ============ -class CatalogDetailedView(SingleObjectMixin, FormView): +class CatalogDetailedView(MetadataMixin, SingleObjectMixin, FormView): model = SpecialistCatalog form_class = TranslationForm template_name = "client/specialist_catalog/catalog_detailed.html" @@ -164,12 +165,16 @@ class CatalogDetailedView(SingleObjectMixin, FormView): def get_catalog_obj(self): if self.kwargs.get('type') is "country": try: - return self.model.objects.language().get(type=1, country__url=self.kwargs.get('slug')) + spec_catalog = self.model.objects.language().get(type=1, country__url=self.kwargs.get('slug')) + self.kwargs['country'] = spec_catalog.country + return spec_catalog except self.model.DoesNotExist: raise Http404 else: try: - return self.model.objects.language().get(type=2, city__url=self.kwargs.get('slug')) + spec_catalog = self.model.objects.language().get(type=2, city__url=self.kwargs.get('slug')) + self.kwargs['city'] = spec_catalog.city + return spec_catalog except self.model.DoesNotExist: raise Http404 @@ -197,7 +202,7 @@ class CatalogDetailedView(SingleObjectMixin, FormView): init['city'] = obj.city.name return init -class SpecCatalog(ListView): +class SpecCatalog(MetadataMixin, ListView): model = SpecialistCatalog template_name = 'client/specialist_catalog/catalog.html' @@ -223,3 +228,11 @@ class SpecCatalog(ListView): else: context['title'] = _(u'Переводчики по городам') return context + + + +def redirect_old(request, *args, **kwargs): + if not kwargs.get('type'): + return HttpResponsePermanentRedirect('/translators/country/') + else: + return HttpResponsePermanentRedirect('/translators/city/') \ No newline at end of file From f03ffb19a3be391885bf4b147e97ec6201342e6d Mon Sep 17 00:00:00 2001 From: Nazar Kotjuk Date: Thu, 24 Sep 2015 21:08:37 +0300 Subject: [PATCH 42/45] Tag fix. News logo fix --- conference/forms.py | 3 ++- exposition/forms.py | 6 ++++-- templates/client/includes/article/news_on_main_logo.html | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/conference/forms.py b/conference/forms.py index 12040fc2..897f441b 100644 --- a/conference/forms.py +++ b/conference/forms.py @@ -132,7 +132,8 @@ class ConferenceCreateForm(forms.Form): else: conference = obj conference.theme.clear() - conference.tag.clear() + if data.get('tag'): + conference.tag.clear() #simple fields if not getattr(conference, 'url'): diff --git a/exposition/forms.py b/exposition/forms.py index 7036432a..8b431736 100644 --- a/exposition/forms.py +++ b/exposition/forms.py @@ -161,9 +161,11 @@ class ExpositionCreateForm(forms.Form): else: exposition = obj exposition.theme.clear() - exposition.tag.clear() + + exposition.organiser.clear() - #exposition.company.clear() + if data.get('tag'): + exposition.tag.clear() #simple fields if not getattr(exposition, 'url'): diff --git a/templates/client/includes/article/news_on_main_logo.html b/templates/client/includes/article/news_on_main_logo.html index 51e2920d..9ae0fa5e 100644 --- a/templates/client/includes/article/news_on_main_logo.html +++ b/templates/client/includes/article/news_on_main_logo.html @@ -2,7 +2,7 @@ {% load thumbnail %} {% if obj.logo %} - {% thumbnail obj.logo "80x80" format="PNG" as im %} + {% thumbnail obj.logo "70x70" format="PNG" as im %} {% endthumbnail %} {% else %} From 112dcbb877302993fd68b85f00a5c965229cf4a6 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Fri, 25 Sep 2015 17:17:11 +0300 Subject: [PATCH 43/45] delete LinkedIn and Google+ login buttons --- templates/client/popups/login.html | 2 -- templates/client/popups/register.html | 2 -- 2 files changed, 4 deletions(-) diff --git a/templates/client/popups/login.html b/templates/client/popups/login.html index 12ff1fbf..000c6c8d 100644 --- a/templates/client/popups/login.html +++ b/templates/client/popups/login.html @@ -36,8 +36,6 @@
              • -
              • -
              • diff --git a/templates/client/popups/register.html b/templates/client/popups/register.html index 6e4e5204..333ca6b5 100644 --- a/templates/client/popups/register.html +++ b/templates/client/popups/register.html @@ -56,8 +56,6 @@
                • -
                • -
                • From fc9d882f986a749b5888e2cfbe758dc25584fee6 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Fri, 25 Sep 2015 17:18:56 +0300 Subject: [PATCH 44/45] pagination fixed --- functions/custom_views.py | 37 +++++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) diff --git a/functions/custom_views.py b/functions/custom_views.py index 781626cc..01e0ac25 100644 --- a/functions/custom_views.py +++ b/functions/custom_views.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- from django.shortcuts import render_to_response -from django.http import HttpResponseRedirect, HttpResponse +from django.http import HttpResponseRedirect, HttpResponse, Http404 from django.core.context_processors import csrf from django.conf import settings from django.contrib.auth.decorators import login_required @@ -20,8 +20,11 @@ import random from django.views.generic import ListView as OldListView + class ListView(OldListView): """ + Default Django generic ListView with few overrided methods for redirecting + onto first page of pagination in case of entering big page number(for search engines) List of modules, where overrided ListView is used: - accounts.views - article.views @@ -34,7 +37,37 @@ class ListView(OldListView): - specialist_catalog.views - translator.views """ - paginator_class = settings.DEFAULT_PAGINATOR + def paginate_queryset(self, queryset, page_size): + """ + Paginate the queryset, if needed. + """ + paginator = self.get_paginator(queryset, page_size, allow_empty_first_page=self.get_allow_empty()) + page_kwarg = self.page_kwarg + page = self.kwargs.get(page_kwarg) or self.request.GET.get(page_kwarg) or 1 + try: + page_number = int(page) + except ValueError: + if page == 'last': + page_number = paginator.num_pages + else: + raise Http404(_("Page is not 'last', nor can it be converted to an int.")) + try: + page = paginator.page(page_number) + self.kwargs['home'] = False + + except EmptyPage as e: + page = paginator.page(1) + self.kwargs['home'] = True + return (paginator, page, page.object_list, page.has_other_pages()) + + def get(self, request, *args, **kwargs): + response = super(ListView, self).get(request, *args, **kwargs) + if self.kwargs.get("home"): + path = self.request.path + return HttpResponseRedirect(path[:path.find('page')]) + else: + return response + @login_required def filtered_list(request, objects, template, item_per_page=settings.ADMIN_PAGINATION): From bfce0ae3e5b38489ffd52fe380bfaa5f1ee836e2 Mon Sep 17 00:00:00 2001 From: Ivan Kovalkovskyi Date: Fri, 25 Sep 2015 17:19:48 +0300 Subject: [PATCH 45/45] delete views for article and news --- article/admin.py | 13 +++++++++++++ article/admin_urls.py | 3 ++- article/views.py | 2 +- expobanner/admin.py | 12 ++++++------ proj/admin.py | 6 +++++- templates/admin/article/article_confirm_delete.html | 11 +++++++++++ 6 files changed, 38 insertions(+), 9 deletions(-) create mode 100644 templates/admin/article/article_confirm_delete.html diff --git a/article/admin.py b/article/admin.py index 94a892a3..ff178cee 100644 --- a/article/admin.py +++ b/article/admin.py @@ -5,6 +5,7 @@ from django.core.context_processors import csrf from django.conf import settings from django.contrib.auth.decorators import login_required from django.contrib.contenttypes.models import ContentType +from django.views.generic import DeleteView #models and forms from forms import ArticleForm, ArticleDeleteForm, Article, NewsForm from theme.models import Tag @@ -16,6 +17,18 @@ from functions.custom_views import objects_list, add_object_with_file, delete_ob from functions.views_help import get_referer +class ArticleDeleteView(DeleteView): + model = Article + template_name = "admin/article/article_confirm_delete.html" + + def get_success_url(self): + if self.object.type == 1: + type = "blog" + else: + type = "news" + return "/admin/article/%s/all/" % type + + def article_all(request): """ Return list of all articles with pagination diff --git a/article/admin_urls.py b/article/admin_urls.py index cbc9b1f6..ed180fb2 100644 --- a/article/admin_urls.py +++ b/article/admin_urls.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- from django.conf.urls import patterns, url -from admin import BlogList, BlogView, NewsList, NewsView +from admin import BlogList, BlogView, NewsList, NewsView, ArticleDeleteView urlpatterns = patterns('article.admin', @@ -11,6 +11,7 @@ urlpatterns = patterns('article.admin', #url(r'^all/$', 'article_all'), url(r'^blog/all/$', BlogList.as_view()), url(r'^blog/$', BlogView.as_view()), + url(r'^delete/(?P.*)/$', ArticleDeleteView.as_view()), url(r'^news/all/$', NewsList.as_view()), url(r'^news/$', NewsView.as_view()), diff --git a/article/views.py b/article/views.py index 53dbdb6e..952e4193 100644 --- a/article/views.py +++ b/article/views.py @@ -10,6 +10,7 @@ from meta.views import MetadataMixin + class NewsList(MetadataMixin, ListView): model = Article template_name = 'article/news_list.html' @@ -53,7 +54,6 @@ class NewsList(MetadataMixin, ListView): return context - class NewsDetail(MetadataMixin, DetailView): model = Article slug_field = 'slug' diff --git a/expobanner/admin.py b/expobanner/admin.py index 7d1bf1b1..4c053c53 100644 --- a/expobanner/admin.py +++ b/expobanner/admin.py @@ -117,10 +117,10 @@ class BannerStat(DetailView): date_from, date_to = self.request.GET.get('date_from'), self.request.GET.get('date_to') if date_from: date_from = datetime.strptime(date_from, "%d.%m.%Y") - qs = qs.filter(date__gt=date_from) + qs = qs.filter(date__gte=date_from) if date_to: date_to = datetime.strptime(date_to, "%d.%m.%Y") - qs = qs.filter(date__lt=date_to) + qs = qs.filter(date__lte=date_to) context['stats'] = qs return context @@ -195,10 +195,10 @@ class PaidStat(DetailView): date_from, date_to = self.request.GET.get('date_from'), self.request.GET.get('date_to') if date_from: date_from = datetime.strptime(date_from, "%d.%m.%Y") - qs = qs.filter(date__gt=date_from) + qs = qs.filter(date__gte=date_from) if date_to: date_to = datetime.strptime(date_to, "%d.%m.%Y") - qs = qs.filter(date__lt=date_to) + qs = qs.filter(date__lte=date_to) context['stats'] = qs return context @@ -264,10 +264,10 @@ class MainStat(DetailView): date_from, date_to = self.request.GET.get('date_from'), self.request.GET.get('date_to') if date_from: date_from = datetime.strptime(date_from, "%d.%m.%Y") - qs = qs.filter(date__gt=date_from) + qs = qs.filter(date__gte=date_from) if date_to: date_to = datetime.strptime(date_to, "%d.%m.%Y") - qs = qs.filter(date__lt=date_to) + qs = qs.filter(date__lte=date_to) context['stats'] = qs return context diff --git a/proj/admin.py b/proj/admin.py index 39bccbc2..7c8afd82 100644 --- a/proj/admin.py +++ b/proj/admin.py @@ -3,7 +3,7 @@ from django.shortcuts import render_to_response from django.http import HttpResponseRedirect, HttpResponse, Http404 from django.contrib.contenttypes.models import ContentType from django.conf import settings -from django.views.generic import TemplateView +from django.views.generic import TemplateView, DeleteView from file.models import TmpFile, FileModel from file.forms import FileModelForm, FileForm from city.models import City @@ -13,6 +13,10 @@ from django.db.models.loading import get_model + + + + class AdminIndex(TemplateView): template_name = 'admin/base.html' diff --git a/templates/admin/article/article_confirm_delete.html b/templates/admin/article/article_confirm_delete.html new file mode 100644 index 00000000..ac15985c --- /dev/null +++ b/templates/admin/article/article_confirm_delete.html @@ -0,0 +1,11 @@ +{% extends 'base.html' %} +{% block sidebar %}{% endblock %} +{% block body %} +
                  {% csrf_token %} +
                  +

                  Вы точно хотите удалить "{{ object }}" ?

                  + + Нет +
                  +
                  +{% endblock %} \ No newline at end of file