diff --git a/.env.example b/.env.example index 35c17f0..5106d4c 100644 --- a/.env.example +++ b/.env.example @@ -87,3 +87,9 @@ WHATSAPP_TOKEN=troque_por_uma_string_aleatoria_longa # do serviço no docker-compose.yml). # (o nome antigo `BAILEYS_URL` ainda é aceito, para .env já em produção) WHATSAPP_URL=http://whatsapp:3001 + +# ── Erros na tela ──────────────────────────────────────────────────────── +# Mostra a página de debug do Rails (parâmetros, SESSÃO, cookies, IP, trace). +# Deixe SEMPRE vazia/false em qualquer servidor: esse painel vai para a tela de +# quem provocou o erro. Ligue só na sua máquina, quando estiver depurando. +ERROS_DETALHADOS=false diff --git a/Erros/Action Controller_ Exception caught erro holerite com nqrcode.html b/Erros/Action Controller_ Exception caught erro holerite com nqrcode.html deleted file mode 100644 index aa790c3..0000000 --- a/Erros/Action Controller_ Exception caught erro holerite com nqrcode.html +++ /dev/null @@ -1,8856 +0,0 @@ - - - - - - - Action Controller: Exception caught - - - - - - -
-

- Prawn::Errors::IncompatibleStringEncoding - in ConsolidacoesController#gerar_pdf_holerite -

-
- -
-
-
Your document includes text that's not compatible with the Windows-1252 character set. -
If you need full UTF-8 support, use external fonts instead of PDF's built-in fonts. -
-
- - - - - - - - - - - - - - - - - - - - -
-
- Extracted source (around line #114): -
-
- - - - - -
-
-112
-113
-114
-115
-116
-117
-              
-
-
-
@pdf.fill_rounded_rectangle [0, @pdf.cursor], 250, 26, 5 -
@pdf.fill_color(pago ? 'FFFFFF' : '374151') -
@pdf.text_box texto, at: [12, @pdf.cursor - 8], width: 238, size: 10, style: :bold -
@pdf.fill_color '000000' -
@pdf.move_down 34 -
end -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Rails.root: /app

- -
- Application Trace | - Framework Trace | - Full Trace - - - - - - -
- - -

Exception Causes

- -
- - Encoding::UndefinedConversionError: U+2713 to WINDOWS-1252 in conversion from UTF-8 to WINDOWS-1252 - -
- - - -

Request

-

Parameters:

{"motorista"=>"Bruno Corgozinho", "id"=>"9"}
-
- -
- - -
- -
- - -
- -

Response

-

Headers:

None
- -
- - - - diff --git a/Erros/Action Controller_ Exception caughtQuando clica na opção usuarios.html b/Erros/Action Controller_ Exception caughtQuando clica na opção usuarios.html deleted file mode 100644 index 0aef099..0000000 --- a/Erros/Action Controller_ Exception caughtQuando clica na opção usuarios.html +++ /dev/null @@ -1,5441 +0,0 @@ - - - - - - - Action Controller: Exception caught - - - - - - -
-

- NoMethodError in - Admin::Usuarios#index -

-
- -
-

- Showing /app/app/views/admin/usuarios/index.html.erb where line #60 raised: -

-
undefined method `badge_status_usuario' for #<ActionView::Base:0x00000000011f80>
- - -
-
- Extracted source (around line #61): -
-
- - - - - -
-
-59
-60
-61
-62
-63
-64
-              
-
-
-
</td> -
<td class="px-6 py-4"> -
'.freeze; @output_buffer.append=( badge_status_usuario(usuario.ativo?) ); @output_buffer.safe_append=' -
</td> -
<td class="px-6 py-4"> -
<div class="flex items-center justify-end gap-2 opacity-0 group-hover:opacity-100 transition-opacity"> -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- - -

Rails.root: /app

- -
- Application Trace | - Framework Trace | - Full Trace - - - - - - -
- -

Request

-

Parameters:

None
- -
- - -
- -
- - -
- -

Response

-

Headers:

None
- -
- - - - diff --git a/Erros/Action Controller_ Exception caught_quando Cria uma consolidação.html b/Erros/Action Controller_ Exception caught_quando Cria uma consolidação.html deleted file mode 100644 index 2d59e8f..0000000 --- a/Erros/Action Controller_ Exception caught_quando Cria uma consolidação.html +++ /dev/null @@ -1,3987 +0,0 @@ - - - - - - - Action Controller: Exception caught - - - - - - -
-

- NoMethodError - in ConsolidacoesController#new -

-
- -
-
-
undefined method `new?' for #<ConsolidacaoPolicy:0x00007f710ab493f8 @user=#<User id: 1, email: "admin@gade.com", nome: "Administrador Gade", telefone: nil, pin_code: nil, role: "admin", ativo: true, tema_preferido: "dark", created_at: "2026-06-11 23:00:11.605256000 -0300", updated_at: "2026-06-11 23:00:11.605256000 -0300", login_token: nil>, @record=Consolidacao(id: integer, nome: string, data_inicio: date, data_fim: date, status: integer, valor_total: decimal, created_by: integer, finalizado_por: integer, finalizado_em: datetime, deleted_at: datetime, created_at: datetime, updated_at: datetime, route_ids: jsonb, arquivado_por: integer, arquivado_em: datetime)>
-
- - - - - - - - -
-
- Extracted source (around line #32): -
-
- - - - - -
-
-30
-31
-32
-33
-34
-35
-              
-
-
-
# GET /consolidacoes/new -
def new -
authorize Consolidacao -
@consolidacao = Consolidacao.new( -
data_inicio: Date.current.beginning_of_month, -
data_fim: Date.current -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Rails.root: /app

- -
- Application Trace | - Framework Trace | - Full Trace - - - - - - -
- - - - -

Request

-

Parameters:

None
- -
- - -
- -
- - -
- -

Response

-

Headers:

None
- -
- - - - diff --git a/Erros/Action Controller_ Exception caught_quando aperta as configuraçoes .html b/Erros/Action Controller_ Exception caught_quando aperta as configuraçoes .html deleted file mode 100644 index d75a32d..0000000 --- a/Erros/Action Controller_ Exception caught_quando aperta as configuraçoes .html +++ /dev/null @@ -1,4026 +0,0 @@ - - - - - - - Action Controller: Exception caught - - - - - - -
-

- NoMethodError - in Admin::ConfiguracoesController#index -

-
- -
-
-
undefined method `admin_ou_gerente?' for #<ConfiguracaoPolicy:0x00007efdbb16abb0 @user=#<User id: 1, email: "admin@gade.com", nome: "Administrador Gade", telefone: nil, pin_code: nil, role: "admin", ativo: true, tema_preferido: "dark", created_at: "2026-06-11 23:00:11.605256000 -0300", updated_at: "2026-06-11 23:00:11.605256000 -0300", login_token: nil>, @record=Configuracao(id: integer, chave: string, valor: string, descricao: string, updated_by: integer, created_at: datetime, updated_at: datetime)>
-
- - - - - -
-
- Extracted source (around line #4): -
-
- - - - - -
-
-2
-3
-4
-5
-6
-7
-              
-
-
-
class ConfiguracaoPolicy < ApplicationPolicy -
def index? -
admin_ou_gerente? -
end -
-
def edit? -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Rails.root: /app

- -
- Application Trace | - Framework Trace | - Full Trace - - - - - - -
- - - - -

Request

-

Parameters:

None
- -
- - -
- -
- - -
- -

Response

-

Headers:

None
- -
- - - - diff --git a/Erros/Action Controller_ Exception caught_quando aperta na parte de usuario.html b/Erros/Action Controller_ Exception caught_quando aperta na parte de usuario.html deleted file mode 100644 index 0cc889a..0000000 --- a/Erros/Action Controller_ Exception caught_quando aperta na parte de usuario.html +++ /dev/null @@ -1,4027 +0,0 @@ - - - - - - - Action Controller: Exception caught - - - - - - -
-

- NoMethodError - in Admin::UsuariosController#index -

-
- -
-
-
undefined method `admin_ou_gerente?' for #<UserPolicy:0x00007f710b57d3d8 @user=#<User id: 1, email: "admin@gade.com", nome: "Administrador Gade", telefone: nil, pin_code: nil, role: "admin", ativo: true, tema_preferido: "dark", created_at: "2026-06-11 23:00:11.605256000 -0300", updated_at: "2026-06-11 23:00:11.605256000 -0300", login_token: nil>, @record=User(id: integer, email: string, encrypted_password: string, reset_password_token: string, reset_password_sent_at: datetime, remember_created_at: datetime, nome: string, telefone: string, pin_code: string, role: integer, ativo: boolean, tema_preferido: string, created_at: datetime, updated_at: datetime, login_token: string, sign_in_count: integer, current_sign_in_at: datetime, last_sign_in_at: datetime, current_sign_in_ip: string, last_sign_in_ip: string, failed_attempts: integer, unlock_token: string, locked_at: datetime)>
-
- - - - - -
-
- Extracted source (around line #4): -
-
- - - - - -
-
-2
-3
-4
-5
-6
-7
-              
-
-
-
class UserPolicy < ApplicationPolicy -
def index? -
admin_ou_gerente? -
end -
-
def show? -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Rails.root: /app

- -
- Application Trace | - Framework Trace | - Full Trace - - - - - - -
- - - - -

Request

-

Parameters:

None
- -
- - -
- -
- - -
- -

Response

-

Headers:

None
- -
- - - - diff --git a/Erros/Action Controller_ Exception caught_quando aperta nos usuarios .html b/Erros/Action Controller_ Exception caught_quando aperta nos usuarios .html deleted file mode 100644 index 3f57202..0000000 --- a/Erros/Action Controller_ Exception caught_quando aperta nos usuarios .html +++ /dev/null @@ -1,5440 +0,0 @@ - - - - - - - Action Controller: Exception caught - - - - - - -
-

- NoMethodError in - Admin::Usuarios#index -

-
- -
-

- Showing /app/app/views/admin/usuarios/index.html.erb where line #57 raised: -

-
undefined method `badge_role' for #<ActionView::Base:0x0000000000fc80>
- - -
-
- Extracted source (around line #58): -
-
- - - - - -
-
-56
-57
-58
-59
-60
-61
-              
-
-
-
@output_buffer.safe_append=' </td> -
<td class="px-6 py-4"> -
'.freeze; @output_buffer.append=( badge_role(usuario.role) ); @output_buffer.safe_append=' -
</td> -
<td class="px-6 py-4"> -
'.freeze; @output_buffer.append=( badge_status_usuario(usuario.ativo?) ); @output_buffer.safe_append=' -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- - -

Rails.root: /app

- -
- Application Trace | - Framework Trace | - Full Trace - - - - - - -
- -

Request

-

Parameters:

None
- -
- - -
- -
- - -
- -

Response

-

Headers:

None
- -
- - - - diff --git a/Erros/Action Controller_ Exception caught_quando aperta o botão de relatório individual.html b/Erros/Action Controller_ Exception caught_quando aperta o botão de relatório individual.html deleted file mode 100644 index d5cc393..0000000 --- a/Erros/Action Controller_ Exception caught_quando aperta o botão de relatório individual.html +++ /dev/null @@ -1,4148 +0,0 @@ - - - - - - - Action Controller: Exception caught - - - - - - -
-

- Pundit::NotDefinedError - in ConsolidacoesController#gerar_pdf_relatorio -

-
- -
-
-
unable to find policy `NilClassPolicy` for `nil`
-
- - - - - - - - - - - - -
-
- Extracted source (around line #116): -
-
- - - - - -
-
-114
-115
-116
-117
-118
-119
-              
-
-
-
# GET /consolidacoes/:id/gerar_pdf_relatorio?motorista=X -
def gerar_pdf_relatorio -
authorize @consolidacao, :show? -
motorista = params[:motorista] -
-
pdf = Pdf::RelatorioMotoristaPdf.new(consolidacao: @consolidacao, motorista: motorista) -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Rails.root: /app

- -
- Application Trace | - Framework Trace | - Full Trace - - - - - - -
- - - - -

Request

-

Parameters:

{"motorista"=>"Bruno Corgozinho", "id"=>"3"}
-
- -
- - -
- -
- - -
- -

Response

-

Headers:

None
- -
- - - - diff --git a/Erros/Action Controller_ Exception caught_quando aperta para modificar os usuario .html b/Erros/Action Controller_ Exception caught_quando aperta para modificar os usuario .html deleted file mode 100644 index 9129811..0000000 --- a/Erros/Action Controller_ Exception caught_quando aperta para modificar os usuario .html +++ /dev/null @@ -1,6176 +0,0 @@ - - - - - - - Action Controller: Exception caught - - - - - - -
-

- NameError in - Admin::Usuarios#edit -

-
- -
-

- Showing /app/app/views/admin/usuarios/_form.html.erb where line #47 raised: -

-
undefined local variable or method `role_options_for_select' for #<ActionView::Base:0x0000000000fb68>
- - -
-
- Extracted source (around line #48): -
-
- - - - - -
-
-46
-47
-48
-49
-50
-51
-              
-
-
-
'.freeze; @output_buffer.append=( f.label :role, 'Perfil de acesso', class: 'block text-sm font-medium text-gray-300 mb-1.5' ); @output_buffer.safe_append=' -
'.freeze; @output_buffer.append=( f.select :role, -
options_for_select(role_options_for_select, usuario.role), -
{}, -
class: 'w-full px-4 py-3 bg-[#0a0a0a] border border-white/10 rounded-xl text-white -
focus:outline-none focus:border-[#f97316] focus:ring-1 focus:ring-[#f97316] -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Trace of template inclusion: #<ActionView::Template app/views/admin/usuarios/edit.html.erb locals=[]>

- - -

Rails.root: /app

- -
- Application Trace | - Framework Trace | - Full Trace - - - - - - -
- -

Request

-

Parameters:

{"id"=>"1"}
-
- -
- - -
- -
- - -
- -

Response

-

Headers:

None
- -
- - - - diff --git a/Erros/Action Controller_ Exception caughtq_quando aperta para sair .html b/Erros/Action Controller_ Exception caughtq_quando aperta para sair .html deleted file mode 100644 index 9a90010..0000000 --- a/Erros/Action Controller_ Exception caughtq_quando aperta para sair .html +++ /dev/null @@ -1,2130 +0,0 @@ - - - - - - - Action Controller: Exception caught - - - - - - -
-

Routing Error

-
-
-

No route matches [GET] "/auth/logout"

- - -

Rails.root: /app

- -
- Application Trace | - Framework Trace | - Full Trace - -
- - -
- - - - -
- - -

- Routes -

- -

- Routes match in priority from top to bottom -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Helper - (Path / - Url) - HTTP VerbPathController#ActionSource Location
- new_user_session_path - - GET - - /auth/login(.:format) - -

users/sessions#new

-
-

devise (5.0.4) lib/devise/rails/routes.rb:378

-
- user_session_path - - POST - - /auth/login(.:format) - -

users/sessions#create

-
-

devise (5.0.4) lib/devise/rails/routes.rb:379

-
- destroy_user_session_path - - DELETE - - /auth/logout(.:format) - -

users/sessions#destroy

-
-

devise (5.0.4) lib/devise/rails/routes.rb:380

-
- new_user_password_path - - GET - - /auth/senha/new(.:format) - -

devise/passwords#new

-
-

devise (5.0.4) lib/devise/rails/routes.rb:385

-
- edit_user_password_path - - GET - - /auth/senha/edit(.:format) - -

devise/passwords#edit

-
-

devise (5.0.4) lib/devise/rails/routes.rb:385

-
- user_password_path - - PATCH - - /auth/senha(.:format) - -

devise/passwords#update

-
-

devise (5.0.4) lib/devise/rails/routes.rb:385

-
- - PUT - - /auth/senha(.:format) - -

devise/passwords#update

-
-

devise (5.0.4) lib/devise/rails/routes.rb:385

-
- - POST - - /auth/senha(.:format) - -

devise/passwords#create

-
-

devise (5.0.4) lib/devise/rails/routes.rb:385

-
- root_path - - GET - - / - -

dashboard#index

-
-

/app/config/routes.rb:13

-
- dashboard_path - - GET - - /dashboard(.:format) - -

dashboard#index

-
-

/app/config/routes.rb:16

-
- motorista_dashboard_path - - GET - - /motorista(.:format) - -

motorista/dashboard#index

-
-

/app/config/routes.rb:19

-
- motorista_login_path - - GET - - /motorista/login(.:format) - -

motorista/sessoes#new

-
-

/app/config/routes.rb:22

-
- - POST - - /motorista/login(.:format) - -

motorista/sessoes#create

-
-

/app/config/routes.rb:23

-
- motorista_acesso_qr_path - - GET - - /motorista/acesso/:token(.:format) - -

motorista/sessoes#acesso_qr

-
-

/app/config/routes.rb:24

-
- wizard_consolidacao_path - - GET - - /consolidacoes/:id/wizard(.:format) - -

consolidacoes#wizard

-
-

/app/config/routes.rb:29

-
- finalizar_consolidacao_path - - POST - - /consolidacoes/:id/finalizar(.:format) - -

consolidacoes#finalizar

-
-

/app/config/routes.rb:30

-
- arquivar_consolidacao_path - - POST - - /consolidacoes/:id/arquivar(.:format) - -

consolidacoes#arquivar

-
-

/app/config/routes.rb:31

-
- preview_holerite_consolidacao_path - - GET - - /consolidacoes/:id/preview_holerite(.:format) - -

consolidacoes#preview_holerite

-
-

/app/config/routes.rb:32

-
- gerar_pdf_relatorio_consolidacao_path - - GET - - /consolidacoes/:id/gerar_pdf_relatorio(.:format) - -

consolidacoes#gerar_pdf_relatorio

-
-

/app/config/routes.rb:33

-
- gerar_pdf_holerite_consolidacao_path - - GET - - /consolidacoes/:id/gerar_pdf_holerite(.:format) - -

consolidacoes#gerar_pdf_holerite

-
-

/app/config/routes.rb:34

-
- validar_consolidacao_consolidacao_entregas_path - - GET - - /consolidacoes/:consolidacao_id/consolidacao_entregas/validar(.:format) - -

consolidacao_entregas#validar

-
-

/app/config/routes.rb:39

-
- classificar_consolidacao_consolidacao_entregas_path - - POST - - /consolidacoes/:consolidacao_id/consolidacao_entregas/classificar(.:format) - -

consolidacao_entregas#classificar

-
-

/app/config/routes.rb:40

-
- classificar_em_massa_consolidacao_consolidacao_entregas_path - - POST - - /consolidacoes/:consolidacao_id/consolidacao_entregas/classificar_em_massa(.:format) - -

consolidacao_entregas#classificar_em_massa

-
-

/app/config/routes.rb:41

-
- revisar_consolidacao_consolidacao_entregas_path - - GET - - /consolidacoes/:consolidacao_id/consolidacao_entregas/revisar(.:format) - -

consolidacao_entregas#revisar

-
-

/app/config/routes.rb:42

-
- consolidacoes_path - - GET - - /consolidacoes(.:format) - -

consolidacoes#index

-
-

/app/config/routes.rb:27

-
- - POST - - /consolidacoes(.:format) - -

consolidacoes#create

-
-

/app/config/routes.rb:27

-
- new_consolidacao_path - - GET - - /consolidacoes/new(.:format) - -

consolidacoes#new

-
-

/app/config/routes.rb:27

-
- edit_consolidacao_path - - GET - - /consolidacoes/:id/edit(.:format) - -

consolidacoes#edit

-
-

/app/config/routes.rb:27

-
- consolidacao_path - - GET - - /consolidacoes/:id(.:format) - -

consolidacoes#show

-
-

/app/config/routes.rb:27

-
- - PATCH - - /consolidacoes/:id(.:format) - -

consolidacoes#update

-
-

/app/config/routes.rb:27

-
- - PUT - - /consolidacoes/:id(.:format) - -

consolidacoes#update

-
-

/app/config/routes.rb:27

-
- - DELETE - - /consolidacoes/:id(.:format) - -

consolidacoes#destroy

-
-

/app/config/routes.rb:27

-
- toggle_ativo_admin_usuario_path - - PATCH - - /admin/usuarios/:id/toggle_ativo(.:format) - -

admin/usuarios#toggle_ativo

-
-

/app/config/routes.rb:50

-
- admin_usuarios_path - - GET - - /admin/usuarios(.:format) - -

admin/usuarios#index

-
-

/app/config/routes.rb:49

-
- - POST - - /admin/usuarios(.:format) - -

admin/usuarios#create

-
-

/app/config/routes.rb:49

-
- new_admin_usuario_path - - GET - - /admin/usuarios/new(.:format) - -

admin/usuarios#new

-
-

/app/config/routes.rb:49

-
- edit_admin_usuario_path - - GET - - /admin/usuarios/:id/edit(.:format) - -

admin/usuarios#edit

-
-

/app/config/routes.rb:49

-
- admin_usuario_path - - PATCH - - /admin/usuarios/:id(.:format) - -

admin/usuarios#update

-
-

/app/config/routes.rb:49

-
- - PUT - - /admin/usuarios/:id(.:format) - -

admin/usuarios#update

-
-

/app/config/routes.rb:49

-
- - DELETE - - /admin/usuarios/:id(.:format) - -

admin/usuarios#destroy

-
-

/app/config/routes.rb:49

-
- toggle_tema_admin_configuracoes_path - - POST - - /admin/configuracoes/toggle_tema(.:format) - -

admin/configuracoes#toggle_tema

-
-

/app/config/routes.rb:53

-
- admin_configuracoes_path - - GET - - /admin/configuracoes(.:format) - -

admin/configuracoes#index

-
-

/app/config/routes.rb:52

-
- edit_admin_configuracao_path - - GET - - /admin/configuracoes/:id/edit(.:format) - -

admin/configuracoes#edit

-
-

/app/config/routes.rb:52

-
- admin_configuracao_path - - PATCH - - /admin/configuracoes/:id(.:format) - -

admin/configuracoes#update

-
-

/app/config/routes.rb:52

-
- - PUT - - /admin/configuracoes/:id(.:format) - -

admin/configuracoes#update

-
-

/app/config/routes.rb:52

-
- admin_auditoria_logs_path - - GET - - /admin/auditoria_logs(.:format) - -

admin/auditoria_logs#index

-
-

/app/config/routes.rb:55

-
- api_v1_dashboard_metricas_path - - GET - - /api/v1/dashboard/metricas(.:format) - -

api/v1/dashboard#metricas

-
-

/app/config/routes.rb:61

-
- health_path - - GET - - /health(.:format) - -

Inline handler (Proc/Lambda)

-
-

/app/config/routes.rb:66

-
- turbo_recede_historical_location_path - - GET - - /recede_historical_location(.:format) - -

turbo/native/navigation#recede

-
-

turbo-rails (2.0.23) config/routes.rb:2

-
- turbo_resume_historical_location_path - - GET - - /resume_historical_location(.:format) - -

turbo/native/navigation#resume

-
-

turbo-rails (2.0.23) config/routes.rb:3

-
- turbo_refresh_historical_location_path - - GET - - /refresh_historical_location(.:format) - -

turbo/native/navigation#refresh

-
-

turbo-rails (2.0.23) config/routes.rb:4

-
- rails_postmark_inbound_emails_path - - POST - - /rails/action_mailbox/postmark/inbound_emails(.:format) - -

action_mailbox/ingresses/postmark/inbound_emails#create

-
-

actionmailbox (7.1.6) config/routes.rb:5

-
- rails_relay_inbound_emails_path - - POST - - /rails/action_mailbox/relay/inbound_emails(.:format) - -

action_mailbox/ingresses/relay/inbound_emails#create

-
-

actionmailbox (7.1.6) config/routes.rb:6

-
- rails_sendgrid_inbound_emails_path - - POST - - /rails/action_mailbox/sendgrid/inbound_emails(.:format) - -

action_mailbox/ingresses/sendgrid/inbound_emails#create

-
-

actionmailbox (7.1.6) config/routes.rb:7

-
- rails_mandrill_inbound_health_check_path - - GET - - /rails/action_mailbox/mandrill/inbound_emails(.:format) - -

action_mailbox/ingresses/mandrill/inbound_emails#health_check

-
-

actionmailbox (7.1.6) config/routes.rb:10

-
- rails_mandrill_inbound_emails_path - - POST - - /rails/action_mailbox/mandrill/inbound_emails(.:format) - -

action_mailbox/ingresses/mandrill/inbound_emails#create

-
-

actionmailbox (7.1.6) config/routes.rb:11

-
- rails_mailgun_inbound_emails_path - - POST - - /rails/action_mailbox/mailgun/inbound_emails/mime(.:format) - -

action_mailbox/ingresses/mailgun/inbound_emails#create

-
-

actionmailbox (7.1.6) config/routes.rb:14

-
- rails_conductor_inbound_emails_path - - GET - - /rails/conductor/action_mailbox/inbound_emails(.:format) - -

rails/conductor/action_mailbox/inbound_emails#index

-
-

actionmailbox (7.1.6) config/routes.rb:19

-
- - POST - - /rails/conductor/action_mailbox/inbound_emails(.:format) - -

rails/conductor/action_mailbox/inbound_emails#create

-
-

actionmailbox (7.1.6) config/routes.rb:19

-
- new_rails_conductor_inbound_email_path - - GET - - /rails/conductor/action_mailbox/inbound_emails/new(.:format) - -

rails/conductor/action_mailbox/inbound_emails#new

-
-

actionmailbox (7.1.6) config/routes.rb:19

-
- rails_conductor_inbound_email_path - - GET - - /rails/conductor/action_mailbox/inbound_emails/:id(.:format) - -

rails/conductor/action_mailbox/inbound_emails#show

-
-

actionmailbox (7.1.6) config/routes.rb:19

-
- new_rails_conductor_inbound_email_source_path - - GET - - /rails/conductor/action_mailbox/inbound_emails/sources/new(.:format) - -

rails/conductor/action_mailbox/inbound_emails/sources#new

-
-

actionmailbox (7.1.6) config/routes.rb:20

-
- rails_conductor_inbound_email_sources_path - - POST - - /rails/conductor/action_mailbox/inbound_emails/sources(.:format) - -

rails/conductor/action_mailbox/inbound_emails/sources#create

-
-

actionmailbox (7.1.6) config/routes.rb:21

-
- rails_conductor_inbound_email_reroute_path - - POST - - /rails/conductor/action_mailbox/:inbound_email_id/reroute(.:format) - -

rails/conductor/action_mailbox/reroutes#create

-
-

actionmailbox (7.1.6) config/routes.rb:23

-
- rails_conductor_inbound_email_incinerate_path - - POST - - /rails/conductor/action_mailbox/:inbound_email_id/incinerate(.:format) - -

rails/conductor/action_mailbox/incinerates#create

-
-

actionmailbox (7.1.6) config/routes.rb:24

-
- rails_service_blob_path - - GET - - /rails/active_storage/blobs/redirect/:signed_id/*filename(.:format) - -

active_storage/blobs/redirect#show

-
-

activestorage (7.1.6) config/routes.rb:5

-
- rails_service_blob_proxy_path - - GET - - /rails/active_storage/blobs/proxy/:signed_id/*filename(.:format) - -

active_storage/blobs/proxy#show

-
-

activestorage (7.1.6) config/routes.rb:6

-
- - GET - - /rails/active_storage/blobs/:signed_id/*filename(.:format) - -

active_storage/blobs/redirect#show

-
-

activestorage (7.1.6) config/routes.rb:7

-
- rails_blob_representation_path - - GET - - /rails/active_storage/representations/redirect/:signed_blob_id/:variation_key/*filename(.:format) - -

active_storage/representations/redirect#show

-
-

activestorage (7.1.6) config/routes.rb:9

-
- rails_blob_representation_proxy_path - - GET - - /rails/active_storage/representations/proxy/:signed_blob_id/:variation_key/*filename(.:format) - -

active_storage/representations/proxy#show

-
-

activestorage (7.1.6) config/routes.rb:10

-
- - GET - - /rails/active_storage/representations/:signed_blob_id/:variation_key/*filename(.:format) - -

active_storage/representations/redirect#show

-
-

activestorage (7.1.6) config/routes.rb:11

-
- rails_disk_service_path - - GET - - /rails/active_storage/disk/:encoded_key/*filename(.:format) - -

active_storage/disk#show

-
-

activestorage (7.1.6) config/routes.rb:13

-
- update_rails_disk_service_path - - PUT - - /rails/active_storage/disk/:encoded_token(.:format) - -

active_storage/disk#update

-
-

activestorage (7.1.6) config/routes.rb:14

-
- rails_direct_uploads_path - - POST - - /rails/active_storage/direct_uploads(.:format) - -

active_storage/direct_uploads#create

-
-

activestorage (7.1.6) config/routes.rb:15

-
- - - - -

Request

-

Parameters:

None
- -
- - -
- -
- - -
- -

Response

-

Headers:

None
- -
- - - - diff --git a/Erros/Action Controller_ Exception caughtquando aperta o botçao de gerar holerite.html b/Erros/Action Controller_ Exception caughtquando aperta o botçao de gerar holerite.html deleted file mode 100644 index 58bb3d2..0000000 --- a/Erros/Action Controller_ Exception caughtquando aperta o botçao de gerar holerite.html +++ /dev/null @@ -1,4148 +0,0 @@ - - - - - - - Action Controller: Exception caught - - - - - - -
-

- Pundit::NotDefinedError - in ConsolidacoesController#gerar_pdf_holerite -

-
- -
-
-
unable to find policy `NilClassPolicy` for `nil`
-
- - - - - - - - - - - - -
-
- Extracted source (around line #130): -
-
- - - - - -
-
-128
-129
-130
-131
-132
-133
-              
-
-
-
# GET /consolidacoes/:id/gerar_pdf_holerite?motorista=X -
def gerar_pdf_holerite -
authorize @consolidacao, :show? -
motorista = params[:motorista] -
user_mot = User.motorista.find_by('LOWER(nome) = ?', motorista.to_s.downcase) -
user_mot&.regenerar_login_token! if user_mot&.login_token.blank? -
-
-
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Rails.root: /app

- -
- Application Trace | - Framework Trace | - Full Trace - - - - - - -
- - - - -

Request

-

Parameters:

{"motorista"=>"Bruno Corgozinho", "id"=>"3"}
-
- -
- - -
- -
- - -
- -

Response

-

Headers:

None
- -
- - - - diff --git a/Erros/Action Controller_ Exception caughtquando termina de criar o usuario motorista.html b/Erros/Action Controller_ Exception caughtquando termina de criar o usuario motorista.html deleted file mode 100644 index 92d39ef..0000000 --- a/Erros/Action Controller_ Exception caughtquando termina de criar o usuario motorista.html +++ /dev/null @@ -1,276 +0,0 @@ - - - - - - - - Reem Logística - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
G
- Reem Logística -
-
-
-
- - - - - - -
-
- -
-

- Novo Usuário -

-

- Preencha os dados para criar um novo acesso -

-
- - - - -
- - -
-
- - -
- -
- - -
- -
-
- -

Usuários inativos não conseguem fazer login

-
- -
-
- -
-
-

Credenciais de acesso

-
-
- - -
-
- - -
-
- - -
-
-
-
- - - -
- Cancelar - -
-
- - - - -
- - - - - - diff --git a/Erros/Imagem colada (2).png b/Erros/Imagem colada (2).png deleted file mode 100644 index f584995..0000000 Binary files a/Erros/Imagem colada (2).png and /dev/null differ diff --git a/Erros/Imagem colada.png b/Erros/Imagem colada.png deleted file mode 100644 index 5c2ba27..0000000 Binary files a/Erros/Imagem colada.png and /dev/null differ diff --git a/Erros/holerite_carlos-matheus-pimentel_10-1.pdf b/Erros/holerite_carlos-matheus-pimentel_10-1.pdf deleted file mode 100644 index 2e16bc1..0000000 --- a/Erros/holerite_carlos-matheus-pimentel_10-1.pdf +++ /dev/null @@ -1,2280 +0,0 @@ -%PDF-1.3 -% -1 0 obj -<< /Creator -/Producer ->> -endobj -2 0 obj -<< /Pages 3 0 R -/Type /Catalog ->> -endobj -3 0 obj -<< /Count 1 -/Kids [5 0 R] -/Type /Pages ->> -endobj -4 0 obj -<< /Length 13502 ->> -stream -q -/DeviceRGB cs -0.03922 0.03922 0.03922 scn -0.0 771.89 595.28 70.0 re -f -0.97647 0.45098 0.08627 scn -0.0 771.89 8.0 70.0 re -f -1.0 1.0 1.0 scn - -BT -50.0 806.71 Td -/F2.0 20 Tf -[<5245454d205452414e53504f52> 44.92188 <5445>] TJ -ET - -0.97647 0.45098 0.08627 scn - -BT -50.0 790.3 Td -/F1.0 10 Tf -[<53697374656d6120646520436f6e7472> 21.97266 <6f6c6520646520437573746f73204c> 17.57812 <6f6792737469636f73>] TJ -ET - -0.0 0.0 0.0 scn -0.97647 0.45098 0.08627 scn - -BT -40.0 723.023 Td -/F2.0 13 Tf -[<484f4c45524954452044452050> 91.79688 <4147414d454e544f20d120454e545245474153>] TJ -ET - -/DeviceRGB CS -0.97647 0.45098 0.08627 SCN -40.0 717.303 m -555.28 717.303 l -S -0.0 0.0 0.0 scn -0.95294 0.95686 0.96471 scn -40.0 689.313 120.0 19.99 re -f -0.0 0.0 0.0 scn -0.95294 0.95686 0.96471 scn -40.0 669.323 120.0 19.99 re -f -0.0 0.0 0.0 scn -0.95294 0.95686 0.96471 scn -40.0 649.333 120.0 19.99 re -f -0.0 0.0 0.0 scn -0.95294 0.95686 0.96471 scn -40.0 629.343 120.0 19.99 re -f -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -40.0 709.303 m -160.0 709.303 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 689.313 m -160.0 689.313 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 709.803 m -40.0 688.813 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -160.0 709.803 m -160.0 688.813 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -48.0 695.073 Td -/F2.0 10 Tf -<4d6f746f7269737461> Tj -ET - -1 w -0.0 0.0 0.0 SCN -160.0 709.303 m -555.28 709.303 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -160.0 689.313 m -555.28 689.313 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -160.0 709.803 m -160.0 688.813 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -555.28 709.803 m -555.28 688.813 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -168.0 695.073 Td -/F1.0 10 Tf -[<4361726c6f73204d6174686575732050> 21.97266 <696d656e74656c>] TJ -ET - -1 w -0.0 0.0 0.0 SCN -40.0 689.313 m -160.0 689.313 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 669.323 m -160.0 669.323 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 689.813 m -40.0 668.823 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -160.0 689.813 m -160.0 668.823 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -48.0 675.083 Td -/F2.0 10 Tf -<436f6e736f6c6964618d8b6f> Tj -ET - -1 w -0.0 0.0 0.0 SCN -160.0 689.313 m -555.28 689.313 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -160.0 669.323 m -555.28 669.323 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -160.0 689.813 m -160.0 668.823 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -555.28 689.813 m -555.28 668.823 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -168.0 675.083 Td -/F1.0 10 Tf -[<5562732053756c204c> 17.57812 <65737465204d6169203230323620204361726c6f73>] TJ -ET - -1 w -0.0 0.0 0.0 SCN -40.0 669.323 m -160.0 669.323 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 649.333 m -160.0 649.333 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 669.823 m -40.0 648.833 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -160.0 669.823 m -160.0 648.833 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -48.0 655.093 Td -/F2.0 10 Tf -<506572926f646f> Tj -ET - -1 w -0.0 0.0 0.0 SCN -160.0 669.323 m -555.28 669.323 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -160.0 649.333 m -555.28 649.333 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -160.0 669.823 m -160.0 648.833 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -555.28 669.823 m -555.28 648.833 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -168.0 655.093 Td -/F1.0 10 Tf -<30312f30352f3230323620612032392f30352f32303236> Tj -ET - -1 w -0.0 0.0 0.0 SCN -40.0 649.333 m -160.0 649.333 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 629.343 m -160.0 629.343 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 649.833 m -40.0 628.843 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -160.0 649.833 m -160.0 628.843 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -48.0 635.103 Td -/F2.0 10 Tf -<456d6973738b6f> Tj -ET - -1 w -0.0 0.0 0.0 SCN -160.0 649.333 m -555.28 649.333 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -160.0 629.343 m -555.28 629.343 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -160.0 649.833 m -160.0 628.843 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -555.28 649.833 m -555.28 628.843 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -168.0 635.103 Td -/F1.0 10 Tf -<31382f30362f32303236> Tj -ET - -0.13333 0.77255 0.36863 scn -45.0 619.343 m -285.0 619.343 l -287.76142 619.343 290.0 617.10442 290.0 614.343 c -290.0 598.343 l -290.0 595.58158 287.76142 593.343 285.0 593.343 c -45.0 593.343 l -42.23858 593.343 40.0 595.58158 40.0 598.343 c -40.0 614.343 l -40.0 617.10442 42.23858 619.343 45.0 619.343 c -h -f -1.0 1.0 1.0 scn - -BT -52.0 603.753 Td -/F2.1 10 Tf -<2120> Tj -/F2.0 10 Tf -[<50> 91.79688 <41474f20656d2031372f30362f3230323620e120506978>] TJ -ET - -0.0 0.0 0.0 scn -0.97647 0.45098 0.08627 scn - -BT -40.0 563.476 Td -/F2.0 13 Tf -[<50524f> 26.85547 <56454e544f53204520444553434f4e544f53>] TJ -ET - -0.97647 0.45098 0.08627 SCN -40.0 557.756 m -555.28 557.756 l -S -0.0 0.0 0.0 scn -0.03922 0.03922 0.03922 scn -40.0 529.766 150.81161 19.99 re -f -0.0 0.0 0.0 scn -0.03922 0.03922 0.03922 scn -190.81161 529.766 100.23675 19.99 re -f -0.0 0.0 0.0 scn -0.03922 0.03922 0.03922 scn -291.04837 529.766 121.60214 19.99 re -f -0.0 0.0 0.0 scn -0.03922 0.03922 0.03922 scn -412.65051 529.766 142.62949 19.99 re -f -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -40.0 549.756 m -190.81161 549.756 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 529.766 m -190.81161 529.766 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 550.256 m -40.0 529.266 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -190.81161 550.256 m -190.81161 529.266 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -1.0 1.0 1.0 scn - -BT -48.0 535.526 Td -/F2.0 10 Tf -<4465736372698d8b6f> Tj -ET - -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -190.81161 549.756 m -291.04837 549.756 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -190.81161 529.766 m -291.04837 529.766 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -190.81161 550.256 m -190.81161 529.266 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -291.04837 550.256 m -291.04837 529.266 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -1.0 1.0 1.0 scn - -BT -263.61837 535.526 Td -/F2.0 10 Tf -<517464> Tj -ET - -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -291.04837 549.756 m -412.65051 549.756 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -291.04837 529.766 m -412.65051 529.766 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -291.04837 550.256 m -291.04837 529.266 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -412.65051 550.256 m -412.65051 529.266 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -1.0 1.0 1.0 scn - -BT -378.43051 535.526 Td -/F2.0 10 Tf -<556e69742e> Tj -ET - -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -412.65051 549.756 m -555.28 549.756 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -412.65051 529.766 m -555.28 529.766 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -412.65051 550.256 m -412.65051 529.266 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -555.28 550.256 m -555.28 529.266 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -1.0 1.0 1.0 scn - -BT -519.13688 535.526 Td -/F2.0 10 Tf -[<56> 54.6875 <616c6f72>] TJ -ET - -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -40.0 529.766 m -190.81161 529.766 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 509.776 m -190.81161 509.776 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 530.266 m -40.0 509.276 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -190.81161 530.266 m -190.81161 509.276 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -48.0 515.536 Td -/F1.0 10 Tf -[<456e7472> 21.97266 <656761204e6f72> 17.57812 <6d616c>] TJ -ET - -1 w -0.0 0.0 0.0 SCN -190.81161 529.766 m -291.04837 529.766 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -190.81161 509.776 m -291.04837 509.776 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -190.81161 530.266 m -190.81161 509.276 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -291.04837 530.266 m -291.04837 509.276 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -264.96837 515.536 Td -/F1.0 10 Tf -<313036> Tj -ET - -1 w -0.0 0.0 0.0 SCN -291.04837 529.766 m -412.65051 529.766 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -291.04837 509.776 m -412.65051 509.776 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -291.04837 530.266 m -291.04837 509.276 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -412.65051 530.266 m -412.65051 509.276 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -360.57051 515.536 Td -/F1.0 10 Tf -<52242031352c3030> Tj -ET - -1 w -0.0 0.0 0.0 SCN -412.65051 529.766 m -555.28 529.766 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -412.65051 509.776 m -555.28 509.776 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -412.65051 530.266 m -412.65051 509.276 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -555.28 530.266 m -555.28 509.276 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -478.94 515.536 Td -/F1.0 10 Tf -<2b20522420313539302c3030> Tj -ET - -1 w -0.0 0.0 0.0 SCN -40.0 509.776 m -190.81161 509.776 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 489.786 m -190.81161 489.786 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 510.276 m -40.0 489.286 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -190.81161 510.276 m -190.81161 489.286 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -48.0 495.546 Td -/F1.0 10 Tf -[<52> 44.92188 <65746972616461>] TJ -ET - -1 w -0.0 0.0 0.0 SCN -190.81161 509.776 m -291.04837 509.776 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -190.81161 489.786 m -291.04837 489.786 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -190.81161 510.276 m -190.81161 489.286 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -291.04837 510.276 m -291.04837 489.286 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -271.32837 495.546 Td -/F1.0 10 Tf -<3131> Tj -ET - -1 w -0.0 0.0 0.0 SCN -291.04837 509.776 m -412.65051 509.776 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -291.04837 489.786 m -412.65051 489.786 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -291.04837 510.276 m -291.04837 489.286 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -412.65051 510.276 m -412.65051 489.286 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -360.57051 495.546 Td -/F1.0 10 Tf -<52242032302c3030> Tj -ET - -1 w -0.0 0.0 0.0 SCN -412.65051 509.776 m -555.28 509.776 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -412.65051 489.786 m -555.28 489.786 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -412.65051 510.276 m -412.65051 489.286 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -555.28 510.276 m -555.28 489.286 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -485.3 495.546 Td -/F1.0 10 Tf -<2b205224203232302c3030> Tj -ET - -1 w -0.0 0.0 0.0 SCN -40.0 489.786 m -190.81161 489.786 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 469.796 m -190.81161 469.796 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 490.286 m -40.0 469.296 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -190.81161 490.286 m -190.81161 469.296 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -48.0 475.556 Td -/F1.0 10 Tf -<42996e7573> Tj -ET - -1 w -0.0 0.0 0.0 SCN -190.81161 489.786 m -291.04837 489.786 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -190.81161 469.796 m -291.04837 469.796 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -190.81161 490.286 m -190.81161 469.296 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -291.04837 490.286 m -291.04837 469.296 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -277.68837 475.556 Td -/F1.0 10 Tf -<34> Tj -ET - -1 w -0.0 0.0 0.0 SCN -291.04837 489.786 m -412.65051 489.786 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -291.04837 469.796 m -412.65051 469.796 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -291.04837 490.286 m -291.04837 469.296 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -412.65051 490.286 m -412.65051 469.296 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -366.93051 475.556 Td -/F1.0 10 Tf -<522420352c3030> Tj -ET - -1 w -0.0 0.0 0.0 SCN -412.65051 489.786 m -555.28 489.786 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -412.65051 469.796 m -555.28 469.796 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -412.65051 490.286 m -412.65051 469.296 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -555.28 490.286 m -555.28 469.296 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -491.66 475.556 Td -/F1.0 10 Tf -<2b2052242032302c3030> Tj -ET - -1 w -0.0 0.0 0.0 SCN -40.0 469.796 m -190.81161 469.796 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 449.806 m -190.81161 449.806 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 470.296 m -40.0 449.306 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -190.81161 470.296 m -190.81161 449.306 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -48.0 455.566 Td -/F1.0 10 Tf -<446573636f6e746f> Tj -ET - -1 w -0.0 0.0 0.0 SCN -190.81161 469.796 m -291.04837 469.796 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -190.81161 449.806 m -291.04837 449.806 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -190.81161 470.296 m -190.81161 449.306 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -291.04837 470.296 m -291.04837 449.306 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -271.32837 455.566 Td -/F1.0 10 Tf -<3131> Tj -ET - -1 w -0.0 0.0 0.0 SCN -291.04837 469.796 m -412.65051 469.796 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -291.04837 449.806 m -412.65051 449.806 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -291.04837 470.296 m -291.04837 449.306 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -412.65051 470.296 m -412.65051 449.306 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -360.57051 455.566 Td -/F1.0 10 Tf -<52242031352c3030> Tj -ET - -1 w -0.0 0.0 0.0 SCN -412.65051 469.796 m -555.28 469.796 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -412.65051 449.806 m -555.28 449.806 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -412.65051 470.296 m -412.65051 449.306 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -555.28 470.296 m -555.28 449.306 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -490.07 455.566 Td -/F1.0 10 Tf -<2d205224203136352c3030> Tj -ET - -0.97647 0.45098 0.08627 scn -48.0 437.806 m -547.28 437.806 l -551.69828 437.806 555.28 434.22428 555.28 429.806 c -555.28 395.806 l -555.28 391.38772 551.69828 387.806 547.28 387.806 c -48.0 387.806 l -43.58172 387.806 40.0 391.38772 40.0 395.806 c -40.0 429.806 l -40.0 434.22428 43.58172 437.806 48.0 437.806 c -h -f -0.0 0.0 0.0 scn - -BT -56.0 420.216 Td -/F2.0 10 Tf -[<56> 67.87109 <414c> 35.64453 <4f52204cea515549444f20412052454345424552>] TJ -ET - - -BT -56.0 397.108 Td -/F2.0 22 Tf -<522420313636352c3030> Tj -ET - -0.41961 0.44706 0.50196 scn - -BT -40.0 374.975 Td -/F1.0 9 Tf -[<54> 169.92188 <6f74616c20646520656e7472> 21.97266 <656761733a20313332>] TJ -ET - - -BT -40.0 364.184 Td -/F1.0 9 Tf -[<56> 77.63672 <659263756c6f73206174656e6469646f733a20474144455f3030362c20474144455f3031312c20474144455f3035312c20474144455f303434>] TJ -ET - -0.0 0.0 0.0 scn -0.0 0.0 0.0 SCN -0.7 w -40.0 320.224 m -277.64 320.224 l -S -317.64 320.224 m -555.28 320.224 l -S -0.0 0.0 0.0 scn - -BT -95.532 305.393 Td -/F2.0 9 Tf -<4361726c6f73204d6174686575732050696d656e74656c> Tj -ET - - -BT -393.20988 305.393 Td -/F2.0 9 Tf -[<5265656d2054> 109.86328 <72616e73706f727465>] TJ -ET - -0.41961 0.44706 0.50196 scn - -BT -111.376 292.152 Td -/F1.0 8 Tf -<417373696e617475726120646f204d6f746f7269737461> Tj -ET - - -BT -379.55831 292.152 Td -/F1.0 8 Tf -[<417373696e617475726120646f2041> 17.57812 <646d696e6973747261646f72>] TJ -ET - -0.0 0.0 0.0 scn -/Stamp1 Do -Q - -endstream -endobj -5 0 obj -<< /ArtBox [0 0 595.28 841.89] -/BleedBox [0 0 595.28 841.89] -/Contents 4 0 R -/CropBox [0 0 595.28 841.89] -/MediaBox [0 0 595.28 841.89] -/Parent 3 0 R -/Resources << /Font << /F1.0 7 0 R -/F2.0 6 0 R -/F2.1 8 0 R ->> -/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] -/XObject << /Stamp1 9 0 R ->> ->> -/TrimBox [0 0 595.28 841.89] -/Type /Page ->> -endobj -6 0 obj -<< /BaseFont /80f3e1+DejaVuSans-Bold -/FirstChar 32 -/FontDescriptor 11 0 R -/LastChar 234 -/Subtype /TrueType -/ToUnicode 12 0 R -/Type /Font -/Widths 13 0 R ->> -endobj -7 0 obj -<< /BaseFont /916dd0+DejaVuSans -/FirstChar 32 -/FontDescriptor 15 0 R -/LastChar 225 -/Subtype /TrueType -/ToUnicode 16 0 R -/Type /Font -/Widths 17 0 R ->> -endobj -8 0 obj -<< /BaseFont /1a10e1+DejaVuSans-Bold -/FirstChar 32 -/FontDescriptor 19 0 R -/LastChar 33 -/Subtype /TrueType -/ToUnicode 20 0 R -/Type /Font -/Widths 21 0 R ->> -endobj -9 0 obj -<< /BBox [0 0 595.28 841.89] -/Length 369 -/Resources << /Font << /F1.0 7 0 R ->> ->> -/Subtype /Form -/Type /XObject ->> -stream -q -/DeviceRGB cs -0.0 0.0 0.0 scn -/DeviceRGB CS -0.0 0.0 0.0 SCN -0.7 w -0 J -0 j -[] 0 d -/DeviceRGB cs -0.41961 0.44706 0.50196 scn - -BT -155.96989 29.928 Td -/F1.0 8 Tf -[<47657261646f20656d2031382f30362f323032362032303a323320e12052> 44.92188 <65656d2054> 146.97266 <72616e73706f72746520d120646f63756d656e746f20696e746572> 17.57812 <6e6f>] TJ -ET - -/DeviceRGB cs -0.0 0.0 0.0 scn -Q - -endstream -endobj -10 0 obj -<< /Length 27924 -/Length1 27924 ->> -stream -`OS/2k!hVcmap(ccvt >1 Tfpgm[kgaspm glyf!™y head&LK6hhea S$$hmtx&kloca^dvmaxpEH name./,,G}G - -@ -2 -d۠d%%%   %ё%Д #&̑ɻ]ɻɀ@%]@%dĐ::2  }& -@ ]%]@..@   K%%%2 -~}|{zywvwvututsr}qpo,o,nmlkjihc h2gf2ed -ed -d@cb -c b -a`a``_ -^]\\[Z[ZZYXWV@VUTSRQRQQPOPONONMLKLKJKJIJIHGFGFEDCDCBA%BAA%@?@?>?>=< =< ;d:987656%54554 - 4432 33@2 10100/ .-,:-,%,:+d*d)(''& %$#@+$#" "!!@  -%@ K}K%%dd   2 -    -  -@  - -@d  d++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++f3f=ffTbfTfmf3bq%fHZfm99Xm=fuff9{{X3fLfLJ#DDf?;Pw -/X#/553X -sf+j-j!f#^`3B3\fy```{j\{`bXP1L`%!JJ7{'}3Xy9bs&&&>l.\L~6R0z(V t - -b - - - ^ 6 r  x : -(Rff&&/10!%!!fsr)#*1s@? -%$ + ,#,, (/($ +/ 2<<991/99999990#.''.546?3.'>54&}osy!dede GUNWWP-.);?7* "*/(BE5;CBBDCm9@ 10!#hdu91/0!!h}B/99103#mb/ #@  10&#"326! ! i||jj|{j@'&@mstm -(@  1/20!%!!!T[nT -HH5@)% K TX8Y9991/2990KSX9Y"@&**"""555BJFF]]!!>54&#">3 N!IFuZzz )~B~DiMLH+-zӱ=@"  " -190!!>3 !"&'32654&#"v,Y00{zaSl 12/FFuv+-# $7@ "% %$%190"32654&.#">32! !2eeeefeev_PB[uEgჃ-+11ir E@%91/0KSXY"]@ &5F]!!!e'1 -' -@@ - -  - -% - -   Բ]91/<90KSXY"@ -/ -V -f - t - - - - - - - -  %* IFGH XYVWhifg` t{zu{t      /]]!!!!!F_}))}+%R P@%    !299991/90@ ""/"P"]2654&+2654&+)! [^^[tutuH|B7fPNMQsbcaay$ռmf\;@    - +21990/_]%# !2.#"3267\j}Lu}jksskR78ef87IDDI9.@  --. 99991/0P]32654&#! )=TMwiffixjq#ateeta 0@ -  21/0 P p ]!!!!!!rgfK@%    1 3/-+19990_]%# !2.#"3267#!ʥLy}|@ -  221/<<0@P ` p -]!!!!!!89+y=,KTKT[X@8Y1/0@P]!!+@ 1/0!!!N9 @3666 - 6 - - % -   -1 -1 91/<290KSXY"]@f    -+?HOLL -WYY -hoo -  -*%:5O@GVY Phgej ` ]]! !!#!TV+D% |@66%11 -991/<2990KSXY"]@4 - 8GJVYP gh` >3IO@UZfi ]]!!!!mR+ff 2@  -7-+10@ /?]"3254 ! f°±hhgddjk -1@   - 299991/0]! !#!32654&#1pzzp_mddlffb@  - - -7-+999190@,  '/V S f ` w w p  Y Y YXj i x ]]# ! !"3254fgk-¾lkh\@2% -   -   29991/<9990KSX9Y"]@66EEVVPee`]2654&+!! !.#yiiyL'O}@f7q^?ZgfX֔-XspR-'@*% - %( - "(999919990@Tp)9999 JJJ X -]\^^ Z!joooh o n!t t t || |!  !  !(]].#"!"$'32654&/.54$!2{hYuӎ⏏ |~[ {78LP3 pq[QeiH"ӆsUst/ LJDMm)f]ˢŸUO..X5{7@ -B ;210_].#"3267# !25IOT@TWV/X=202177\8@ @B ;221/0O`]!!5#"322654&#"hJu -tsyysryyXc\II]ɨX -{C@!    D ;9190/?]!3267# ! 4&#" - q}K"=w`h3f~~CD015:“f}un5@  - G 21/<9990`]!54&'.#"!!>32 H.pfQnVon#'b])@ <21/0@ P ` p ]!!!!ff` 1/0@ P`p]!!f{%i@)   #  H H &KTX@8Y<991/<<<29990@'0'P'p'''']>32!>54&#"!4&#"!!>32DpFNfo@RgphBgthmVH wkHk`_`p{5@  - G 21/<9990`]!54&'.#"!!>32 H.pfQnVon#'`b]X'{ -@  BLB;107?G]"32654& ! w}}wu||u!EG{88V^{;@B @ 2210O`]%!!>32#"&"32654&fJu -us{{ssyy -b]]7{7@    - KTX8Y21/990.#"!!>32/]/fE}*(/`nejb{'@@  6  -6% - %( - SRP"M(9999190KSX99Y" ]@^ - #  ,. . -. . . ) 9; ; -; : : K J -J J H w w  - %  - 7 ?)_) ]].#"!"&'32654&/.54632s_fcKa?o}ktijIm?c=0035+. ###44:90/ m@ -   TKTKT[KT[KT[X@8Y<<991/<2990@??PPP`` ]]!!;!"&5#33q>\Ա%N7>`;@  G 291/29990`]!3265!!5#"&hG.pfQmp[.w#&)b] -` y@F -   - %  -  K -TKT[KT[KT[X @8Y91/<290KSXY"@  / 3< CL R\ bl sz         2   - - $++$ -4;;4 -0 DKKD -o  - - - - - -:]] !! ! !l{{l=#LbX9&6 ?0+1Xo5{& 7f&89w@p]1n/10!!n$910!!h}k&5du@@]1mN810K TX@878Y@ //]!#3\9@  - @  -999919999990K TKT[X@878Y@T              ( ]]'&'&#"#4632326=3#"&7/$&g]$I)=%$(g]$CT%>;+@9o5@ -   991/0K -TX@878Y!#"&/32654&'Z:7{0f42S!:A+->j/_[ .(R<` 1/0@ P`p]!!f`mf710K TKT[X@878Y]!#f2    4  0 ' =  E  e  " : %: h;3 ; ;Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. -Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. -DejaVu changes are in public domain -DejaVu SansBoldDejaVu Sans BoldDejaVu Sans BoldVersion 2.3780f3e1+DejaVuSans-BoldDejaVu fonts teamhttp://dejavu.sourceforge.netFonts are (c) Bitstream (see below). DejaVu changes are in public domain. Glyphs imported from Arev fonts are (c) Tavmjung Bah (see below) - -Bitstream Vera Fonts Copyright ------------------------------- - -Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is -a trademark of Bitstream, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of the fonts accompanying this license ("Fonts") and associated -documentation files (the "Font Software"), to reproduce and distribute the -Font Software, including without limitation the rights to use, copy, merge, -publish, distribute, and/or sell copies of the Font Software, and to permit -persons to whom the Font Software is furnished to do so, subject to the -following conditions: - -The above copyright and trademark notices and this permission notice shall -be included in all copies of one or more of the Font Software typefaces. - -The Font Software may be modified, altered, or added to, and in particular -the designs of glyphs or characters in the Fonts may be modified and -additional glyphs or characters may be added to the Fonts, only if the fonts -are renamed to names not containing either the words "Bitstream" or the word -"Vera". - -This License becomes null and void to the extent applicable to Fonts or Font -Software that has been modified and is distributed under the "Bitstream -Vera" names. - -The Font Software may be sold as part of a larger software package but no -copy of one or more of the Font Software typefaces may be sold by itself. - -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, -TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME -FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING -ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF -THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE -FONT SOFTWARE. - -Except as contained in this notice, the names of Gnome, the Gnome -Foundation, and Bitstream Inc., shall not be used in advertising or -otherwise to promote the sale, use or other dealings in this Font Software -without prior written authorization from the Gnome Foundation or Bitstream -Inc., respectively. For further information, contact: fonts at gnome dot -org. - -Arev Fonts Copyright ------------------------------- - -Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the fonts accompanying this license ("Fonts") and -associated documentation files (the "Font Software"), to reproduce -and distribute the modifications to the Bitstream Vera Font Software, -including without limitation the rights to use, copy, merge, publish, -distribute, and/or sell copies of the Font Software, and to permit -persons to whom the Font Software is furnished to do so, subject to -the following conditions: - -The above copyright and trademark notices and this permission notice -shall be included in all copies of one or more of the Font Software -typefaces. - -The Font Software may be modified, altered, or added to, and in -particular the designs of glyphs or characters in the Fonts may be -modified and additional glyphs or characters may be added to the -Fonts, only if the fonts are renamed to names not containing either -the words "Tavmjong Bah" or the word "Arev". - -This License becomes null and void to the extent applicable to Fonts -or Font Software that has been modified and is distributed under the -"Tavmjong Bah Arev" names. - -The Font Software may be sold as part of a larger software package but -no copy of one or more of the Font Software typefaces may be sold by -itself. - -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL -TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. - -Except as contained in this notice, the name of Tavmjong Bah shall not -be used in advertising or otherwise to promote the sale, use or other -dealings in this Font Software without prior written authorization -from Tavmjong Bah. For further information, contact: tavmjong @ free -. fr.http://dejavu.sourceforge.net/wiki/index.php/LicenseDejaVu SansBoldCopyright (c) 2003 by Bitstream, Inc. All Rights Reserved. -Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. -DejaVu changes are in public domain -DejaVu SansBoldDejaVu Sans BoldDejaVu Sans BoldVersion 2.37DejaVu fonts teamhttp://dejavu.sourceforge.netFonts are (c) Bitstream (see below). DejaVu changes are in public domain. Glyphs imported from Arev fonts are (c) Tavmjung Bah (see below) - -Bitstream Vera Fonts Copyright ------------------------------- - -Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is -a trademark of Bitstream, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of the fonts accompanying this license ("Fonts") and associated -documentation files (the "Font Software"), to reproduce and distribute the -Font Software, including without limitation the rights to use, copy, merge, -publish, distribute, and/or sell copies of the Font Software, and to permit -persons to whom the Font Software is furnished to do so, subject to the -following conditions: - -The above copyright and trademark notices and this permission notice shall -be included in all copies of one or more of the Font Software typefaces. - -The Font Software may be modified, altered, or added to, and in particular -the designs of glyphs or characters in the Fonts may be modified and -additional glyphs or characters may be added to the Fonts, only if the fonts -are renamed to names not containing either the words "Bitstream" or the word -"Vera". - -This License becomes null and void to the extent applicable to Fonts or Font -Software that has been modified and is distributed under the "Bitstream -Vera" names. - -The Font Software may be sold as part of a larger software package but no -copy of one or more of the Font Software typefaces may be sold by itself. - -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, -TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME -FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING -ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF -THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE -FONT SOFTWARE. - -Except as contained in this notice, the names of Gnome, the Gnome -Foundation, and Bitstream Inc., shall not be used in advertising or -otherwise to promote the sale, use or other dealings in this Font Software -without prior written authorization from the Gnome Foundation or Bitstream -Inc., respectively. For further information, contact: fonts at gnome dot -org. - -Arev Fonts Copyright ------------------------------- - -Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the fonts accompanying this license ("Fonts") and -associated documentation files (the "Font Software"), to reproduce -and distribute the modifications to the Bitstream Vera Font Software, -including without limitation the rights to use, copy, merge, publish, -distribute, and/or sell copies of the Font Software, and to permit -persons to whom the Font Software is furnished to do so, subject to -the following conditions: - -The above copyright and trademark notices and this permission notice -shall be included in all copies of one or more of the Font Software -typefaces. - -The Font Software may be modified, altered, or added to, and in -particular the designs of glyphs or characters in the Fonts may be -modified and additional glyphs or characters may be added to the -Fonts, only if the fonts are renamed to names not containing either -the words "Tavmjong Bah" or the word "Arev". - -This License becomes null and void to the extent applicable to Fonts -or Font Software that has been modified and is distributed under the -"Tavmjong Bah Arev" names. - -The Font Software may be sold as part of a larger software package but -no copy of one or more of the Font Software typefaces may be sold by -itself. - -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL -TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. - -Except as contained in this notice, the name of Tavmjong Bah shall not -be used in advertising or otherwise to promote the sale, use or other -dealings in this Font Software without prior written authorization -from Tavmjong Bah. For further information, contact: tavmjong @ free -. fr.http://dejavu.sourceforge.net/wiki/index.php/LicenseDejaVu SansBoldZ:$%&'(*+,/0123456789DFGHKLOPQRSUVWX[motAcute -endstream -endobj -11 0 obj -<< /Ascent 759 -/CapHeight 759 -/Descent -240 -/Flags 4 -/FontBBox [-1069 -415 1975 1175] -/FontFile2 10 0 R -/FontName /80f3e1+DejaVuSans-Bold -/ItalicAngle 0 -/StemV 0 -/Type /FontDescriptor -/XHeight 0 ->> -endobj -12 0 obj -<< /Length 634 ->> -stream -/CIDInit /ProcSet findresource begin -12 dict begin -begincmap -/CIDSystemInfo 3 dict dup begin - /Registry (Adobe) def - /Ordering (UCS) def - /Supplement 0 def -end def -/CMapName /Adobe-Identity-UCS def -/CMapType 2 def -1 begincodespacerange -<00> -endcodespacerange -9 beginbfrange -<2E><32><002e> -<35><37><0035> -<41><45><0041> -<47><49><0047> -<4C><56><004c> -<63><65><0063> -<68><69><0068> -<6C><70><006c> -<72><75><0072> -endbfrange -11 beginbfchar -<20><0020> -<24><0024> -<2C><002c> -<61><0061> -<78><0078> -<8B><00e3> -<8D><00e7> -<92><00ed> -<2014> -<00b7> -<00cd> -endbfchar -endcmap -CMapName currentdict /CMap defineresource pop -end -end -endstream -endobj -13 0 obj -[348 0 0 0 695 0 0 0 0 0 0 0 379 0 379 365 695 695 695 0 0 695 695 695 0 0 0 0 0 0 0 0 0 773 762 733 830 683 0 820 836 372 0 0 637 995 836 850 732 850 770 720 682 812 773 0 0 0 0 0 0 0 0 0 0 674 0 592 715 678 0 0 711 342 0 0 342 1041 711 687 715 0 493 595 478 711 0 0 645 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 674 0 592 0 0 0 0 342 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 379 0 0 0 0 0 0 0 0 372] -endobj -14 0 obj -<< /Length 27148 -/Length1 27148 ->> -stream -`OS/2ihVcmap9\cvt i9 fpgmq4vjgaspj glyf$zk @ dhead(J6hhea!$$hmtx  loca tmaxplH name/,=>=<=<; <@; :987876765 65 43 21 21 0/ 0 / .- .- ,2+*%+d*)*%)('%(A'%&% &% $#"!! d d BBBdB-B}d      - -d@--d++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++5fqu-J3T99NR7s`s3VV9s3D{o{RoHT3fs -+b-{T#\q#H99`#fy```{w``b{{Rffw;{J/}oo5jo{-{T7fD)fs""*PJ|RZ>nb 4 v - - * v D ( d >,nz2ff@ /10!%!!fsr)m!(/@U" - -'&( -/)/))/B" -) *!#*- -) " & 0K TX8YK TKT[KT[X@8Y<<<1/299990KSX99Y"#.'5.546753.'>54&dijfod]SS\dtzq{---@A$*.U# jXV`OnZXh #@  - <<1/<<0!!#!5!-Ө-Ӫ--@ 1073#ӤR@d10!!dB-@B/9910KSXY"3#m #@  10"32'2#"  P3343ssyzZ -@@B  KTX@8Y1/20KSXY"]7!5%3!!JeJsHHժJ@'B  - -KTKT[KT[X8Y91/20KSX9Y"@2UVVzzvtvust]]%!!567>54&#"5>32Ls3aM_xzXE[w:mIwBC12\ps(p@. -    #)&  )KTKT[X 8Y99190@ daa d!]!"&'532654&+532654&#"5>32?^jTmǹSrsY %Đ%%12wps{$& Ѳ|d @   B   - K TK T[X 8Y<291/<290KSXY"@* *HYiw+&+6NO O Vfuz ]] !33##!55^%3`d^@#   - -KTKT[X8YKTX@8Y190!!>32!"&'532654&#",X,$^hZkʭQTժ 10$& $X@$  "% " !%190@]]"32654&.#">32# !2 LL;kPL;y$&W]yb #/C@% '-'0 $*$ !0991990"32654&%.54$32#"$54632654&#"HŚV г "Əُattt$X@# -%!"" %190@]]7532#"543 !"&2654&#"LK:lL>$& V\s[#@<21/073#3##h -@A - - -  - - -B    - 91/<90KSXY" ]@BXvp  VXP ghxv|rwx ]] !3#!#%{9҈_+ C@# -  - . !29991/90"]!2654&#!2654&#%!2#!D+ |݇f>orqp ˘s'6@  - 0210].# !267# !2'ffjzSb_^^_HHghG.@  - 2 99991/0`]3 !%! )5BhPa/w.,~ .@ -  21/0 ]!!!!!!9>ժFs9@ 43 1990%!5!# !2.# !26uu^opkSUmnHF_`%j%@ :1/0@ 0P]3!!_ժ @4 -  - - B -   -> - 91/<290KSXY"p]@V  - -&& & - -45 -i|{y - - #,'( 4<VY ej vy ]]! !###-}-+3 y@B6 -991/<2990KSXY" ]@068HGif FIWXeiy ]]!3!#j+:@  - ? 291/0@ ?_]32654&#%!2+#8/ϒT@5  -B    -? - 299991/<9990KSX9Y"@]@Bz%%%&'&&& 66FFhuuw]]#.+#! 32654&#A{>ٿJx~hb؍O'~@<    -B - %( - "-"(9999190KSX99Y")])/)O)].#"!"&'532654&/.54$32Hs_wzj{r{i76vce+ٶ0/EF~n|-&J@@@1/20K -TX@878Y@  @ p ]!!#!ժ+)@@   -8AKTX8Y1299990]332653! ˮ®u\*$h@'B91/290KSXY"P]@b*GGZ} *&&))% 833<<7HEEIIGYVfiizvvyyu)]]!3 3J+10!5{-{ -%@'   #   E&22991/9990@n0000 0!0"?'@@@@ @!@"PPPP P!P"P'p' !"'''000 0!@@@ @!PPP P!``` `!ppp p! !]]"326=7#5#"&5463!54&#"5>32߬o?`TeZ3f{bsٴ)Lfa..'' 8@  G F221/0`]4&#"326>32#"&'#3姒:{{:/Rdaadq{?@ - HE210@ ].#"3267#"!2NPƳPNM]-U5++++$$>:#qZ8@G E221/0`]3#5#"3232654&#":||ǧ^daDDaq{p@$   KE9190@)?p?????,// , -ooooo ]q]!3267# 32.#" ͷjbck)^Z44*,8 -CėqVZ{ (J@#  &#' & G E)221/990`***]4&#"326!"&'5326=#"3253aQQR9||9=,*[cb::bcd4@  -N  F21/<90`]#4&#"#3>32d||Bu\edy+@F<21/0@  @ P ` p ]3#3#`y"F1/0@ @P`p]3#{"Z@&   PPF#291/<<<290@0$P$p$$$$$$$ ]>32#4&#"#4&#"#3>32)Erurw?yz|v\`gb|d{6@  -N  F21/<90`]#4&#"#3>32d||Bu\`edqu{ J@  QE10@#?{{  - {  {]"32654&'2#"s98V{>@ GF2210@ `]%#3>32#"&4&#"326s:{{8 -daaJ{0@    -F21/90P].#"#3>32JI,:.˾`fco{'@<  S  -SB - %( - R"E(9999190KSX99Y"']@m -  . , -, , ; ; -; ; $( -( *//*(() )!$' -  -    '/)?)_))))))]]q.#"#"&'532654&/.54632NZb?ĥZlfae@f?((TT@I!*##55YQKP%$78@ -  F<<2991/<2990]!!;#"&5#53w{KsբN`>X{;@  -  NF921/290o]332653#5#"&||Cua{fcof'67quf&,8s+1dy/10!!d8yHF103#FsRf1@ D10K TKT[X@878Y3#fy{,@ F91/0@4D@P`p]3#\`{?f7@ u91290K TKT[X@878Y3#'#f2      4  0  . 6 L b "z : %: h; ;x ;Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. -Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. -DejaVu changes are in public domain -DejaVu SansBookDejaVu SansDejaVu SansVersion 2.37916dd0+DejaVuSansDejaVu fonts teamhttp://dejavu.sourceforge.netFonts are (c) Bitstream (see below). DejaVu changes are in public domain. Glyphs imported from Arev fonts are (c) Tavmjung Bah (see below) - -Bitstream Vera Fonts Copyright ------------------------------- - -Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is -a trademark of Bitstream, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of the fonts accompanying this license ("Fonts") and associated -documentation files (the "Font Software"), to reproduce and distribute the -Font Software, including without limitation the rights to use, copy, merge, -publish, distribute, and/or sell copies of the Font Software, and to permit -persons to whom the Font Software is furnished to do so, subject to the -following conditions: - -The above copyright and trademark notices and this permission notice shall -be included in all copies of one or more of the Font Software typefaces. - -The Font Software may be modified, altered, or added to, and in particular -the designs of glyphs or characters in the Fonts may be modified and -additional glyphs or characters may be added to the Fonts, only if the fonts -are renamed to names not containing either the words "Bitstream" or the word -"Vera". - -This License becomes null and void to the extent applicable to Fonts or Font -Software that has been modified and is distributed under the "Bitstream -Vera" names. - -The Font Software may be sold as part of a larger software package but no -copy of one or more of the Font Software typefaces may be sold by itself. - -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, -TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME -FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING -ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF -THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE -FONT SOFTWARE. - -Except as contained in this notice, the names of Gnome, the Gnome -Foundation, and Bitstream Inc., shall not be used in advertising or -otherwise to promote the sale, use or other dealings in this Font Software -without prior written authorization from the Gnome Foundation or Bitstream -Inc., respectively. For further information, contact: fonts at gnome dot -org. - -Arev Fonts Copyright ------------------------------- - -Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the fonts accompanying this license ("Fonts") and -associated documentation files (the "Font Software"), to reproduce -and distribute the modifications to the Bitstream Vera Font Software, -including without limitation the rights to use, copy, merge, publish, -distribute, and/or sell copies of the Font Software, and to permit -persons to whom the Font Software is furnished to do so, subject to -the following conditions: - -The above copyright and trademark notices and this permission notice -shall be included in all copies of one or more of the Font Software -typefaces. - -The Font Software may be modified, altered, or added to, and in -particular the designs of glyphs or characters in the Fonts may be -modified and additional glyphs or characters may be added to the -Fonts, only if the fonts are renamed to names not containing either -the words "Tavmjong Bah" or the word "Arev". - -This License becomes null and void to the extent applicable to Fonts -or Font Software that has been modified and is distributed under the -"Tavmjong Bah Arev" names. - -The Font Software may be sold as part of a larger software package but -no copy of one or more of the Font Software typefaces may be sold by -itself. - -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL -TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. - -Except as contained in this notice, the name of Tavmjong Bah shall not -be used in advertising or otherwise to promote the sale, use or other -dealings in this Font Software without prior written authorization -from Tavmjong Bah. For further information, contact: tavmjong @ free -. fr.http://dejavu.sourceforge.net/wiki/index.php/LicenseDejaVu SansBookCopyright (c) 2003 by Bitstream, Inc. All Rights Reserved. -Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. -DejaVu changes are in public domain -DejaVu SansBookDejaVu SansDejaVu SansVersion 2.37DejaVu fonts teamhttp://dejavu.sourceforge.netFonts are (c) Bitstream (see below). DejaVu changes are in public domain. Glyphs imported from Arev fonts are (c) Tavmjung Bah (see below) - -Bitstream Vera Fonts Copyright ------------------------------- - -Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is -a trademark of Bitstream, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of the fonts accompanying this license ("Fonts") and associated -documentation files (the "Font Software"), to reproduce and distribute the -Font Software, including without limitation the rights to use, copy, merge, -publish, distribute, and/or sell copies of the Font Software, and to permit -persons to whom the Font Software is furnished to do so, subject to the -following conditions: - -The above copyright and trademark notices and this permission notice shall -be included in all copies of one or more of the Font Software typefaces. - -The Font Software may be modified, altered, or added to, and in particular -the designs of glyphs or characters in the Fonts may be modified and -additional glyphs or characters may be added to the Fonts, only if the fonts -are renamed to names not containing either the words "Bitstream" or the word -"Vera". - -This License becomes null and void to the extent applicable to Fonts or Font -Software that has been modified and is distributed under the "Bitstream -Vera" names. - -The Font Software may be sold as part of a larger software package but no -copy of one or more of the Font Software typefaces may be sold by itself. - -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, -TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME -FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING -ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF -THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE -FONT SOFTWARE. - -Except as contained in this notice, the names of Gnome, the Gnome -Foundation, and Bitstream Inc., shall not be used in advertising or -otherwise to promote the sale, use or other dealings in this Font Software -without prior written authorization from the Gnome Foundation or Bitstream -Inc., respectively. For further information, contact: fonts at gnome dot -org. - -Arev Fonts Copyright ------------------------------- - -Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the fonts accompanying this license ("Fonts") and -associated documentation files (the "Font Software"), to reproduce -and distribute the modifications to the Bitstream Vera Font Software, -including without limitation the rights to use, copy, merge, publish, -distribute, and/or sell copies of the Font Software, and to permit -persons to whom the Font Software is furnished to do so, subject to -the following conditions: - -The above copyright and trademark notices and this permission notice -shall be included in all copies of one or more of the Font Software -typefaces. - -The Font Software may be modified, altered, or added to, and in -particular the designs of glyphs or characters in the Fonts may be -modified and additional glyphs or characters may be added to the -Fonts, only if the fonts are renamed to names not containing either -the words "Tavmjong Bah" or the word "Arev". - -This License becomes null and void to the extent applicable to Fonts -or Font Software that has been modified and is distributed under the -"Tavmjong Bah Arev" names. - -The Font Software may be sold as part of a larger software package but -no copy of one or more of the Font Software typefaces may be sold by -itself. - -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL -TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. - -Except as contained in this notice, the name of Tavmjong Bah shall not -be used in advertising or otherwise to promote the sale, use or other -dealings in this Font Software without prior written authorization -from Tavmjong Bah. For further information, contact: tavmjong @ free -. fr.http://dejavu.sourceforge.net/wiki/index.php/LicenseDejaVu SansBookZ9$%&'(*/01356789BDEFGHJKLOPQRSUVWXt{ -endstream -endobj -15 0 obj -<< /Ascent 759 -/CapHeight 759 -/Descent -240 -/Flags 4 -/FontBBox [-1020 -462 1793 1232] -/FontFile2 14 0 R -/FontName /916dd0+DejaVuSans -/ItalicAngle 0 -/StemV 0 -/Type /FontDescriptor -/XHeight 0 ->> -endobj -16 0 obj -<< /Length 627 ->> -stream -/CIDInit /ProcSet findresource begin -12 dict begin -begincmap -/CIDSystemInfo 3 dict dup begin - /Registry (Adobe) def - /Ordering (UCS) def - /Supplement 0 def -end def -/CMapName /Adobe-Identity-UCS def -/CMapType 2 def -1 begincodespacerange -<00> -endcodespacerange -10 beginbfrange -<2B><2D><002b> -<2F><36><002f> -<38><3A><0038> -<41><45><0041> -<4C><4E><004c> -<52><56><0052> -<61><65><0061> -<67><69><0067> -<6C><70><006c> -<72><75><0072> -endbfrange -9 beginbfchar -<20><0020> -<24><0024> -<47><0047> -<50><0050> -<5F><005f> -<92><00ed> -<99><00f4> -<2014> -<00b7> -endbfchar -endcmap -CMapName currentdict /CMap defineresource pop -end -end -endstream -endobj -17 0 obj -[317 0 0 0 636 0 0 0 0 0 0 837 317 360 0 336 636 636 636 636 636 636 636 0 636 636 336 0 0 0 0 0 0 684 686 698 770 631 0 774 0 0 0 0 557 862 748 0 603 0 694 634 610 731 684 0 0 0 0 0 0 0 0 500 0 612 634 549 634 615 0 634 633 277 0 0 277 974 633 611 634 0 411 520 392 633 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 277 0 0 0 0 0 0 611 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 317] -endobj -18 0 obj -<< /Length 19304 -/Length1 19304 ->> -stream -`OS/2k"qhVcmapcvt >1 4Tfpgm[kgaspK\ glyfV( head&Ja6hhea <$$hmtxJ loca&~ maxp iH name^@,,G}G - -@ -2 -d۠d%%%   %ё%Д #&̑ɻ]ɻɀ@%]@%dĐ::2  }& -@ ]%]@..@   K%%%2 -~}|{zywvwvututsr}qpo,o,nmlkjihc h2gf2ed -ed -d@cb -c b -a`a``_ -^]\\[Z[ZZYXWV@VUTSRQRQQPOPONONMLKLKJKJIJIHGFGFEDCDCBA%BAA%@?@?>?>=< =< ;d:987656%54554 - 4432 33@2 10100/ .-,:-,%,:+d*d)(''& %$#@+$#" "!!@  -%@ K}K%%dd   2 -    -  -@  - -@d  d++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++f3f=ffTbfTfmf3bq%fHZfm99Xm=fuff9{{X3fLfLJ#DDf?;Pw -/X#/553X -sf+j-j!f#^`3B3\fy```{j\{`bXP1L`%!JJ7{'}3Xy9bs&&&Xff&&/10!%!!fsr)3W -2327632#"'&'&5476'( > !~GH ".4F+@xH )0$'*'2    4  0 ' =  E  e  " : %: h;3 ; ;Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. -Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. -DejaVu changes are in public domain -DejaVu SansBoldDejaVu Sans BoldDejaVu Sans BoldVersion 2.371a10e1+DejaVuSans-BoldDejaVu fonts teamhttp://dejavu.sourceforge.netFonts are (c) Bitstream (see below). DejaVu changes are in public domain. Glyphs imported from Arev fonts are (c) Tavmjung Bah (see below) - -Bitstream Vera Fonts Copyright ------------------------------- - -Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is -a trademark of Bitstream, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of the fonts accompanying this license ("Fonts") and associated -documentation files (the "Font Software"), to reproduce and distribute the -Font Software, including without limitation the rights to use, copy, merge, -publish, distribute, and/or sell copies of the Font Software, and to permit -persons to whom the Font Software is furnished to do so, subject to the -following conditions: - -The above copyright and trademark notices and this permission notice shall -be included in all copies of one or more of the Font Software typefaces. - -The Font Software may be modified, altered, or added to, and in particular -the designs of glyphs or characters in the Fonts may be modified and -additional glyphs or characters may be added to the Fonts, only if the fonts -are renamed to names not containing either the words "Bitstream" or the word -"Vera". - -This License becomes null and void to the extent applicable to Fonts or Font -Software that has been modified and is distributed under the "Bitstream -Vera" names. - -The Font Software may be sold as part of a larger software package but no -copy of one or more of the Font Software typefaces may be sold by itself. - -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, -TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME -FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING -ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF -THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE -FONT SOFTWARE. - -Except as contained in this notice, the names of Gnome, the Gnome -Foundation, and Bitstream Inc., shall not be used in advertising or -otherwise to promote the sale, use or other dealings in this Font Software -without prior written authorization from the Gnome Foundation or Bitstream -Inc., respectively. For further information, contact: fonts at gnome dot -org. - -Arev Fonts Copyright ------------------------------- - -Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the fonts accompanying this license ("Fonts") and -associated documentation files (the "Font Software"), to reproduce -and distribute the modifications to the Bitstream Vera Font Software, -including without limitation the rights to use, copy, merge, publish, -distribute, and/or sell copies of the Font Software, and to permit -persons to whom the Font Software is furnished to do so, subject to -the following conditions: - -The above copyright and trademark notices and this permission notice -shall be included in all copies of one or more of the Font Software -typefaces. - -The Font Software may be modified, altered, or added to, and in -particular the designs of glyphs or characters in the Fonts may be -modified and additional glyphs or characters may be added to the -Fonts, only if the fonts are renamed to names not containing either -the words "Tavmjong Bah" or the word "Arev". - -This License becomes null and void to the extent applicable to Fonts -or Font Software that has been modified and is distributed under the -"Tavmjong Bah Arev" names. - -The Font Software may be sold as part of a larger software package but -no copy of one or more of the Font Software typefaces may be sold by -itself. - -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL -TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. - -Except as contained in this notice, the name of Tavmjong Bah shall not -be used in advertising or otherwise to promote the sale, use or other -dealings in this Font Software without prior written authorization -from Tavmjong Bah. For further information, contact: tavmjong @ free -. fr.http://dejavu.sourceforge.net/wiki/index.php/LicenseDejaVu SansBoldCopyright (c) 2003 by Bitstream, Inc. All Rights Reserved. -Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. -DejaVu changes are in public domain -DejaVu SansBoldDejaVu Sans BoldDejaVu Sans BoldVersion 2.37DejaVu fonts teamhttp://dejavu.sourceforge.netFonts are (c) Bitstream (see below). DejaVu changes are in public domain. Glyphs imported from Arev fonts are (c) Tavmjung Bah (see below) - -Bitstream Vera Fonts Copyright ------------------------------- - -Copyright (c) 2003 by Bitstream, Inc. All Rights Reserved. Bitstream Vera is -a trademark of Bitstream, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of the fonts accompanying this license ("Fonts") and associated -documentation files (the "Font Software"), to reproduce and distribute the -Font Software, including without limitation the rights to use, copy, merge, -publish, distribute, and/or sell copies of the Font Software, and to permit -persons to whom the Font Software is furnished to do so, subject to the -following conditions: - -The above copyright and trademark notices and this permission notice shall -be included in all copies of one or more of the Font Software typefaces. - -The Font Software may be modified, altered, or added to, and in particular -the designs of glyphs or characters in the Fonts may be modified and -additional glyphs or characters may be added to the Fonts, only if the fonts -are renamed to names not containing either the words "Bitstream" or the word -"Vera". - -This License becomes null and void to the extent applicable to Fonts or Font -Software that has been modified and is distributed under the "Bitstream -Vera" names. - -The Font Software may be sold as part of a larger software package but no -copy of one or more of the Font Software typefaces may be sold by itself. - -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, -TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL BITSTREAM OR THE GNOME -FOUNDATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING -ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF -THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE -FONT SOFTWARE. - -Except as contained in this notice, the names of Gnome, the Gnome -Foundation, and Bitstream Inc., shall not be used in advertising or -otherwise to promote the sale, use or other dealings in this Font Software -without prior written authorization from the Gnome Foundation or Bitstream -Inc., respectively. For further information, contact: fonts at gnome dot -org. - -Arev Fonts Copyright ------------------------------- - -Copyright (c) 2006 by Tavmjong Bah. All Rights Reserved. - -Permission is hereby granted, free of charge, to any person obtaining -a copy of the fonts accompanying this license ("Fonts") and -associated documentation files (the "Font Software"), to reproduce -and distribute the modifications to the Bitstream Vera Font Software, -including without limitation the rights to use, copy, merge, publish, -distribute, and/or sell copies of the Font Software, and to permit -persons to whom the Font Software is furnished to do so, subject to -the following conditions: - -The above copyright and trademark notices and this permission notice -shall be included in all copies of one or more of the Font Software -typefaces. - -The Font Software may be modified, altered, or added to, and in -particular the designs of glyphs or characters in the Fonts may be -modified and additional glyphs or characters may be added to the -Fonts, only if the fonts are renamed to names not containing either -the words "Tavmjong Bah" or the word "Arev". - -This License becomes null and void to the extent applicable to Fonts -or Font Software that has been modified and is distributed under the -"Tavmjong Bah Arev" names. - -The Font Software may be sold as part of a larger software package but -no copy of one or more of the Font Software typefaces may be sold by -itself. - -THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT -OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL -TAVMJONG BAH BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL -DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM -OTHER DEALINGS IN THE FONT SOFTWARE. - -Except as contained in this notice, the name of Tavmjong Bah shall not -be used in advertising or otherwise to promote the sale, use or other -dealings in this Font Software without prior written authorization -from Tavmjong Bah. For further information, contact: tavmjong @ free -. fr.http://dejavu.sourceforge.net/wiki/index.php/LicenseDejaVu SansBoldZuni2713 -endstream -endobj -19 0 obj -<< /Ascent 759 -/CapHeight 759 -/Descent -240 -/Flags 4 -/FontBBox [-1069 -415 1975 1175] -/FontFile2 18 0 R -/FontName /1a10e1+DejaVuSans-Bold -/ItalicAngle 0 -/StemV 0 -/Type /FontDescriptor -/XHeight 0 ->> -endobj -20 0 obj -<< /Length 376 ->> -stream -/CIDInit /ProcSet findresource begin -12 dict begin -begincmap -/CIDSystemInfo 3 dict dup begin - /Registry (Adobe) def - /Ordering (UCS) def - /Supplement 0 def -end def -/CMapName /Adobe-Identity-UCS def -/CMapType 2 def -1 begincodespacerange -<00><21> -endcodespacerange -1 beginbfrange -<20><21>[<0020><2713>] -endbfrange -endcmap -CMapName currentdict /CMap defineresource pop -end -end -endstream -endobj -21 0 obj -[348 837] -endobj -xref -0 22 -0000000000 65535 f -0000000015 00000 n -0000000109 00000 n -0000000158 00000 n -0000000215 00000 n -0000013770 00000 n -0000014119 00000 n -0000014289 00000 n -0000014454 00000 n -0000014623 00000 n -0000015140 00000 n -0000043133 00000 n -0000043347 00000 n -0000044033 00000 n -0000044563 00000 n -0000071780 00000 n -0000071989 00000 n -0000072668 00000 n -0000073181 00000 n -0000092554 00000 n -0000092768 00000 n -0000093196 00000 n -trailer -<< /Info 1 0 R -/Root 2 0 R -/Size 22 ->> -startxref -93222 -%%EOF diff --git a/Erros/relatorio_bruno-corgozinho_4-2.pdf b/Erros/relatorio_bruno-corgozinho_4-2.pdf deleted file mode 100644 index a806fcf..0000000 --- a/Erros/relatorio_bruno-corgozinho_4-2.pdf +++ /dev/null @@ -1,3911 +0,0 @@ -%PDF-1.3 -% -1 0 obj -<< /Creator -/Producer ->> -endobj -2 0 obj -<< /Pages 3 0 R -/Type /Catalog ->> -endobj -3 0 obj -<< /Count 2 -/Kids [5 0 R 9 0 R] -/Type /Pages ->> -endobj -4 0 obj -<< /Length 28303 ->> -stream -q -/DeviceRGB cs -0.03922 0.03922 0.03922 scn -0.0 771.89 595.28 70.0 re -f -0.97647 0.45098 0.08627 scn -0.0 771.89 8.0 70.0 re -f -1.0 1.0 1.0 scn - -BT -50.0 807.53 Td -/F2.0 20 Tf -[<5245454d205452414e53504f52> 20 <5445>] TJ -ET - -0.97647 0.45098 0.08627 scn - -BT -50.0 790.71 Td -/F1.0 10 Tf -[<53697374656d6120646520436f6e74726f6c6520646520437573746f73204c6f67ed737469636f73>] TJ -ET - -0.0 0.0 0.0 scn -0.97647 0.45098 0.08627 scn - -BT -40.0 723.556 Td -/F2.0 13 Tf -[<52454c41> 90 <54> 40 50 <414c20444520454e545245474153>] TJ -ET - -/DeviceRGB CS -0.97647 0.45098 0.08627 SCN -40.0 717.42 m -555.28 717.42 l -S -0.0 0.0 0.0 scn - -BT -40.0 701.522 Td -/F2.0 11 Tf -[<436f6e736f6c696461e7e36f3a207465737465>] TJ -ET - - -BT -40.0 688.432 Td -/F1.0 11 Tf -[<4d6f746f72> -15 <697374613a204272> -15 <756e6f20436f72676f7a696e686f>] TJ -ET - - -BT -40.0 676.434 Td -/F1.0 10 Tf -[<50> 50 <6572> -15 ] TJ -ET - -0.41961 0.44706 0.50196 scn - -BT -40.0 664.874 Td -/F1.0 10 Tf -[<5374617475733a2046696e616c697a616461>] TJ -ET - -0.0 0.0 0.0 scn -0.97647 0.45098 0.08627 scn - -BT -40.0 637.16 Td -/F2.0 13 Tf -[<454e5452454741532028323929>] TJ -ET - -0.97647 0.45098 0.08627 SCN -40.0 631.024 m -555.28 631.024 l -S -0.0 0.0 0.0 scn -0.03922 0.03922 0.03922 scn -40.0 605.504 22.0 17.52 re -f -0.0 0.0 0.0 scn -0.03922 0.03922 0.03922 scn -62.0 605.504 70.0 17.52 re -f -0.0 0.0 0.0 scn -0.03922 0.03922 0.03922 scn -132.0 605.504 60.0 17.52 re -f -0.0 0.0 0.0 scn -0.03922 0.03922 0.03922 scn -192.0 605.504 208.28 17.52 re -f -0.0 0.0 0.0 scn -0.03922 0.03922 0.03922 scn -400.28 605.504 95.0 17.52 re -f -0.0 0.0 0.0 scn -0.03922 0.03922 0.03922 scn -495.28 605.504 60.0 17.52 re -f -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -40.0 623.024 m -62.0 623.024 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 605.504 m -62.0 605.504 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 623.524 m -40.0 605.004 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -62.0 623.524 m -62.0 605.004 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -1.0 1.0 1.0 scn - -BT -46.0 610.448 Td -/F2.0 8 Tf -[<23>] TJ -ET - -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -62.0 623.024 m -132.0 623.024 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -62.0 605.504 m -132.0 605.504 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -62.0 623.524 m -62.0 605.004 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -132.0 623.524 m -132.0 605.004 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -1.0 1.0 1.0 scn - -BT -68.0 610.448 Td -/F2.0 8 Tf -[<56> 50 <65ed63756c6f>] TJ -ET - -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -132.0 623.024 m -192.0 623.024 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -132.0 605.504 m -192.0 605.504 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -132.0 623.524 m -132.0 605.004 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -192.0 623.524 m -192.0 605.004 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -1.0 1.0 1.0 scn - -BT -138.0 610.448 Td -/F2.0 8 Tf -[<4e46>] TJ -ET - -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -192.0 623.024 m -400.28 623.024 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -192.0 605.504 m -400.28 605.504 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -192.0 623.524 m -192.0 605.004 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -400.28 623.524 m -400.28 605.004 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -1.0 1.0 1.0 scn - -BT -198.0 610.448 Td -/F2.0 8 Tf -[<456e64657265e76f>] TJ -ET - -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -400.28 623.024 m -495.28 623.024 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -400.28 605.504 m -495.28 605.504 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -400.28 623.524 m -400.28 605.004 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -495.28 623.524 m -495.28 605.004 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -1.0 1.0 1.0 scn - -BT -406.28 610.448 Td -/F2.0 8 Tf -[<5469706f>] TJ -ET - -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -495.28 623.024 m -555.28 623.024 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -495.28 605.504 m -555.28 605.504 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -495.28 623.524 m -495.28 605.004 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -555.28 623.524 m -555.28 605.004 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -1.0 1.0 1.0 scn - -BT -530.752 610.448 Td -/F2.0 8 Tf -[<56> 60 <616c6f72>] TJ -ET - -0.0 0.0 0.0 scn -1 w -0.86667 0.86667 0.86667 SCN -40.0 579.008 m -62.0 579.008 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 593.132 Td -/F1.0 8 Tf -[<31>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 579.008 m -132.0 579.008 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 593.132 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 579.008 m -192.0 579.008 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 593.132 Td -/F1.0 8 Tf -[<4e46203532343038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 579.008 m -400.28 579.008 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 593.132 Td -/F1.0 8 Tf -[<52756120476f6e7a616c6f2042657263656f> 40 <2e2035332e204a> 20 <617264696d204d6f72> 10 <616973205072> 10 <61646f> 40 <2e2053e36f>] TJ -ET - - -BT -198.0 583.884 Td -/F1.0 8 Tf -[<50> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835352d343130>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 579.008 m -495.28 579.008 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 593.132 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 579.008 m -555.28 579.008 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 593.132 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 552.512 m -62.0 552.512 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 566.636 Td -/F1.0 8 Tf -[<32>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 552.512 m -132.0 552.512 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 566.636 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 552.512 m -192.0 552.512 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 566.636 Td -/F1.0 8 Tf -[<4e46203532343036>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 552.512 m -400.28 552.512 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 566.636 Td -/F1.0 8 Tf -[<52756120526f676572204261636f6e2e203238392e204a> 20 <617264696d204d6f72> 10 <616973205072> 10 <61646f> 40 <2e2053e36f>] TJ -ET - - -BT -198.0 557.388 Td -/F1.0 8 Tf -[<50> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835352d333630>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 552.512 m -495.28 552.512 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 566.636 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 552.512 m -555.28 552.512 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 566.636 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 526.016 m -62.0 526.016 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 540.14 Td -/F1.0 8 Tf -[<33>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 526.016 m -132.0 526.016 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 540.14 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 526.016 m -192.0 526.016 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 540.14 Td -/F1.0 8 Tf -[<4e46203532343130>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 526.016 m -400.28 526.016 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 540.14 Td -/F1.0 8 Tf -[<52756120526f676572204261636f6e2e2033322e204a> 20 <617264696d204d6f72> 10 <616973205072> 10 <61646f> 40 <2e2053e36f>] TJ -ET - - -BT -198.0 530.892 Td -/F1.0 8 Tf -[<50> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835352d333630>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 526.016 m -495.28 526.016 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 540.14 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 526.016 m -555.28 526.016 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 540.14 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 499.52 m -62.0 499.52 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 513.644 Td -/F1.0 8 Tf -[<34>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 499.52 m -132.0 499.52 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 513.644 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 499.52 m -192.0 499.52 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 513.644 Td -/F1.0 8 Tf -[<4e46203532333331>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 499.52 m -400.28 499.52 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 513.644 Td -/F1.0 8 Tf -[<5275612047656e6572> 10 <616c204a6f736520436f727265612e203338392e204368e1636172> 10 <6120436f636169612e2053e36f>] TJ -ET - - -BT -198.0 504.396 Td -/F1.0 8 Tf -[<50> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835342d303930>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 499.52 m -495.28 499.52 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 513.644 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 499.52 m -555.28 499.52 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 513.644 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 473.024 m -62.0 473.024 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 487.148 Td -/F1.0 8 Tf -[<35>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 473.024 m -132.0 473.024 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 487.148 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 473.024 m -192.0 473.024 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 487.148 Td -/F1.0 8 Tf -[<4e46203532323935>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 473.024 m -400.28 473.024 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 487.148 Td -/F1.0 8 Tf -[<527561204d6172636f2041> 30 <7572656c696f204d6172> -15 <6c69616e692e203130332e204a> 20 <617264696d20416c6d65696461>] TJ -ET - - -BT -198.0 477.9 Td -/F1.0 8 Tf -[<5072> 10 <61646f> 40 <2e2053e36f2050> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835342d313730>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 473.024 m -495.28 473.024 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 487.148 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 473.024 m -555.28 473.024 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 487.148 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 446.528 m -62.0 446.528 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 460.652 Td -/F1.0 8 Tf -[<36>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 446.528 m -132.0 446.528 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 460.652 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 446.528 m -192.0 446.528 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 460.652 Td -/F1.0 8 Tf -[<4e46203532333435>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 446.528 m -400.28 446.528 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 460.652 Td -/F1.0 8 Tf -[<5275612044616e746520416d62726f73696f> 40 <2e2039382e204a> 20 <617264696d20416c6d65696461205072> 10 <61646f> 40 <2e2053e36f>] TJ -ET - - -BT -198.0 451.404 Td -/F1.0 8 Tf -[<50> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835342d323030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 446.528 m -495.28 446.528 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 460.652 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 446.528 m -555.28 446.528 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 460.652 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 420.032 m -62.0 420.032 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 434.156 Td -/F1.0 8 Tf -[<37>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 420.032 m -132.0 420.032 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 434.156 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 420.032 m -192.0 420.032 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 434.156 Td -/F1.0 8 Tf -[<4e46203532323835>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 420.032 m -400.28 420.032 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 434.156 Td -/F1.0 8 Tf -[<5275612053616e746f20416e746f6e696f> 40 <2e20342e204a> 20 <617264696d20416c6d65696461205072> 10 <61646f> 40 <2e2053e36f>] TJ -ET - - -BT -198.0 424.908 Td -/F1.0 8 Tf -[<50> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835342d323730>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 420.032 m -495.28 420.032 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 434.156 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 420.032 m -555.28 420.032 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 434.156 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 393.536 m -62.0 393.536 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 407.66 Td -/F1.0 8 Tf -[<38>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 393.536 m -132.0 393.536 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 407.66 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 393.536 m -192.0 393.536 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 407.66 Td -/F1.0 8 Tf -[<4e46203532323836>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 393.536 m -400.28 393.536 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 407.66 Td -/F1.0 8 Tf -[<527561204272656e6f2042657273612e203634612e204a> 20 <617264696d20416c6d65696461205072> 10 <61646f> 40 <2e2053e36f>] TJ -ET - - -BT -198.0 398.412 Td -/F1.0 8 Tf -[<50> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835342d323330>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 393.536 m -495.28 393.536 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 407.66 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 393.536 m -555.28 393.536 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 407.66 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 367.04 m -62.0 367.04 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 381.164 Td -/F1.0 8 Tf -[<39>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 367.04 m -132.0 367.04 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 381.164 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 367.04 m -192.0 367.04 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 381.164 Td -/F1.0 8 Tf -[<4e46203532323832>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 367.04 m -400.28 367.04 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 381.164 Td -/F1.0 8 Tf -[<527561204272656e6f2042657273612e20382e204a> 20 <617264696d20416c6d65696461205072> 10 <61646f> 40 <2e2053e36f2050> 40 <61756c6f> 40 <2e>] TJ -ET - - -BT -198.0 371.916 Td -/F1.0 8 Tf -[<5370> 35 <2e204365703a2030343835342d323330>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 367.04 m -495.28 367.04 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 381.164 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 367.04 m -555.28 367.04 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 381.164 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 340.544 m -62.0 340.544 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 354.668 Td -/F1.0 8 Tf -[<3130>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 340.544 m -132.0 340.544 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 354.668 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 340.544 m -192.0 340.544 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 354.668 Td -/F1.0 8 Tf -[<4e46203532333530>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 340.544 m -400.28 340.544 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 354.668 Td -/F1.0 8 Tf -[<527561204d6172> -15 <696120416e746f6e69612046> 30 <6572> -25 <6e616e64657a2e20342e204a> 20 <617264696d20416c6d65696461>] TJ -ET - - -BT -198.0 345.42 Td -/F1.0 8 Tf -[<5072> 10 <61646f> 40 <2e2053e36f2050> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835342d313630>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 340.544 m -495.28 340.544 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 354.668 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 340.544 m -555.28 340.544 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 354.668 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 314.048 m -62.0 314.048 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 328.172 Td -/F1.0 8 Tf -[<3131>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 314.048 m -132.0 314.048 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 328.172 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 314.048 m -192.0 314.048 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 328.172 Td -/F1.0 8 Tf -[<4e46203532333339>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 314.048 m -400.28 314.048 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 328.172 Td -/F1.0 8 Tf -[<527561204c6972> -15 <696f20446f2056> 70 <616c65> 15 <2e2039362e204a> 20 <617264696d20417a616e6f2049692e2053e36f2050> 40 <61756c6f> 40 <2e205370> 35 <2e>] TJ -ET - - -BT -198.0 318.924 Td -/F1.0 8 Tf -[<4365703a2030343835342d353630>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 314.048 m -495.28 314.048 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 328.172 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 314.048 m -555.28 314.048 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 328.172 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 287.552 m -62.0 287.552 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 301.676 Td -/F1.0 8 Tf -[<3132>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 287.552 m -132.0 287.552 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 301.676 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 287.552 m -192.0 287.552 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 301.676 Td -/F1.0 8 Tf -[<4e46203532333037>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 287.552 m -400.28 287.552 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 301.676 Td -/F1.0 8 Tf -[<527561204d6172> -15 <69612054686572657a612047616c76> 25 <616f204275656e6f> 40 <2e2038312e204a> 20 <617264696d205a696c64612e>] TJ -ET - - -BT -198.0 292.428 Td -/F1.0 8 Tf -[<53e36f2050> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835362d333735>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 287.552 m -495.28 287.552 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 301.676 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 287.552 m -555.28 287.552 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 301.676 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 261.056 m -62.0 261.056 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 275.18 Td -/F1.0 8 Tf -[<3133>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 261.056 m -132.0 261.056 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 275.18 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 261.056 m -192.0 261.056 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 275.18 Td -/F1.0 8 Tf -[<4e46203532323936>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 261.056 m -400.28 261.056 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 275.18 Td -/F1.0 8 Tf -[<527561204775737461> 20 <76> 25 <6f204261636172> -15 <69736173> 15 <2e203130342e204a> 20 <617264696d205a696c64612e2053e36f2050> 40 <61756c6f> 40 <2e>] TJ -ET - - -BT -198.0 265.932 Td -/F1.0 8 Tf -[<5370> 35 <2e204365703a2030343835362d333832>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 261.056 m -495.28 261.056 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 275.18 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 261.056 m -555.28 261.056 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 275.18 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 234.56 m -62.0 234.56 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 248.684 Td -/F1.0 8 Tf -[<3134>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 234.56 m -132.0 234.56 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 248.684 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 234.56 m -192.0 234.56 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 248.684 Td -/F1.0 8 Tf -[<4e46203532333430>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 234.56 m -400.28 234.56 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 248.684 Td -/F1.0 8 Tf -[<5275612052656e65204a> 20 <75737465> 15 <2e20313562> 40 <2e204a> 20 <617264696d205a696c64612e2053e36f2050> 40 <61756c6f> 40 <2e205370> 35 <2e>] TJ -ET - - -BT -198.0 239.436 Td -/F1.0 8 Tf -[<4365703a2030343835362d333835>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 234.56 m -495.28 234.56 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 248.684 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 234.56 m -555.28 234.56 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 248.684 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 208.064 m -62.0 208.064 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 222.188 Td -/F1.0 8 Tf -[<3135>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 208.064 m -132.0 208.064 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 222.188 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 208.064 m -192.0 208.064 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 222.188 Td -/F1.0 8 Tf -[<4e46203532323833>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 208.064 m -400.28 208.064 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 222.188 Td -/F1.0 8 Tf -[<527561204c756172204465204c6167> 10 <72> -15 <696d6173> 15 <2e2031322e204a> 20 <617264696d204e6f> 15 <76> 25 <6f20486f72> -15 <697a> 15 <6f6e7465> 15 <2e>] TJ -ET - - -BT -198.0 212.94 Td -/F1.0 8 Tf -[<53e36f2050> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835362d323130>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 208.064 m -495.28 208.064 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 222.188 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 208.064 m -555.28 208.064 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 222.188 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 181.568 m -62.0 181.568 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 195.692 Td -/F1.0 8 Tf -[<3136>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 181.568 m -132.0 181.568 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 195.692 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 181.568 m -192.0 181.568 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 195.692 Td -/F1.0 8 Tf -[<4e46203532323937>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 181.568 m -400.28 181.568 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 195.692 Td -/F1.0 8 Tf -[<527561204c756172204465204c6167> 10 <72> -15 <696d6173> 15 <2e2032372e204a> 20 <617264696d204e6f> 15 <76> 25 <6f20486f72> -15 <697a> 15 <6f6e7465> 15 <2e>] TJ -ET - - -BT -198.0 186.444 Td -/F1.0 8 Tf -[<53e36f2050> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835362d323130>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 181.568 m -495.28 181.568 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 195.692 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 181.568 m -555.28 181.568 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 195.692 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 155.072 m -62.0 155.072 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 169.196 Td -/F1.0 8 Tf -[<3137>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 155.072 m -132.0 155.072 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 169.196 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 155.072 m -192.0 155.072 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 169.196 Td -/F1.0 8 Tf -[<4e46203532333239>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 155.072 m -400.28 155.072 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 169.196 Td -/F1.0 8 Tf -[<54> 120 <72> 10 <61> 20 <76> 25 <657373612043687570696d2e2035372e204a> 20 <617264696d204e6f> 15 <76> 25 <6f20486f72> -15 <697a> 15 <6f6e7465> 15 <2e2053e36f>] TJ -ET - - -BT -198.0 159.948 Td -/F1.0 8 Tf -[<50> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835372d343630>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 155.072 m -495.28 155.072 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 169.196 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 155.072 m -555.28 155.072 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 169.196 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 128.576 m -62.0 128.576 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 142.7 Td -/F1.0 8 Tf -[<3138>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 128.576 m -132.0 128.576 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 142.7 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 128.576 m -192.0 128.576 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 142.7 Td -/F1.0 8 Tf -[<4e46203532333139>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 128.576 m -400.28 128.576 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 142.7 Td -/F1.0 8 Tf -[<54> 120 <72> 10 <61> 20 <76> 25 <6573736120446f20426572> -15 <696d6261752e2033302e204a> 20 <617264696d204d6172> -15 <696c64612e2053e36f2050> 40 <61756c6f> 40 <2e>] TJ -ET - - -BT -198.0 133.452 Td -/F1.0 8 Tf -[<5370> 35 <2e204365703a2030343835372d343430>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 128.576 m -495.28 128.576 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 142.7 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 128.576 m -555.28 128.576 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 142.7 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 102.08 m -62.0 102.08 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 116.204 Td -/F1.0 8 Tf -[<3139>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 102.08 m -132.0 102.08 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 116.204 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 102.08 m -192.0 102.08 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 116.204 Td -/F1.0 8 Tf -[<4e46203532323834>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 102.08 m -400.28 102.08 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 116.204 Td -/F1.0 8 Tf -[<54> 120 <72> 10 <61> 20 <76> 25 <6573736120507265736964656e746520526f626572> -40 <746f204f72> -40 <74692e2036342e204a> 20 <617264696d204e6f> 15 <76> 25 <6f>] TJ -ET - - -BT -198.0 106.956 Td -/F1.0 8 Tf -[<486f72> -15 <697a> 15 <6f6e7465> 15 <2e2053e36f2050> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835372d353230>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 102.08 m -495.28 102.08 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 116.204 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 102.08 m -555.28 102.08 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 116.204 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 75.584 m -62.0 75.584 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 89.708 Td -/F1.0 8 Tf -[<3230>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 75.584 m -132.0 75.584 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 89.708 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 75.584 m -192.0 75.584 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 89.708 Td -/F1.0 8 Tf -[<4e46203532333135>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 75.584 m -400.28 75.584 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 89.708 Td -/F1.0 8 Tf -[<5275612053617069746963612e2031342e204a> 20 <617264696d2053e36f204a> 20 <756461732054> 120 <616465752e2053e36f2050> 40 <61756c6f> 40 <2e>] TJ -ET - - -BT -198.0 80.46 Td -/F1.0 8 Tf -[<5370> 35 <2e204365703a2030343835382d323330>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 75.584 m -495.28 75.584 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 89.708 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 75.584 m -555.28 75.584 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 89.708 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -/Stamp1 Do -Q - -endstream -endobj -5 0 obj -<< /ArtBox [0 0 595.28 841.89] -/BleedBox [0 0 595.28 841.89] -/Contents 4 0 R -/CropBox [0 0 595.28 841.89] -/MediaBox [0 0 595.28 841.89] -/Parent 3 0 R -/Resources << /Font << /F1.0 7 0 R -/F2.0 6 0 R ->> -/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] -/XObject << /Stamp1 10 0 R ->> ->> -/TrimBox [0 0 595.28 841.89] -/Type /Page ->> -endobj -6 0 obj -<< /BaseFont /Helvetica-Bold -/Encoding /WinAnsiEncoding -/Subtype /Type1 -/Type /Font ->> -endobj -7 0 obj -<< /BaseFont /Helvetica -/Encoding /WinAnsiEncoding -/Subtype /Type1 -/Type /Font ->> -endobj -8 0 obj -<< /Length 18183 ->> -stream -q -/DeviceRGB CS -0.97647 0.45098 0.08627 SCN -/DeviceRGB cs -0.03922 0.03922 0.03922 scn -40.0 784.37 22.0 17.52 re -f -0.0 0.0 0.0 scn -0.03922 0.03922 0.03922 scn -62.0 784.37 70.0 17.52 re -f -0.0 0.0 0.0 scn -0.03922 0.03922 0.03922 scn -132.0 784.37 60.0 17.52 re -f -0.0 0.0 0.0 scn -0.03922 0.03922 0.03922 scn -192.0 784.37 208.28 17.52 re -f -0.0 0.0 0.0 scn -0.03922 0.03922 0.03922 scn -400.28 784.37 95.0 17.52 re -f -0.0 0.0 0.0 scn -0.03922 0.03922 0.03922 scn -495.28 784.37 60.0 17.52 re -f -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -40.0 801.89 m -62.0 801.89 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 784.37 m -62.0 784.37 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 802.39 m -40.0 783.87 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -62.0 802.39 m -62.0 783.87 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -1.0 1.0 1.0 scn - -BT -46.0 789.314 Td -/F2.0 8 Tf -[<23>] TJ -ET - -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -62.0 801.89 m -132.0 801.89 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -62.0 784.37 m -132.0 784.37 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -62.0 802.39 m -62.0 783.87 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -132.0 802.39 m -132.0 783.87 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -1.0 1.0 1.0 scn - -BT -68.0 789.314 Td -/F2.0 8 Tf -[<56> 50 <65ed63756c6f>] TJ -ET - -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -132.0 801.89 m -192.0 801.89 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -132.0 784.37 m -192.0 784.37 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -132.0 802.39 m -132.0 783.87 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -192.0 802.39 m -192.0 783.87 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -1.0 1.0 1.0 scn - -BT -138.0 789.314 Td -/F2.0 8 Tf -[<4e46>] TJ -ET - -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -192.0 801.89 m -400.28 801.89 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -192.0 784.37 m -400.28 784.37 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -192.0 802.39 m -192.0 783.87 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -400.28 802.39 m -400.28 783.87 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -1.0 1.0 1.0 scn - -BT -198.0 789.314 Td -/F2.0 8 Tf -[<456e64657265e76f>] TJ -ET - -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -400.28 801.89 m -495.28 801.89 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -400.28 784.37 m -495.28 784.37 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -400.28 802.39 m -400.28 783.87 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -495.28 802.39 m -495.28 783.87 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -1.0 1.0 1.0 scn - -BT -406.28 789.314 Td -/F2.0 8 Tf -[<5469706f>] TJ -ET - -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -495.28 801.89 m -555.28 801.89 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -495.28 784.37 m -555.28 784.37 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -495.28 802.39 m -495.28 783.87 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -555.28 802.39 m -555.28 783.87 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -1.0 1.0 1.0 scn - -BT -530.752 789.314 Td -/F2.0 8 Tf -[<56> 60 <616c6f72>] TJ -ET - -0.0 0.0 0.0 scn -1 w -0.86667 0.86667 0.86667 SCN -40.0 757.874 m -62.0 757.874 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 771.998 Td -/F1.0 8 Tf -[<3231>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 757.874 m -132.0 757.874 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 771.998 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 757.874 m -192.0 757.874 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 771.998 Td -/F1.0 8 Tf -[<4e46203532333038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 757.874 m -400.28 757.874 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 771.998 Td -/F1.0 8 Tf -[<527561204d6172> -15 <757061204d6972> -15 <696d2e20312e204a> 20 <617264696d2053616269e12049692e2053e36f2050> 40 <61756c6f> 40 <2e205370> 35 <2e>] TJ -ET - - -BT -198.0 762.75 Td -/F1.0 8 Tf -[<4365703a2030343835362d353830>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 757.874 m -495.28 757.874 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 771.998 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 757.874 m -555.28 757.874 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 771.998 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 731.378 m -62.0 731.378 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 745.502 Td -/F1.0 8 Tf -[<3232>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 731.378 m -132.0 731.378 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 745.502 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 731.378 m -192.0 731.378 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 745.502 Td -/F1.0 8 Tf -[<4e46203532343133>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 731.378 m -400.28 731.378 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 745.502 Td -/F1.0 8 Tf -[<527561204167656e6f72204b6c617573736e6572> 50 <2e2032342e204a> 20 <617264696d204e6f> 15 <76> 25 <6f20486f72> -15 <697a> 15 <6f6e7465> 15 <2e>] TJ -ET - - -BT -198.0 736.254 Td -/F1.0 8 Tf -[<53e36f2050> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835362d353130>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 731.378 m -495.28 731.378 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 745.502 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 731.378 m -555.28 731.378 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 745.502 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 704.882 m -62.0 704.882 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 719.006 Td -/F1.0 8 Tf -[<3233>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 704.882 m -132.0 704.882 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 719.006 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 704.882 m -192.0 704.882 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 719.006 Td -/F1.0 8 Tf -[<4e46203532333936>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 704.882 m -400.28 704.882 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 719.006 Td -/F1.0 8 Tf -[<527561204167656e6f72204b6c617573736e6572> 50 <2e203234302e204a> 20 <617264696d204e6f> 15 <76> 25 <6f20486f72> -15 <697a> 15 <6f6e7465> 15 <2e>] TJ -ET - - -BT -198.0 709.758 Td -/F1.0 8 Tf -[<53e36f2050> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835362d353130>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 704.882 m -495.28 704.882 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 719.006 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 704.882 m -555.28 704.882 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 719.006 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 678.386 m -62.0 678.386 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 692.51 Td -/F1.0 8 Tf -[<3234>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 678.386 m -132.0 678.386 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 692.51 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 678.386 m -192.0 678.386 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 692.51 Td -/F1.0 8 Tf -[<4e46203532323939>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 678.386 m -400.28 678.386 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 692.51 Td -/F1.0 8 Tf -[<527561204167656e6f72204b6c617573736e6572> 50 <2e203238372e204a> 20 <617264696d204e6f> 15 <76> 25 <6f20486f72> -15 <697a> 15 <6f6e7465> 15 <2e>] TJ -ET - - -BT -198.0 683.262 Td -/F1.0 8 Tf -[<53e36f2050> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835362d353130>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 678.386 m -495.28 678.386 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 692.51 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 678.386 m -555.28 678.386 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 692.51 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 651.89 m -62.0 651.89 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 666.014 Td -/F1.0 8 Tf -[<3235>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 651.89 m -132.0 651.89 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 666.014 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 651.89 m -192.0 651.89 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 666.014 Td -/F1.0 8 Tf -[<4e46203532333233>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 651.89 m -400.28 651.89 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 666.014 Td -/F1.0 8 Tf -[<527561204c6976696e6f2046> 50 <61757374696e6f> 40 <2e20342e204a> 20 <617264696d2056> 70 <617267696e68612e2053e36f2050> 40 <61756c6f> 40 <2e>] TJ -ET - - -BT -198.0 656.766 Td -/F1.0 8 Tf -[<5370> 35 <2e204365703a2030343835372d363130>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 651.89 m -495.28 651.89 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 666.014 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 651.89 m -555.28 651.89 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 666.014 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 625.394 m -62.0 625.394 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 639.518 Td -/F1.0 8 Tf -[<3236>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 625.394 m -132.0 625.394 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 639.518 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 625.394 m -192.0 625.394 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 639.518 Td -/F1.0 8 Tf -[<4e46203532333034>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 625.394 m -400.28 625.394 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 639.518 Td -/F1.0 8 Tf -[<5275612048656e72> -15 <6971756520416c626572> -40 <747573> 15 <2e20322e204a> 20 <617264696d2056> 70 <617267696e68612e2053e36f2050> 40 <61756c6f> 40 <2e>] TJ -ET - - -BT -198.0 630.27 Td -/F1.0 8 Tf -[<5370> 35 <2e204365703a2030343835372d303135>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 625.394 m -495.28 625.394 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 639.518 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 625.394 m -555.28 625.394 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 639.518 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 598.898 m -62.0 598.898 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 613.022 Td -/F1.0 8 Tf -[<3237>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 598.898 m -132.0 598.898 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 613.022 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 598.898 m -192.0 598.898 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 613.022 Td -/F1.0 8 Tf -[<4e46203532333434>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 598.898 m -400.28 598.898 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 613.022 Td -/F1.0 8 Tf -[<5275612042656e69746f205361657a204761726369612e2038382e204a> 20 <617264696d2056> 70 <617267696e68612e2053e36f>] TJ -ET - - -BT -198.0 603.774 Td -/F1.0 8 Tf -[<50> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835372d303830>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 598.898 m -495.28 598.898 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 613.022 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 598.898 m -555.28 598.898 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 613.022 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 572.402 m -62.0 572.402 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 586.526 Td -/F1.0 8 Tf -[<3238>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 572.402 m -132.0 572.402 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 586.526 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 572.402 m -192.0 572.402 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 586.526 Td -/F1.0 8 Tf -[<4e46203532333138>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 572.402 m -400.28 572.402 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 586.526 Td -/F1.0 8 Tf -[<5275612052696f2053616f204a6f7365> 15 <2e2037312e204a> 20 <617264696d204d6172> -15 <696c64612e2053e36f2050> 40 <61756c6f> 40 <2e205370> 35 <2e>] TJ -ET - - -BT -198.0 577.278 Td -/F1.0 8 Tf -[<4365703a2030343835372d323930>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 572.402 m -495.28 572.402 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 586.526 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 572.402 m -555.28 572.402 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 586.526 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -40.0 545.906 m -62.0 545.906 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -46.0 560.03 Td -/F1.0 8 Tf -[<3239>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -62.0 545.906 m -132.0 545.906 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -68.0 560.03 Td -/F1.0 8 Tf -[<474144455f313038>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -132.0 545.906 m -192.0 545.906 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -138.0 560.03 Td -/F1.0 8 Tf -[<4e46203532333431>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -192.0 545.906 m -400.28 545.906 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -198.0 560.03 Td -/F1.0 8 Tf -[<5275612045737465> 30 <76> 25 <616f20426572> -25 <6e617264692e2038322e204a> 20 <617264696d20416c6d65696461205072> 10 <61646f> 40 <2e2053e36f>] TJ -ET - - -BT -198.0 550.782 Td -/F1.0 8 Tf -[<50> 40 <61756c6f> 40 <2e205370> 35 <2e204365703a2030343835342d323230>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -400.28 545.906 m -495.28 545.906 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -406.28 560.03 Td -/F1.0 8 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.86667 0.86667 0.86667 SCN -495.28 545.906 m -555.28 545.906 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -517.816 560.03 Td -/F1.0 8 Tf -[<52242031352c3030>] TJ -ET - -0.97647 0.45098 0.08627 scn - -BT -40.0 522.572 Td -/F2.0 13 Tf -[<524553554d4f>] TJ -ET - -0.97647 0.45098 0.08627 SCN -40.0 516.436 m -555.28 516.436 l -S -0.0 0.0 0.0 scn -0.97647 0.45098 0.08627 scn -40.0 489.726 130.95045 18.71 re -f -0.0 0.0 0.0 scn -0.97647 0.45098 0.08627 scn -170.95045 489.726 119.04955 18.71 re -f -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -40.0 508.436 m -170.95045 508.436 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 489.726 m -170.95045 489.726 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 508.936 m -40.0 489.226 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -170.95045 508.936 m -170.95045 489.226 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -0.0 0.0 0.0 scn - -BT -48.0 495.142 Td -/F2.0 9 Tf -[<5469706f>] TJ -ET - -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -170.95045 508.436 m -290.0 508.436 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -170.95045 489.726 m -290.0 489.726 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -170.95045 508.936 m -170.95045 489.226 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -290.0 508.936 m -290.0 489.226 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN -0.0 0.0 0.0 scn - -BT -178.95045 495.142 Td -/F2.0 9 Tf -[<5175616e746964616465>] TJ -ET - -0.0 0.0 0.0 scn -1 w -0.0 0.0 0.0 SCN -40.0 489.726 m -170.95045 489.726 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 471.322 m -170.95045 471.322 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 490.226 m -40.0 470.822 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -170.95045 490.226 m -170.95045 470.822 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -48.0 476.636 Td -/F1.0 9 Tf -[<456e7472656761204e6f72> -25 <6d616c>] TJ -ET - -1 w -0.0 0.0 0.0 SCN -170.95045 489.726 m -290.0 489.726 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -170.95045 471.322 m -290.0 471.322 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -170.95045 490.226 m -170.95045 470.822 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -290.0 490.226 m -290.0 470.822 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -178.95045 476.636 Td -/F1.0 9 Tf -[<3239>] TJ -ET - -1 w -0.0 0.0 0.0 SCN -40.0 471.322 m -170.95045 471.322 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 452.918 m -170.95045 452.918 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 471.822 m -40.0 452.418 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -170.95045 471.822 m -170.95045 452.418 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -48.0 458.232 Td -/F1.0 9 Tf -[<5265746972> 10 <616461>] TJ -ET - -1 w -0.0 0.0 0.0 SCN -170.95045 471.322 m -290.0 471.322 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -170.95045 452.918 m -290.0 452.918 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -170.95045 471.822 m -170.95045 452.418 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -290.0 471.822 m -290.0 452.418 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -178.95045 458.232 Td -/F1.0 9 Tf -[<30>] TJ -ET - -1 w -0.0 0.0 0.0 SCN -40.0 452.918 m -170.95045 452.918 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 434.514 m -170.95045 434.514 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 453.418 m -40.0 434.014 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -170.95045 453.418 m -170.95045 434.014 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -48.0 439.828 Td -/F1.0 9 Tf -[<42f46e> 10 <7573>] TJ -ET - -1 w -0.0 0.0 0.0 SCN -170.95045 452.918 m -290.0 452.918 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -170.95045 434.514 m -290.0 434.514 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -170.95045 453.418 m -170.95045 434.014 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -290.0 453.418 m -290.0 434.014 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -178.95045 439.828 Td -/F1.0 9 Tf -[<30>] TJ -ET - -1 w -0.0 0.0 0.0 SCN -40.0 434.514 m -170.95045 434.514 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 416.11 m -170.95045 416.11 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -40.0 435.014 m -40.0 415.61 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -170.95045 435.014 m -170.95045 415.61 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -48.0 421.424 Td -/F1.0 9 Tf -[<446573636f6e746f>] TJ -ET - -1 w -0.0 0.0 0.0 SCN -170.95045 434.514 m -290.0 434.514 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -170.95045 416.11 m -290.0 416.11 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -170.95045 435.014 m -170.95045 415.61 l -S -[] 0 d -1 w -0.0 0.0 0.0 SCN -290.0 435.014 m -290.0 415.61 l -S -[] 0 d -1 w -0.97647 0.45098 0.08627 SCN - -BT -178.95045 421.424 Td -/F1.0 9 Tf -[<30>] TJ -ET - -0.97647 0.45098 0.08627 scn - -BT -40.0 390.622 Td -/F2.0 16 Tf -[<54> 40 <4f> 40 <54> 90 <414c20412050> 100 <41> 50 <4741523a205224203433352c3030>] TJ -ET - -0.0 0.0 0.0 scn -0.0 0.0 0.0 SCN -0.7 w -40.0 323.07 m -277.64 323.07 l -S -317.64 323.07 m -555.28 323.07 l -S -0.0 0.0 0.0 scn - -BT -119.391 308.608 Td -/F2.0 9 Tf -[<4272756e6f20436f72> 15 <676f7a696e686f>] TJ -ET - - -BT -399.722 308.608 Td -/F2.0 9 Tf -[<5265656d2054> 80 <72616e73706f72> -20 <7465>] TJ -ET - -0.41961 0.44706 0.50196 scn - -BT -116.784 295.326 Td -/F1.0 8 Tf -[<417373696e61747572> 10 <6120646f204d6f746f72> -15 <69737461>] TJ -ET - - -BT -386.3 295.326 Td -/F1.0 8 Tf -[<417373696e61747572> 10 <6120646f2041646d696e69737472> 10 <61646f72>] TJ -ET - -0.0 0.0 0.0 scn -/Stamp1 Do -Q - -endstream -endobj -9 0 obj -<< /ArtBox [0 0 595.28 841.89] -/BleedBox [0 0 595.28 841.89] -/Contents 8 0 R -/CropBox [0 0 595.28 841.89] -/MediaBox [0 0 595.28 841.89] -/Parent 3 0 R -/Resources << /Font << /F1.0 7 0 R -/F2.0 6 0 R ->> -/ProcSet [/PDF /Text /ImageB /ImageC /ImageI] -/XObject << /Stamp1 10 0 R ->> ->> -/TrimBox [0 0 595.28 841.89] -/Type /Page ->> -endobj -10 0 obj -<< /BBox [0 0 595.28 841.89] -/Length 363 -/Resources << /Font << /F1.0 7 0 R ->> ->> -/Subtype /Form -/Type /XObject ->> -stream -q -/DeviceRGB cs -0.0 0.0 0.0 scn -/DeviceRGB CS -0.0 0.0 0.0 SCN -0.7 w -0 J -0 j -[] 0 d -/DeviceRGB cs -0.41961 0.44706 0.50196 scn - -BT -171.876 86.256 Td -/F1.0 8 Tf -[<476572> 10 <61646f20656d2031372f30362f323032362031353a313420b7205265656d2054> 120 <72> 10 <616e73706f72> -40 <7465209720646f63756d656e746f20696e746572> -25 <6e6f>] TJ -ET - -/DeviceRGB cs -0.0 0.0 0.0 scn -Q - -endstream -endobj -xref -0 11 -0000000000 65535 f -0000000015 00000 n -0000000109 00000 n -0000000158 00000 n -0000000221 00000 n -0000028577 00000 n -0000028915 00000 n -0000029017 00000 n -0000029114 00000 n -0000047350 00000 n -0000047688 00000 n -trailer -<< /Info 1 0 R -/Root 2 0 R -/Size 11 ->> -startxref -48200 -%%EOF diff --git a/Erros/teste _ Reem Logística_quando aperta a pre visualização do holerite.html b/Erros/teste _ Reem Logística_quando aperta a pre visualização do holerite.html deleted file mode 100644 index 888642b..0000000 --- a/Erros/teste _ Reem Logística_quando aperta a pre visualização do holerite.html +++ /dev/null @@ -1,252 +0,0 @@ - - - - - - - - teste | Reem Logística - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
-
G
- Reem Logística -
-
-
-
- - - - - - -
- -
- -
- ← Consolidações -
-
-
-

teste

- 📝 Rascunho -
-

- 📅 01/02/2026 → 28/02/2026 - · Criada por Administrador Gade -

-
-
- ✏️ Continuar validação -
-
-
-
- -
-

Valor total da consolidação

-

R$ 5265,00

-
- -

👥 Motoristas

-
-
-
-
-

Bruno Corgozinho

-

R$ 5265,00

-
-
- - 📄 Relatório Individual - 🧾 Gerar Holerite -
-
-
-
-
- - - - - -
- - - - - - diff --git a/config/environments/development.rb b/config/environments/development.rb index 0e5a683..a092ede 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -3,7 +3,21 @@ require "active_support/core_ext/integer/time" Rails.application.configure do config.enable_reloading = true config.eager_load = false - config.consider_all_requests_local = true + # ⚠️ SEGURANÇA — a página de debug do Rails ("Action Controller: Exception + # caught") mostra parâmetros, SESSÃO, cookies, IP do cliente, caminho do + # servidor e o trace inteiro. O servidor de teste/produção sobe com + # RAILS_ENV=development (docker-compose.yml), então esse painel estava indo + # para a tela de qualquer pessoa que provocasse um erro. + # + # Agora o detalhe só aparece quando ALGUÉM PEDE explicitamente, na máquina de + # desenvolvimento: `ERROS_DETALHADOS=true` no .env local. Sem a variável, o + # visitante recebe a página estática de public/500.html. + config.consider_all_requests_local = ENV['ERROS_DETALHADOS'] == 'true' + + # Sem isso, com consider_all_requests_local=false o Rails ainda tentaria + # renderizar o painel para requisições vindas de localhost. + config.action_dispatch.show_exceptions = :all + config.server_timing = true config.cache_store = :memory_store diff --git a/config/initializers/filter_parameter_logging.rb b/config/initializers/filter_parameter_logging.rb new file mode 100644 index 0000000..bd5b27c --- /dev/null +++ b/config/initializers/filter_parameter_logging.rb @@ -0,0 +1,19 @@ +# config/initializers/filter_parameter_logging.rb +# +# ⚠️ SEGURANÇA — sem esta lista, TODO parâmetro entra no log em texto puro: +# senha digitada no login, PIN do motorista, token de acesso do WhatsApp, cookie +# de sessão. O arquivo de log é lido por quem tem acesso ao servidor e costuma +# ser copiado junto em backup e em suporte. +# +# Os nomes são casados por SUBSTRING (`:senha` filtra `senha_confirmation`), e a +# lista é em português e inglês porque o projeto tem os dois (Devise usa +# `password`, o resto do sistema usa `senha`/`pin`). +Rails.application.config.filter_parameters += %i[ + passw password password_confirmation + senha senha_confirmation + pin pin_code pin_acesso + secret token _key crypt salt certificate otp ssn + authorization cookie session + auth_token access_token api_key + whatsapp_token twilio_auth_token smtp_senha smtp_password +] diff --git a/public/404.html b/public/404.html new file mode 100644 index 0000000..5378aca --- /dev/null +++ b/public/404.html @@ -0,0 +1,29 @@ + + + + + + Página não encontrada · Reem Transporte + + + +
+

Reem Transporte

+

Página não encontrada

+

O endereço que você abriu não existe ou foi movido.

+

Confira o link ou use o menu para chegar onde precisa.

+ Voltar ao início +
+ + diff --git a/public/422.html b/public/422.html new file mode 100644 index 0000000..d8cce64 --- /dev/null +++ b/public/422.html @@ -0,0 +1,29 @@ + + + + + + Não foi possível concluir · Reem Transporte + + + +
+

Reem Transporte

+

Não foi possível concluir

+

A ação foi recusada por uma verificação de segurança.

+

Normalmente isso acontece quando a página ficou aberta tempo demais — recarregue e tente de novo.

+ Voltar ao início +
+ + diff --git a/public/500.html b/public/500.html new file mode 100644 index 0000000..0d335f0 --- /dev/null +++ b/public/500.html @@ -0,0 +1,29 @@ + + + + + + Algo deu errado do nosso lado · Reem Transporte + + + +
+

Reem Transporte

+

Algo deu errado do nosso lado

+

Registramos o problema e a equipe já consegue ver o que aconteceu.

+

Tente de novo em alguns instantes. Se continuar, avise o administrador do sistema informando o que você estava fazendo.

+ Voltar ao início +
+ +