gaku_imex 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +24 -0
- data/.rspec +2 -0
- data/.travis.yml +31 -0
- data/Gemfile +21 -0
- data/LICENSE +674 -0
- data/README.md +29 -0
- data/Rakefile +27 -0
- data/app/controllers/gaku/admin/import_files_controller.rb +74 -0
- data/app/controllers/gaku/students/reports_controller.rb +19 -0
- data/app/models/gaku/import_file.rb +23 -0
- data/app/models/gaku/student_injector.rb +32 -0
- data/app/overrides/import_menu.rb +6 -0
- data/app/overrides/reports.rb +6 -0
- data/app/reports/student_record_personal_info.en.tlf +1 -0
- data/app/reports/student_record_personal_info.ja.tlf +1 -0
- data/app/views/gaku/admin/import_files/_check_modal.html.slim +10 -0
- data/app/views/gaku/admin/import_files/_created_students.html.slim +8 -0
- data/app/views/gaku/admin/import_files/_duplicated_students.html.slim +8 -0
- data/app/views/gaku/admin/import_files/_form.html.slim +3 -0
- data/app/views/gaku/admin/import_files/_form_fields.html.slim +4 -0
- data/app/views/gaku/admin/import_files/_import_file.html.slim +2 -0
- data/app/views/gaku/admin/import_files/_import_files.html.slim +24 -0
- data/app/views/gaku/admin/import_files/_not_saved_student.html.slim +3 -0
- data/app/views/gaku/admin/import_files/_not_saved_students.html.slim +8 -0
- data/app/views/gaku/admin/import_files/_student.html.slim +4 -0
- data/app/views/gaku/admin/import_files/_table_fields.html.slim +8 -0
- data/app/views/gaku/admin/import_files/_tabs.html.slim +20 -0
- data/app/views/gaku/admin/import_files/check.js.erb +2 -0
- data/app/views/gaku/admin/import_files/create.js.erb +7 -0
- data/app/views/gaku/admin/import_files/destroy.js.erb +2 -0
- data/app/views/gaku/admin/import_files/import.js.erb +1 -0
- data/app/views/gaku/admin/import_files/index.js.erb +1 -0
- data/app/views/gaku/admin/import_files/new.js.erb +3 -0
- data/app/views/gaku/shared/menu/_imex_menu.html.erb +9 -0
- data/app/views/gaku/students/reports/_report_link.html.slim +7 -0
- data/app/views/gaku/students/reports/index.en.pdf.thinreports +15 -0
- data/app/views/gaku/students/reports/index.ja.pdf.thinreports +15 -0
- data/app/workers/gaku/importers/students_worker.rb +14 -0
- data/config/initializers/sidekiq.rb +6 -0
- data/config/routes.rb +17 -0
- data/db/migrate/20131011100726_create_gaku_import_files.rb +14 -0
- data/gaku_imex.gemspec +32 -0
- data/lib/gaku/imex.rb +13 -0
- data/lib/gaku/imex/engine.rb +21 -0
- data/lib/gaku/importers/students/csv.rb +58 -0
- data/lib/gaku/importers/students/student_identity.rb +15 -0
- data/lib/gaku_imex.rb +2 -0
- data/lib/generators/gaku_imex/install/install_generator.rb +77 -0
- data/lib/generators/gaku_imex/install/templates/Procfile +2 -0
- data/lib/generators/gaku_imex/install/templates/config/sidekiq.yml +8 -0
- data/lib/generators/gaku_imex/install/templates/log/sidekiq.log +0 -0
- data/spec/features/import_file_spec.rb +115 -0
- data/spec/lib/gaku/importers/students/csv_spec.rb +84 -0
- data/spec/models/import_file_spec.rb +32 -0
- data/spec/models/student_spec.rb +17 -0
- data/spec/spec_helper.rb +14 -0
- data/spec/support/factories.rb +12 -0
- data/spec/support/foreign_system_students.csv +3 -0
- data/spec/support/format_error_students.csv +3 -0
- data/spec/support/new_students.csv +2 -0
- data/spec/support/students.csv +1006 -0
- data/spec/workers/students_worker_spec.rb +9 -0
- metadata +216 -0
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
[![Build Status](https://travis-ci.org/GAKUEngine/gaku_imex.png)](https://travis-ci.org/GAKUEngine/gaku_imex)
|
2
|
+
[![Code Climate](https://codeclimate.com/github/GAKUEngine/gaku_imex.png)](https://codeclimate.com/github/GAKUEngine/gaku_imex)
|
3
|
+
|
4
|
+
gaku_imex
|
5
|
+
=========
|
6
|
+
|
7
|
+
Importers and Exporters for GAKU Engine
|
8
|
+
|
9
|
+
|
10
|
+
### Install
|
11
|
+
|
12
|
+
Add to your `Gemfile` :
|
13
|
+
|
14
|
+
```ruby
|
15
|
+
gem 'gaku', github: 'GAKUEngine/gaku'
|
16
|
+
gem 'gaku_imex', github: 'GAKUEngine/gaku_imex'
|
17
|
+
```
|
18
|
+
|
19
|
+
Install dependencies:
|
20
|
+
|
21
|
+
$ bundle install
|
22
|
+
|
23
|
+
Run `gaku_imex` generator :
|
24
|
+
|
25
|
+
$ rails g gaku_imex:install
|
26
|
+
|
27
|
+
Run the server:
|
28
|
+
|
29
|
+
$ rails s
|
data/Rakefile
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'rake'
|
3
|
+
require 'rubygems/package_task'
|
4
|
+
require 'gaku/testing/common_rake'
|
5
|
+
|
6
|
+
|
7
|
+
|
8
|
+
task :default => [:spec]
|
9
|
+
|
10
|
+
spec = eval(File.read('gaku_imex.gemspec'))
|
11
|
+
|
12
|
+
Gem::PackageTask.new(spec) do |p|
|
13
|
+
p.gem_spec = spec
|
14
|
+
end
|
15
|
+
|
16
|
+
desc "Release to gemcutter"
|
17
|
+
task :release => :package do
|
18
|
+
require 'rake/gemcutter'
|
19
|
+
Rake::Gemcutter::Tasks.new(spec).define
|
20
|
+
Rake::Task['gem:push'].invoke
|
21
|
+
end
|
22
|
+
|
23
|
+
desc "Generates a dummy app for testing"
|
24
|
+
task :test_app do
|
25
|
+
ENV['LIB_NAME'] = 'gaku_imex'
|
26
|
+
Rake::Task['common:test_app'].invoke
|
27
|
+
end
|
@@ -0,0 +1,74 @@
|
|
1
|
+
module Gaku
|
2
|
+
class Admin::ImportFilesController < Admin::BaseController
|
3
|
+
|
4
|
+
respond_to :js
|
5
|
+
|
6
|
+
skip_authorization_check
|
7
|
+
|
8
|
+
before_action :set_import_file, only: %i( destroy import check )
|
9
|
+
|
10
|
+
def index
|
11
|
+
@import_files = Gaku::ImportFile.all
|
12
|
+
set_count
|
13
|
+
respond_with @import_files
|
14
|
+
end
|
15
|
+
|
16
|
+
def new
|
17
|
+
@import_file = Gaku::ImportFile.new
|
18
|
+
respond_with @import_file
|
19
|
+
end
|
20
|
+
|
21
|
+
def create
|
22
|
+
@import_file = Gaku::ImportFile.create(import_params)
|
23
|
+
set_count
|
24
|
+
respond_with @import_file
|
25
|
+
end
|
26
|
+
|
27
|
+
def destroy
|
28
|
+
@import_file.destroy!
|
29
|
+
set_count
|
30
|
+
respond_with @import_file
|
31
|
+
end
|
32
|
+
|
33
|
+
def import
|
34
|
+
@import_file.import
|
35
|
+
flash.now[:notice] = t(:'import_file.importing', type: @import_file.importer_type)
|
36
|
+
respond_with @import_file
|
37
|
+
end
|
38
|
+
|
39
|
+
def check
|
40
|
+
@created_students = Gaku::Student.where(id: created_students)
|
41
|
+
@duplicated_students = Gaku::Student.where(id: duplicated_students )
|
42
|
+
@not_saved_students = not_saved_students
|
43
|
+
|
44
|
+
respond_with @import_file
|
45
|
+
end
|
46
|
+
|
47
|
+
private
|
48
|
+
|
49
|
+
def set_import_file
|
50
|
+
@import_file = Gaku::ImportFile.find(params[:id])
|
51
|
+
end
|
52
|
+
|
53
|
+
def import_params
|
54
|
+
params.require(:import_file).permit(:data_file, :importer_type)
|
55
|
+
end
|
56
|
+
|
57
|
+
def set_count
|
58
|
+
@count = Gaku::ImportFile.count
|
59
|
+
end
|
60
|
+
|
61
|
+
def created_students
|
62
|
+
$redis.lrange("import_file:#{@import_file.id}:created", 0, -1)
|
63
|
+
end
|
64
|
+
|
65
|
+
def duplicated_students
|
66
|
+
$redis.lrange("import_file:#{@import_file.id}:duplicated", 0, -1)
|
67
|
+
end
|
68
|
+
|
69
|
+
def not_saved_students
|
70
|
+
$redis.lrange("import_file:#{@import_file.id}:not_saved", 0, -1)
|
71
|
+
end
|
72
|
+
|
73
|
+
end
|
74
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
class Gaku::Students::ReportsController < Gaku::GakuController
|
2
|
+
respond_to :pdf
|
3
|
+
|
4
|
+
|
5
|
+
def index
|
6
|
+
@student = Gaku::Student.find(params[:student_id])
|
7
|
+
@school = Gaku::School.primary
|
8
|
+
@guardian = @student.guardians.first
|
9
|
+
|
10
|
+
respond_to do |format|
|
11
|
+
format.pdf do
|
12
|
+
send_data render_to_string, filename: "student_#{@student.id}.pdf",
|
13
|
+
type: 'application/pdf',
|
14
|
+
disposition: 'inline'
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
module Gaku
|
2
|
+
class ImportFile < ActiveRecord::Base
|
3
|
+
|
4
|
+
validates :data_file, :importer_type, presence: true
|
5
|
+
|
6
|
+
has_attached_file :data_file
|
7
|
+
|
8
|
+
Types = %w( students )
|
9
|
+
|
10
|
+
def import
|
11
|
+
case importer_type
|
12
|
+
when 'students'
|
13
|
+
klass = "Gaku::Importers::#{importer_type.capitalize}Worker".constantize
|
14
|
+
klass.perform_async(id, file_absolute_path)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
def file_absolute_path
|
19
|
+
"#{Rails.root}/public#{data_file.url(:original, false)}"
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'csv'
|
2
|
+
|
3
|
+
module Gaku
|
4
|
+
Student.class_eval do
|
5
|
+
|
6
|
+
def self.as_csv
|
7
|
+
CSV.generate do |csv|
|
8
|
+
csv << csv_column_fields
|
9
|
+
all.each { |student| csv << student.attributes.values_at(*csv_column_fields) }
|
10
|
+
end
|
11
|
+
end
|
12
|
+
|
13
|
+
def as_csv
|
14
|
+
CSV.generate do |csv|
|
15
|
+
csv << self.class.csv_column_fields
|
16
|
+
csv << self.attributes.values_at(*self.class.csv_column_fields)
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
# private
|
21
|
+
|
22
|
+
def self.csv_column_fields
|
23
|
+
%w(
|
24
|
+
name surname middle_name
|
25
|
+
name_reading surname_reading middle_name_reading
|
26
|
+
serial_id foreign_id_code
|
27
|
+
gender birth_date admitted national_registration_code
|
28
|
+
)
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":"0.7.7.1","finger-print":-1592353449,"config":{"title":"\u6307\u5c0e\u8981\u9332\u30c6\u30b9\u30c8","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"40","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><g class=\"canvas\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"536.2\" height=\"169.5\" x=\"49\" y=\"652.3\" id=\"goog_995882599\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"536.2\" height=\"689.8\" x=\"49\" y=\"132\" id=\"goog_995882600\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"5\" x-display=\"true\" x-id=\"\" font-size=\"14\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"536.2\" x-height=\"16\" x-left=\"49\" x-top=\"11\" x-valign=\"center\" x-line-height=\"14\" x-line-height-ratio=\"1\" id=\"goog_995882601\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"536.2\" height=\"16\" x=\"49\" y=\"11\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"317.1\" y=\"23\">Student Record</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"217\" x-height=\"12\" x-left=\"43\" x-top=\"89\" id=\"goog_995882602\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"217\" height=\"12\" x=\"43\" y=\"89\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"43\" y=\"99\">(Information from School Register)</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"137.1\" x-height=\"25.5\" x-left=\"298.3\" x-top=\"111.9\" id=\"goog_995882603\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"137.1\" height=\"25.5\" x=\"298.3\" y=\"111.9\"></rect></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"536.2\" height=\"23\" x=\"49\" y=\"112.7\" id=\"goog_995882604\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"8\" x-display=\"true\" x-id=\"\" font-size=\"11\" font-family=\"Courier New\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"536.2\" x-height=\"14.8\" x-left=\"49\" x-top=\"117\" x-valign=\"center\" id=\"goog_995882605\" x-line-height=\"7\" x-line-height-ratio=\"1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"536.2\" height=\"14.8\" x=\"49\" y=\"117\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"317.1\" y=\"126.9\">Student Information</text></g><line stroke=\"#000000\" stroke-width=\"0.5\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"67.3\" x2=\"316.6\" y1=\"188\" y2=\"188\" id=\"goog_995882606\"></line><line stroke=\"#000000\" stroke-width=\"0.5\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"67.3\" x2=\"316.6\" y1=\"212.9\" y2=\"212.9\" id=\"goog_995882607\"></line><line stroke=\"#000000\" stroke-width=\"0.5\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"67.3\" x2=\"67.3\" y1=\"135.8\" y2=\"554.2\" id=\"goog_995882608\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"49\" x2=\"316.6\" y1=\"307.5\" y2=\"307.5\" id=\"goog_995882609\"></line><line stroke=\"#000000\" stroke-width=\"0.5\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"67.3\" x2=\"316.6\" y1=\"361\" y2=\"361\" id=\"goog_995882610\"></line><rect stroke=\"#000000\" stroke-width=\"0.5\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"267.6\" height=\"90.7\" x=\"49\" y=\"463.5\" id=\"goog_995882611\"></rect><rect stroke=\"#000000\" stroke-width=\"0.5\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"268.6\" height=\"72.1\" x=\"316.6\" y=\"208.6\" id=\"goog_995882612\"></rect><rect stroke=\"#000000\" stroke-width=\"0.5\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"268.6\" height=\"68.9\" x=\"316.6\" y=\"355.8\" id=\"goog_995882613\"></rect><rect stroke=\"#000000\" stroke-width=\"0.5\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"268.6\" height=\"90.6\" x=\"316.6\" y=\"463.6\" id=\"goog_995882614\"></rect><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"377.5\" x2=\"377.5\" y1=\"135.8\" y2=\"554.2\" id=\"goog_995882615\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"316.6\" x2=\"316.6\" y1=\"135.8\" y2=\"554.2\" id=\"goog_995882616\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"106.9\" x2=\"106.9\" y1=\"135.8\" y2=\"554.2\" id=\"goog_995882617\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"17\" x-height=\"167.8\" x-left=\"51\" x-top=\"138.8\" x-valign=\"center\" id=\"goog_995882618\" x-line-height=\"15\" x-line-height-ratio=\"1.5\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"17\" height=\"167.8\" x=\"51\" y=\"138.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"59.5\" y=\"180.7\">S</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"59.5\" y=\"195.7\">t</text><text class=\"s-text-l2\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"59.5\" y=\"210.7\">u</text><text class=\"s-text-l3\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"59.5\" y=\"225.7\">d</text><text class=\"s-text-l4\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"59.5\" y=\"240.7\">e</text><text class=\"s-text-l5\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"59.5\" y=\"255.7\">n</text><text class=\"s-text-l6\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"59.5\" y=\"270.7\">t</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"37.3\" x-height=\"14.8\" x-left=\"68\" x-top=\"166\" x-line-height=\"10\" x-line-height-ratio=\"1\" x-valign=\"center\" id=\"goog_995882619\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"37.3\" height=\"14.8\" x=\"68\" y=\"166\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"86.7\" y=\"176.4\">Name</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" font-size=\"9\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"37.7\" x-height=\"9\" x-left=\"68.3\" x-top=\"144\" x-valign=\"center\" id=\"goog_995882620\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"37.7\" height=\"9\" x=\"68.3\" y=\"144\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"87.2\" y=\"151\">Reading</text></g><line stroke=\"#000000\" stroke-width=\"0.5\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"245.1\" x2=\"245.1\" y1=\"188.2\" y2=\"213\" id=\"goog_995882621\"></line><line stroke=\"#000000\" stroke-width=\"0.5\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"280.9\" x2=\"280.9\" y1=\"187.9\" y2=\"212.9\" id=\"goog_995882622\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"9\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"37.2\" x-height=\"9.5\" x-left=\"69.3\" x-top=\"196\" x-valign=\"center\" id=\"goog_995882623\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"37.2\" height=\"9.5\" x=\"69.3\" y=\"196\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"87.9\" y=\"203.3\">Birth</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"12\" font-family=\"Courier New\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"35.5\" x-height=\"12.6\" x-left=\"245.6\" x-top=\"194.7\" x-valign=\"center\" id=\"goog_995882624\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"35.5\" height=\"12.6\" x=\"245.6\" y=\"194.7\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"263.4\" y=\"203.5\">Sex</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"41.3\" x-height=\"90.4\" x-left=\"67\" x-top=\"214.2\" x-valign=\"center\" id=\"goog_995882625\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"41.3\" height=\"90.4\" x=\"67\" y=\"214.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"87.7\" y=\"257.4\">Current</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"87.7\" y=\"267.4\">Address</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"13.5\" x-height=\"151.4\" x-left=\"51.9\" x-top=\"309.3\" x-valign=\"center\" id=\"goog_995882626\" x-line-height=\"15\" x-line-height-ratio=\"1.5\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"13.5\" height=\"151.4\" x=\"51.9\" y=\"309.3\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"58.7\" y=\"335.5\">G</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"58.7\" y=\"350.5\">u</text><text class=\"s-text-l2\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"58.7\" y=\"365.5\">a</text><text class=\"s-text-l3\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"58.7\" y=\"380.5\">r</text><text class=\"s-text-l4\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"58.7\" y=\"395.5\">d</text><text class=\"s-text-l5\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"58.7\" y=\"410.5\">i</text><text class=\"s-text-l6\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"58.7\" y=\"425.5\">a</text><text class=\"s-text-l7\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"58.7\" y=\"440.5\">n</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"58\" x-height=\"25.5\" x-left=\"49\" x-top=\"499\" x-line-height=\"12\" x-line-height-ratio=\"1.2\" id=\"goog_995882630\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"58\" height=\"25.5\" x=\"49\" y=\"499\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78\" y=\"507\">Educational</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78\" y=\"519\">History</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60.4\" x-height=\"72.1\" x-left=\"317.6\" x-top=\"136.2\" x-valign=\"center\" id=\"goog_995882631\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60.4\" height=\"72.1\" x=\"317.6\" y=\"136.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.8\" y=\"175.8\">Admitted</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"61\" x-height=\"70.8\" x-left=\"317.6\" x-top=\"208.9\" x-valign=\"center\" id=\"goog_995882632\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"61\" height=\"70.8\" x=\"317.6\" y=\"208.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"348.1\" y=\"247.3\">Transferred</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"58.9\" x-height=\"74.4\" x-left=\"317.6\" x-top=\"281.4\" x-valign=\"center\" id=\"goog_995882633\" x-line-height=\"11\" x-line-height-ratio=\"1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"58.9\" height=\"74.4\" x=\"317.6\" y=\"281.4\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.1\" y=\"316.6\">Left/</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.1\" y=\"327.6\">Expelled</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"student_name\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":113.2,\"y\":162,\"width\":196.6,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":113.2,\"y\":175,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_995882634\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"student_name\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"196.6\" x-height=\"12\" x-left=\"113.2\" x-top=\"162\" x-overflow=\"fit\" id=\"goog_995882634\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"12\" x=\"113.2\" y=\"162\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"115.2\" y=\"173\">student_name</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"student_name_reading\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":113.2,\"y\":138,\"width\":196.6,\"height\":9},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":113.2,\"y\":148,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"9\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_995882635\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"student_name_reading\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"9\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"196.6\" x-height=\"9\" x-left=\"113.2\" x-top=\"138\" id=\"goog_995882635\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"9\" x=\"113.2\" y=\"138\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"115.2\" y=\"149\">student_name_reading</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"birth_date\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":113.2,\"y\":195,\"width\":125.6,\"height\":9},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":113.2,\"y\":205,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"9\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_995882636\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"birth_date\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"9\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"125.6\" x-height=\"9\" x-left=\"113.2\" x-top=\"195\" id=\"goog_995882636\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"125.6\" height=\"9\" x=\"113.2\" y=\"195\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"115.2\" y=\"206\">birth_date</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"gender\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":288.6,\"y\":194.2,\"width\":20.3,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":298.8,\"y\":207.2,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"middle\",\"text-decoration\":\"none\",\"id\":\"goog_995882637\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"gender\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"20.3\" x-height=\"12\" x-left=\"288.6\" x-top=\"194.2\" id=\"goog_995882637\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"20.3\" height=\"12\" x=\"288.6\" y=\"194.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"290.6\" y=\"205.2\">gender</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"student_address\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":113.2,\"y\":218.3,\"width\":196.6,\"height\":82.6},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":113.2,\"y\":218.3,\"width\":196.6,\"height\":82.6,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_995882638\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"student_address\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"196.6\" x-height=\"82.6\" x-left=\"113.2\" x-top=\"218.3\" id=\"goog_995882638\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"82.6\" x=\"113.2\" y=\"218.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"115.2\" y=\"229.3\">student_address</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"guardian_name\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":113.7,\"y\":334,\"width\":196.6,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":113.7,\"y\":347,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_995882639\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"guardian_name\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"196.6\" x-height=\"12\" x-left=\"113.7\" x-top=\"334\" id=\"goog_995882639\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"12\" x=\"113.7\" y=\"334\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"115.7\" y=\"345\">guardian_name</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"guardian_name_reading\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":113.7,\"y\":310,\"width\":196.6,\"height\":9},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":113.7,\"y\":320,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"9\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_995882640\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"guardian_name_reading\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"9\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"196.6\" x-height=\"9\" x-left=\"113.7\" x-top=\"310\" id=\"goog_995882640\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"9\" x=\"113.7\" y=\"310\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"115.7\" y=\"321\">guardian_name_reading</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"guardian_address\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":113.2,\"y\":363,\"width\":196.6,\"height\":94.3},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":113.2,\"y\":363,\"width\":196.6,\"height\":94.3,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_995882641\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"guardian_address\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"196.6\" x-height=\"94.3\" x-left=\"113.2\" x-top=\"363\" id=\"goog_995882641\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"94.3\" x=\"113.2\" y=\"363\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"115.2\" y=\"374\">guardian_address</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"9\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"58\" x-height=\"63\" x-left=\"49\" x-top=\"565\" x-valign=\"center\" x-line-height=\"9\" x-line-height-ratio=\"1\" id=\"goog_995882642\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"58\" height=\"63\" x=\"49\" y=\"565\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78\" y=\"585.5\">School</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78\" y=\"594.5\">Name</text><text class=\"s-text-l2\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78\" y=\"603.5\">and</text><text class=\"s-text-l3\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78\" y=\"612.5\">Address</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"11\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"58.9\" x-height=\"60.2\" x-left=\"317.6\" x-top=\"360.2\" id=\"goog_995882643\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"58.9\" height=\"60.2\" x=\"317.6\" y=\"360.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.1\" y=\"393.8\">Exchange</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"11\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"58.9\" x-height=\"11.1\" x-left=\"317.6\" x-top=\"439\" id=\"goog_995882644\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"58.9\" height=\"11.1\" x=\"317.6\" y=\"439\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.1\" y=\"448.1\">Graduated</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"10\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"59\" x-height=\"89.5\" x-left=\"317.6\" x-top=\"463.7\" x-line-height=\"10\" x-line-height-ratio=\"1\" id=\"goog_995882645\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"59\" height=\"89.5\" x=\"317.6\" y=\"463.7\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.1\" y=\"501.5\">Post Grad.</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.1\" y=\"511.5\">School /</text><text class=\"s-text-l2\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.1\" y=\"521.5\">Occupation</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"history_data\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":112.7,\"y\":469,\"width\":198.4,\"height\":35.3},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":112.7,\"y\":469,\"width\":198.4,\"height\":35.3,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_995882646\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"history_data\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"198.4\" x-height=\"35.3\" x-left=\"112.7\" x-top=\"469\" id=\"goog_995882646\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"198.4\" height=\"35.3\" x=\"112.7\" y=\"469\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"114.7\" y=\"480\">history_data</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"school_name\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":114,\"y\":563,\"width\":465.5,\"height\":11},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":114,\"y\":575,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882648\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"school_name\" x-width=\"465.5\" x-height=\"11\" x-left=\"114\" x-top=\"563\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882648\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"465.5\" height=\"11\" x=\"114\" y=\"563\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"116\" y=\"574\">school_name</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"school_address\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":114,\"y\":580,\"width\":465.5,\"height\":45},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":114,\"y\":580,\"width\":465.5,\"height\":45,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882649\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"school_address\" x-width=\"465.5\" x-height=\"45\" x-left=\"114\" x-top=\"580\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882649\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"465.5\" height=\"45\" x=\"114\" y=\"580\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"116\" y=\"591\">school_address</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"school_course\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":114,\"y\":634,\"width\":465.5,\"height\":11},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":114,\"y\":646,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882650\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"school_course\" x-width=\"465.5\" x-height=\"11\" x-left=\"114\" x-top=\"634\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882650\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"465.5\" height=\"11\" x=\"114\" y=\"634\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"116\" y=\"645\">school_course</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"admitted\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":383.2,\"y\":139.6,\"width\":196.6,\"height\":64.5},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":383.2,\"y\":139.6,\"width\":196.6,\"height\":64.5,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882651\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"admitted\" x-width=\"196.6\" x-height=\"64.5\" x-left=\"383.2\" x-top=\"139.6\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882651\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"64.5\" x=\"383.2\" y=\"139.6\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"385.2\" y=\"150.6\">admitted</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"transferred\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":383.2,\"y\":212.4,\"width\":196.6,\"height\":64.5},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":383.2,\"y\":212.4,\"width\":196.6,\"height\":64.5,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882652\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"transferred\" x-width=\"196.6\" x-height=\"64.5\" x-left=\"383.2\" x-top=\"212.4\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882652\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"64.5\" x=\"383.2\" y=\"212.4\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"385.2\" y=\"223.4\">transferred</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"left_school\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":383.2,\"y\":284.3,\"width\":196.6,\"height\":67},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":383.2,\"y\":284.3,\"width\":196.6,\"height\":67,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882653\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"left_school\" x-width=\"196.6\" x-height=\"67\" x-left=\"383.2\" x-top=\"284.3\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882653\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"67\" x=\"383.2\" y=\"284.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"385.2\" y=\"295.3\">left_school</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"exchange\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":383.2,\"y\":359.4,\"width\":196.6,\"height\":61},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":383.2,\"y\":359.4,\"width\":196.6,\"height\":61,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882654\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"exchange\" x-width=\"196.6\" x-height=\"61\" x-left=\"383.2\" x-top=\"359.4\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882654\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"61\" x=\"383.2\" y=\"359.4\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"385.2\" y=\"370.4\">exchange</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"graduated\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":383.2,\"y\":439,\"width\":196.6,\"height\":11},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":383.2,\"y\":451,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882655\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"graduated\" x-width=\"196.6\" x-height=\"11\" x-left=\"383.2\" x-top=\"439\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882655\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"11\" x=\"383.2\" y=\"439\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"385.2\" y=\"450\">graduated</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"post_grad\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":383.2,\"y\":469.5,\"width\":196.6,\"height\":80.6},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":383.2,\"y\":469.5,\"width\":196.6,\"height\":80.6,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882656\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"post_grad\" x-width=\"196.6\" x-height=\"80.6\" x-left=\"383.2\" x-top=\"469.5\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882656\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"80.6\" x=\"383.2\" y=\"469.5\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"385.2\" y=\"480.5\">post_grad</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"6\" x-line-height=\"9\" x-line-height-ratio=\"1.5\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"41.5\" x-height=\"6\" x-left=\"57.5\" x-top=\"619\" id=\"goog_995882657\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"41.5\" height=\"6\" x=\"57.5\" y=\"619\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78.3\" y=\"624\">(Campus)</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"7\" x-line-height=\"10.5\" x-line-height-ratio=\"1.5\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"54.1\" x-height=\"8\" x-left=\"51.9\" x-top=\"637\" id=\"goog_995882658\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"54.1\" height=\"8\" x=\"51.9\" y=\"637\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"79\" y=\"643.5\">Department</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"536.2\" height=\"169.6\" x=\"49\" y=\"652.2\" id=\"goog_995882659\"></rect><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"49\" x2=\"585.2\" y1=\"554\" y2=\"554\" id=\"goog_995882660\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"585.2\" y1=\"558\" y2=\"558\" x1=\"49\" id=\"goog_995882661\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"585.2\" y1=\"656\" y2=\"656\" x1=\"49\" id=\"goog_995882662\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"107\" x2=\"107\" y1=\"551\" y2=\"821.8\" id=\"goog_995882663\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"49\" x2=\"585.2\" y1=\"674\" y2=\"674\" id=\"goog_995882664\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" font-size=\"8\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60\" x-height=\"9\" x-left=\"49\" x-top=\"661\" id=\"goog_995882665\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"9\" x=\"49\" y=\"661\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"79\" y=\"667\">Calendar Year</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"116\" x-height=\"9.4\" x-left=\"107.6\" x-top=\"661\" id=\"goog_995882666\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"116\" height=\"9.4\" x=\"107.6\" y=\"661\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"none\" text-decoration=\"none\" x=\"165.6\" y=\"668\"> </text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"224.8\" x2=\"224.8\" y1=\"656\" y2=\"821.8\" id=\"goog_995882667\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"343.6\" y1=\"656\" y2=\"821.8\" x1=\"343.6\" id=\"goog_995882668\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"467.2\" y1=\"656\" y2=\"821.8\" x1=\"467.2\" id=\"goog_995882669\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"585.2\" y1=\"694\" y2=\"694\" x1=\"49\" id=\"goog_995882673\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"8\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"32\" x-height=\"9.4\" x-left=\"47.3\" x-top=\"680.5\" id=\"goog_995882674\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"32\" height=\"9.4\" x=\"47.3\" y=\"680.5\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"63.3\" y=\"686.5\">Section</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"75.1\" x2=\"82.8\" y1=\"674.6\" y2=\"693.6\" id=\"goog_995882675\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"20\" x-height=\"9.4\" x-left=\"85.7\" x-top=\"680\" id=\"goog_995882676\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"20\" height=\"9.4\" x=\"85.7\" y=\"680\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"95.7\" y=\"687\">Year</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"116\" x-height=\"9.4\" x-left=\"107.6\" x-top=\"680\" id=\"goog_995882677\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"116\" height=\"9.4\" x=\"107.6\" y=\"680\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"165.6\" y=\"687.6\">\uff11</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"117.7\" x-height=\"9.4\" x-left=\"225.3\" x-top=\"680\" id=\"goog_995882678\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"117.7\" height=\"9.4\" x=\"225.3\" y=\"680\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"284.2\" y=\"687.6\">\uff12</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"122.8\" x-height=\"9.4\" x-left=\"343.6\" x-top=\"680\" id=\"goog_995882679\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"122.8\" height=\"9.4\" x=\"343.6\" y=\"680\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"405\" y=\"687.6\">\uff13</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"117.1\" x-height=\"9.4\" x-left=\"468.1\" x-top=\"680\" id=\"goog_995882680\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"117.1\" height=\"9.4\" x=\"468.1\" y=\"680\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"526.7\" y=\"687.6\">\uff14</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"585.2\" y1=\"694\" y2=\"694\" x1=\"49\" id=\"goog_995882681\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"585.2\" y1=\"755\" y2=\"755\" x1=\"49\" id=\"goog_995882682\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"2\" x-display=\"true\" x-id=\"\" font-size=\"8\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"57\" x-height=\"20\" x-left=\"50\" x-top=\"716\" x-valign=\"center\" id=\"goog_995882683\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"57\" height=\"20\" x=\"50\" y=\"716\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78.5\" y=\"724\">Serving</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78.5\" y=\"732\">Principal</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"10\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"57\" x-height=\"30\" x-left=\"50\" x-top=\"780\" id=\"goog_995882684\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"57\" height=\"30\" x=\"50\" y=\"780\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78.5\" y=\"788\">Homeroom</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78.5\" y=\"798\">Teacher</text><text class=\"s-text-l2\" xml:space=\"preserve\" stroke=\"none\" fill=\"none\" text-decoration=\"none\" x=\"78.5\" y=\"808\"> </text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"245.1\" height=\"60\" x=\"340.1\" y=\"40\" id=\"goog_995882686\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"7\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"26\" x-height=\"9.4\" x-left=\"340.1\" x-top=\"44\" id=\"goog_995882687\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"26\" height=\"9.4\" x=\"340.1\" y=\"44\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"353.1\" y=\"50\">Section</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"20\" x-height=\"9.4\" x-left=\"379\" x-top=\"44\" id=\"goog_995882688\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"20\" height=\"9.4\" x=\"379\" y=\"44\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"389\" y=\"51\">Year</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"44\" x-height=\"9.4\" x-left=\"403\" x-top=\"44\" id=\"goog_995882689\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"44\" height=\"9.4\" x=\"403\" y=\"44\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"425\" y=\"51.6\">\uff11</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"44.7\" x-height=\"9.4\" x-left=\"448.6\" x-top=\"44\" id=\"goog_995882690\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"44.7\" height=\"9.4\" x=\"448.6\" y=\"44\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"471\" y=\"51.6\">\uff12</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"46.6\" x-height=\"9.4\" x-left=\"493.5\" x-top=\"44\" id=\"goog_995882691\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"46.6\" height=\"9.4\" x=\"493.5\" y=\"44\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"516.8\" y=\"51.6\">\uff13</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"44.5\" x-height=\"9.4\" x-left=\"540.7\" x-top=\"44\" id=\"goog_995882692\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"44.5\" height=\"9.4\" x=\"540.7\" y=\"44\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"563\" y=\"51.6\">\uff14</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"402\" x2=\"402\" y1=\"40\" y2=\"100\" id=\"goog_995882693\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"448\" y1=\"40\" y2=\"100\" x1=\"448\" id=\"goog_995882694\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"495\" y1=\"40\" y2=\"100\" x1=\"495\" id=\"goog_995882695\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"541\" y1=\"40\" y2=\"100\" x1=\"541\" id=\"goog_995882696\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"372.6\" y1=\"40.5\" y2=\"54.7\" x1=\"364.6\" id=\"goog_995882697\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"340.1\" x2=\"585.2\" y1=\"55\" y2=\"55\" id=\"goog_995882698\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"340.1\" x2=\"585.2\" y1=\"77\" y2=\"77\" id=\"goog_995882699\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"8\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60.3\" x-height=\"23.5\" x-left=\"340.8\" x-top=\"54.5\" id=\"goog_995882700\" x-valign=\"center\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60.3\" height=\"23.5\" x=\"340.8\" y=\"54.5\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"371\" y=\"64.3\">Class /</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"371\" y=\"72.3\">Home Room</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"8\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60.3\" x-height=\"9\" x-left=\"340.8\" x-top=\"85\" id=\"goog_995882701\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60.3\" height=\"9\" x=\"340.8\" y=\"85\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"371\" y=\"94\">Seat #</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"class_and_home_room\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":406,\"y\":62,\"width\":39.7,\"height\":8},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":425.9,\"y\":71,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"8\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"middle\",\"text-decoration\":\"none\",\"id\":\"goog_995882702\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"class_and_home_room\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"8\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"39.7\" x-height=\"8\" x-left=\"406\" x-top=\"62\" id=\"goog_995882702\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"39.7\" height=\"8\" x=\"406\" y=\"62\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"408\" y=\"73\">class_and_home_room</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"seat_num\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":406,\"y\":85,\"width\":39.7,\"height\":8},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":425.9,\"y\":94,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"8\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\",\"id\":\"goog_995882703\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"seat_num\" x-width=\"39.7\" x-height=\"8\" x-left=\"406\" x-top=\"85\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"8\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"truncate\" id=\"goog_995882703\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"39.7\" height=\"8\" x=\"406\" y=\"85\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"408\" y=\"96\">seat_num</text></g>LAYOUT--><line stroke=\"#000000\" stroke-width=\"0.5\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"67.3\" x2=\"316.6\" y1=\"159\" y2=\"159\" id=\"goog_995882704\"></line><line stroke=\"#000000\" stroke-width=\"0.5\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"316.6\" y1=\"332\" y2=\"332\" x1=\"67.3\" id=\"goog_995882705\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" id=\"goog_759495903\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"10\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"39\" x-height=\"90.4\" x-left=\"68\" x-top=\"366.7\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"39\" height=\"90.4\" x=\"68\" y=\"366.7\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"87.5\" y=\"409.9\">Current</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"87.5\" y=\"419.9\">Address</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" id=\"goog_759495904\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"10\" x-line-height=\"10\" x-line-height-ratio=\"1\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"37.3\" x-height=\"14.8\" x-left=\"68\" x-top=\"338.5\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"37.3\" height=\"14.8\" x=\"68\" y=\"338.5\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"86.7\" y=\"348.9\">Name</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" id=\"goog_759495905\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"37.7\" x-height=\"9\" x-left=\"68.3\" x-top=\"316.5\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"37.7\" height=\"9\" x=\"68.3\" y=\"316.5\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"87.2\" y=\"323.5\">Reading</text></g></g></svg>","state":{"layout-guide":[{"type":"x","position":297.1},{"type":"x","position":39},{"type":"x","position":79.3},{"type":"x","position":360.1},{"type":"x","position":259.5},{"type":"y","position":132},{"type":"y","position":66},{"type":"y","position":652.2},{"type":"y","position":159.1},{"type":"y","position":379.1},{"type":"y","position":655.8}]}}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":"0.7.7.1","finger-print":683494470,"config":{"title":"\u6307\u5c0e\u8981\u9332\u30c6\u30b9\u30c8","option":{},"page":{"paper-type":"A4","orientation":"portrait","margin-top":"20","margin-bottom":"20","margin-left":"40","margin-right":"20"}},"svg":"<svg width=\"595.2\" height=\"841.8\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" preserveAspectRatio=\"none\" viewBox=\"0 0 595.2 841.8\"><g class=\"canvas\"><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"536.2\" height=\"169.5\" x=\"49\" y=\"652.3\" id=\"goog_995882599\"></rect><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"536.2\" height=\"689.8\" x=\"49\" y=\"132\" id=\"goog_995882600\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"5\" x-display=\"true\" x-id=\"\" font-size=\"14\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"536.2\" x-height=\"16\" x-left=\"49\" x-top=\"11\" x-valign=\"center\" x-line-height=\"14\" x-line-height-ratio=\"1\" id=\"goog_995882601\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"536.2\" height=\"16\" x=\"49\" y=\"11\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"317.1\" y=\"23.9\">\u9ad8\u7b49\u5b66\u6821 \u751f\u5f92\u6307\u5c0e\u8981\u9332</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"120\" x-height=\"12\" x-left=\"43\" x-top=\"89\" id=\"goog_995882602\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"120\" height=\"12\" x=\"43\" y=\"89\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"43\" y=\"99.2\">\uff08\u5b66\u7c4d\u306b\u95a2\u3059\u308b\u8a18\u9332\uff09</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"18\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"137.1\" x-height=\"25.5\" x-left=\"298.3\" x-top=\"111.9\" id=\"goog_995882603\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"137.1\" height=\"25.5\" x=\"298.3\" y=\"111.9\"></rect></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"536.2\" height=\"23\" x=\"49\" y=\"112.7\" id=\"goog_995882604\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"8\" x-display=\"true\" x-id=\"\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"536.2\" x-height=\"14.8\" x-left=\"49\" x-top=\"117\" x-valign=\"center\" id=\"goog_995882605\" x-line-height=\"11\" x-line-height-ratio=\"1\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"536.2\" height=\"14.8\" x=\"49\" y=\"117\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"317.1\" y=\"128.2\">\u5b66\u7c4d\u306e\u8a18\u9332</text></g><line stroke=\"#000000\" stroke-width=\"0.5\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"67.3\" x2=\"316.6\" y1=\"188\" y2=\"188\" id=\"goog_995882606\"></line><line stroke=\"#000000\" stroke-width=\"0.5\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"67.3\" x2=\"316.6\" y1=\"212.9\" y2=\"212.9\" id=\"goog_995882607\"></line><line stroke=\"#000000\" stroke-width=\"0.5\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"67.3\" x2=\"67.3\" y1=\"135.8\" y2=\"554.2\" id=\"goog_995882608\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"49\" x2=\"316.6\" y1=\"307.5\" y2=\"307.5\" id=\"goog_995882609\"></line><line stroke=\"#000000\" stroke-width=\"0.5\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"67.3\" x2=\"316.6\" y1=\"361\" y2=\"361\" id=\"goog_995882610\"></line><rect stroke=\"#000000\" stroke-width=\"0.5\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"267.6\" height=\"90.7\" x=\"49\" y=\"463.5\" id=\"goog_995882611\"></rect><rect stroke=\"#000000\" stroke-width=\"0.5\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"268.6\" height=\"72.1\" x=\"316.6\" y=\"208.6\" id=\"goog_995882612\"></rect><rect stroke=\"#000000\" stroke-width=\"0.5\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"268.6\" height=\"68.9\" x=\"316.6\" y=\"355.8\" id=\"goog_995882613\"></rect><rect stroke=\"#000000\" stroke-width=\"0.5\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"268.6\" height=\"90.6\" x=\"316.6\" y=\"463.6\" id=\"goog_995882614\"></rect><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"377.5\" x2=\"377.5\" y1=\"135.8\" y2=\"554.2\" id=\"goog_995882615\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"316.6\" x2=\"316.6\" y1=\"135.8\" y2=\"554.2\" id=\"goog_995882616\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"106.9\" x2=\"106.9\" y1=\"135.8\" y2=\"554.2\" id=\"goog_995882617\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"12.9\" x-height=\"181.6\" x-left=\"51.9\" x-top=\"138.8\" x-valign=\"center\" id=\"goog_995882618\" x-line-height=\"15\" x-line-height-ratio=\"1.5\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"12.9\" height=\"181.6\" x=\"51.9\" y=\"138.8\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"58.4\" y=\"225.6\">\u751f</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"58.4\" y=\"240.6\">\u5f92</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"6\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"36.7\" x-height=\"14.8\" x-left=\"68.3\" x-top=\"166\" x-line-height=\"10\" x-line-height-ratio=\"1\" x-valign=\"center\" id=\"goog_995882619\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"36.7\" height=\"14.8\" x=\"68.3\" y=\"166\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"86.7\" y=\"176.9\">\u6c0f\u540d</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" font-size=\"8\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"37.7\" x-height=\"8.4\" x-left=\"68.3\" x-top=\"144\" x-valign=\"center\" id=\"goog_995882620\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"37.7\" height=\"8.4\" x=\"68.3\" y=\"144\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"87.2\" y=\"151\">\u3075\u308a\u304c\u306a</text></g><line stroke=\"#000000\" stroke-width=\"0.5\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"245.1\" x2=\"245.1\" y1=\"188.2\" y2=\"213\" id=\"goog_995882621\"></line><line stroke=\"#000000\" stroke-width=\"0.5\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"280.9\" x2=\"280.9\" y1=\"187.9\" y2=\"212.9\" id=\"goog_995882622\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"9\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"37.2\" x-height=\"9.5\" x-left=\"69.3\" x-top=\"196\" x-valign=\"center\" id=\"goog_995882623\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"37.2\" height=\"9.5\" x=\"69.3\" y=\"196\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"87.9\" y=\"203.9\">\u751f\u5e74\u6708\u65e5</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"25.6\" x-height=\"12.6\" x-left=\"250.8\" x-top=\"194.2\" x-valign=\"center\" id=\"goog_995882624\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"25.6\" height=\"12.6\" x=\"250.8\" y=\"194.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"263.6\" y=\"204.7\">\u6027\u5225</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"36.3\" x-height=\"90.4\" x-left=\"69.3\" x-top=\"213.7\" x-valign=\"center\" id=\"goog_995882625\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"36.3\" height=\"90.4\" x=\"69.3\" y=\"213.7\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"87.4\" y=\"262.7\">\u73fe\u4f4f\u6240</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"13.5\" x-height=\"151.4\" x-left=\"51.9\" x-top=\"309.3\" x-valign=\"center\" id=\"goog_995882626\" x-line-height=\"15\" x-line-height-ratio=\"1.5\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"13.5\" height=\"151.4\" x=\"51.9\" y=\"309.3\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"58.7\" y=\"373.5\">\u4fdd</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"58.7\" y=\"388.5\">\u8b77</text><text class=\"s-text-l2\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"58.7\" y=\"403.5\">\u8005</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"8\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"38.1\" x-height=\"9.5\" x-left=\"68.3\" x-top=\"316\" x-valign=\"center\" x-line-height=\"0\" x-line-height-ratio=\"0\" id=\"goog_995882627\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"38.1\" height=\"9.5\" x=\"68.3\" y=\"316\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"87.4\" y=\"323.6\">\u3075\u308a\u304c\u306a</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"6\" x-display=\"true\" x-id=\"\" font-size=\"10\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"38.6\" x-height=\"14\" x-left=\"67.3\" x-top=\"339\" x-line-height=\"10\" x-line-height-ratio=\"1\" x-valign=\"center\" id=\"goog_995882628\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"38.6\" height=\"14\" x=\"67.3\" y=\"339\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"86.6\" y=\"349.5\">\u6c0f\u540d</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"38.2\" x-height=\"105.3\" x-left=\"68.2\" x-top=\"357.5\" x-valign=\"center\" id=\"goog_995882629\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"38.2\" height=\"105.3\" x=\"68.2\" y=\"357.5\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"87.3\" y=\"414\">\u73fe\u4f4f\u6240</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"1\" x-display=\"true\" x-id=\"\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"57.5\" x-height=\"25.5\" x-left=\"49\" x-top=\"499\" x-line-height=\"13.2\" x-line-height-ratio=\"1.2\" id=\"goog_995882630\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"57.5\" height=\"25.5\" x=\"49\" y=\"499\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"77.8\" y=\"508.3\">\u5165\u5b66\u524d\u306e</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"77.8\" y=\"521.5\">\u7d4c\u6b74</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60.4\" x-height=\"72.1\" x-left=\"317.6\" x-top=\"136.2\" x-valign=\"center\" id=\"goog_995882631\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60.4\" height=\"72.1\" x=\"317.6\" y=\"136.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.8\" y=\"170.6\">\u5165\u5b66\u30fb</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.8\" y=\"181.6\">\u7de8\u5165\u5b66</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"59.4\" x-height=\"70.8\" x-left=\"317.6\" x-top=\"208.9\" x-valign=\"center\" id=\"goog_995882632\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"59.4\" height=\"70.8\" x=\"317.6\" y=\"208.9\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.3\" y=\"248.1\">\u8ee2\u5165\u5b66</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"58.9\" x-height=\"74.4\" x-left=\"317.6\" x-top=\"281.4\" x-valign=\"center\" id=\"goog_995882633\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"58.9\" height=\"74.4\" x=\"317.6\" y=\"281.4\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.1\" y=\"316.9\">\u8ee2\u5b66\u30fb</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.1\" y=\"327.9\">\u9000\u5b66</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"student_name\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":113.2,\"y\":162,\"width\":196.6,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":113.2,\"y\":175,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_995882634\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"student_name\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"196.6\" x-height=\"12\" x-left=\"113.2\" x-top=\"162\" x-overflow=\"fit\" id=\"goog_995882634\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"12\" x=\"113.2\" y=\"162\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"115.2\" y=\"173\">student_name</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"student_name_reading\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":113.2,\"y\":138,\"width\":196.6,\"height\":9},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":113.2,\"y\":148,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"9\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_995882635\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"student_name_reading\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"9\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"196.6\" x-height=\"9\" x-left=\"113.2\" x-top=\"138\" id=\"goog_995882635\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"9\" x=\"113.2\" y=\"138\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"115.2\" y=\"149\">student_name_reading</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"birth_date\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":113.2,\"y\":195,\"width\":125.6,\"height\":9},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":113.2,\"y\":205,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"9\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_995882636\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"birth_date\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"9\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"125.6\" x-height=\"9\" x-left=\"113.2\" x-top=\"195\" id=\"goog_995882636\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"125.6\" height=\"9\" x=\"113.2\" y=\"195\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"115.2\" y=\"206\">birth_date</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"gender\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":288.6,\"y\":194.2,\"width\":20.3,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":298.8,\"y\":207.2,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"middle\",\"text-decoration\":\"none\",\"id\":\"goog_995882637\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"gender\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"20.3\" x-height=\"12\" x-left=\"288.6\" x-top=\"194.2\" id=\"goog_995882637\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"20.3\" height=\"12\" x=\"288.6\" y=\"194.2\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"290.6\" y=\"205.2\">gender</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"student_address\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":113.2,\"y\":218.3,\"width\":196.6,\"height\":82.6},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":113.2,\"y\":218.3,\"width\":196.6,\"height\":82.6,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_995882638\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"student_address\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"196.6\" x-height=\"82.6\" x-left=\"113.2\" x-top=\"218.3\" id=\"goog_995882638\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"82.6\" x=\"113.2\" y=\"218.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"115.2\" y=\"229.3\">student_address</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"guardian_name\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":113.7,\"y\":334,\"width\":196.6,\"height\":12},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":113.7,\"y\":347,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"12\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_995882639\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"guardian_name\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"12\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"196.6\" x-height=\"12\" x-left=\"113.7\" x-top=\"334\" id=\"goog_995882639\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"12\" x=\"113.7\" y=\"334\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"115.7\" y=\"345\">guardian_name</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"guardian_name_reading\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":113.7,\"y\":310,\"width\":196.6,\"height\":9},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":113.7,\"y\":320,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"9\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_995882640\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"guardian_name_reading\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"9\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"196.6\" x-height=\"9\" x-left=\"113.7\" x-top=\"310\" id=\"goog_995882640\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"9\" x=\"113.7\" y=\"310\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"115.7\" y=\"321\">guardian_name_reading</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"guardian_address\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":113.2,\"y\":363,\"width\":196.6,\"height\":94.3},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":113.2,\"y\":363,\"width\":196.6,\"height\":94.3,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_995882641\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"guardian_address\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"196.6\" x-height=\"94.3\" x-left=\"113.2\" x-top=\"363\" id=\"goog_995882641\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"94.3\" x=\"113.2\" y=\"363\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"115.2\" y=\"374\">guardian_address</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"9\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"58\" x-height=\"45\" x-left=\"49\" x-top=\"565\" x-valign=\"center\" x-line-height=\"18\" x-line-height-ratio=\"2\" id=\"goog_995882642\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"58\" height=\"45\" x=\"49\" y=\"565\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78\" y=\"572.6\">\u5b66\u6821\u540d</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78\" y=\"590.6\">\u53ca\u3073</text><text class=\"s-text-l2\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78\" y=\"608.6\">\u6240\u5728\u5730</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"11\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"58.9\" x-height=\"60.2\" x-left=\"317.6\" x-top=\"360.2\" id=\"goog_995882643\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"58.9\" height=\"60.2\" x=\"317.6\" y=\"360.2\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.1\" y=\"394.1\">\u7559\u5b66\u7b49</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"11\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"58.9\" x-height=\"11.1\" x-left=\"317.6\" x-top=\"439\" id=\"goog_995882644\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"58.9\" height=\"11.1\" x=\"317.6\" y=\"439\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.1\" y=\"448.4\">\u5352\u696d</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"11\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"58.9\" x-height=\"33\" x-left=\"317.6\" x-top=\"493\" x-line-height=\"22\" x-line-height-ratio=\"2\" id=\"goog_995882645\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"58.9\" height=\"33\" x=\"317.6\" y=\"493\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.1\" y=\"502.3\">\u9032\u5b66\u5148</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"347.1\" y=\"524.3\">\u5c31\u8077\u5148\u7b49</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"history_data\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":112.7,\"y\":469,\"width\":198.4,\"height\":35.3},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"fit\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":112.7,\"y\":469,\"width\":198.4,\"height\":35.3,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"start\",\"text-decoration\":\"none\",\"id\":\"goog_995882646\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"history_data\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"start\" text-decoration=\"none\" x-width=\"198.4\" x-height=\"35.3\" x-left=\"112.7\" x-top=\"469\" id=\"goog_995882646\" x-overflow=\"fit\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"198.4\" height=\"35.3\" x=\"112.7\" y=\"469\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"114.7\" y=\"480\">history_data</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"school_name\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":114,\"y\":563,\"width\":465.5,\"height\":11},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":114,\"y\":575,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882648\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"school_name\" x-width=\"465.5\" x-height=\"11\" x-left=\"114\" x-top=\"563\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882648\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"465.5\" height=\"11\" x=\"114\" y=\"563\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"116\" y=\"574\">school_name</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"school_address\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":114,\"y\":580,\"width\":465.5,\"height\":45},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":114,\"y\":580,\"width\":465.5,\"height\":45,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882649\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"school_address\" x-width=\"465.5\" x-height=\"45\" x-left=\"114\" x-top=\"580\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882649\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"465.5\" height=\"45\" x=\"114\" y=\"580\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"116\" y=\"591\">school_address</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"school_course\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":114,\"y\":634,\"width\":465.5,\"height\":11},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":114,\"y\":646,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882650\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"school_course\" x-width=\"465.5\" x-height=\"11\" x-left=\"114\" x-top=\"634\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882650\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"465.5\" height=\"11\" x=\"114\" y=\"634\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"116\" y=\"645\">school_course</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"admitted\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":378.6,\"y\":132,\"width\":196.6,\"height\":64.5},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":378.6,\"y\":132,\"width\":196.6,\"height\":64.5,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"10\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882651\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"admitted\" x-width=\"196.6\" x-height=\"64.5\" x-left=\"378.6\" x-top=\"132\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"10\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882651\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"64.5\" x=\"378.6\" y=\"132\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"380.6\" y=\"143\">admitted</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"transferred\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":383.2,\"y\":212.4,\"width\":196.6,\"height\":64.5},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":383.2,\"y\":212.4,\"width\":196.6,\"height\":64.5,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882652\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"transferred\" x-width=\"196.6\" x-height=\"64.5\" x-left=\"383.2\" x-top=\"212.4\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882652\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"64.5\" x=\"383.2\" y=\"212.4\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"385.2\" y=\"223.4\">transferred</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"left_school\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":383.2,\"y\":284.3,\"width\":196.6,\"height\":67},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":383.2,\"y\":284.3,\"width\":196.6,\"height\":67,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882653\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"left_school\" x-width=\"196.6\" x-height=\"67\" x-left=\"383.2\" x-top=\"284.3\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882653\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"67\" x=\"383.2\" y=\"284.3\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"385.2\" y=\"295.3\">left_school</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"exchange\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":383.2,\"y\":359.4,\"width\":196.6,\"height\":61},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":383.2,\"y\":359.4,\"width\":196.6,\"height\":61,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882654\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"exchange\" x-width=\"196.6\" x-height=\"61\" x-left=\"383.2\" x-top=\"359.4\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882654\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"61\" x=\"383.2\" y=\"359.4\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"385.2\" y=\"370.4\">exchange</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"graduated\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":383.2,\"y\":439,\"width\":196.6,\"height\":11},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":383.2,\"y\":451,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882655\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"graduated\" x-width=\"196.6\" x-height=\"11\" x-left=\"383.2\" x-top=\"439\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882655\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"11\" x=\"383.2\" y=\"439\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"385.2\" y=\"450\">graduated</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"post_grad\",\"display\":\"true\",\"desc\":null,\"multiple\":\"true\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":383.2,\"y\":469.5,\"width\":196.6,\"height\":80.6},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"textArea\",\"attrs\":{\"x\":383.2,\"y\":469.5,\"width\":196.6,\"height\":80.6,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"11\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"start\",\"id\":\"goog_995882656\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"true\" x-id=\"post_grad\" x-width=\"196.6\" x-height=\"80.6\" x-left=\"383.2\" x-top=\"469.5\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"11\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" x-overflow=\"truncate\" id=\"goog_995882656\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"196.6\" height=\"80.6\" x=\"383.2\" y=\"469.5\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"385.2\" y=\"480.5\">post_grad</text></g>LAYOUT--><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"6\" x-line-height=\"9\" x-line-height-ratio=\"1.5\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"60\" x-height=\"6\" x-left=\"51.9\" x-top=\"619\" id=\"goog_995882657\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60\" height=\"6\" x=\"51.9\" y=\"619\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"81.9\" y=\"624.1\">(\u5206\u6821\u540d\u30fb\u6240\u5728\u5730\u7b49)</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"7\" x-line-height=\"10.5\" x-line-height-ratio=\"1.5\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"54.1\" x-height=\"8\" x-left=\"51.9\" x-top=\"637\" id=\"goog_995882658\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"54.1\" height=\"8\" x=\"51.9\" y=\"637\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"79\" y=\"643.4\">\u8ab2\u7a0b\u540d\u30fb\u5b66\u79d1\u540d</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"536.2\" height=\"169.6\" x=\"49\" y=\"652.2\" id=\"goog_995882659\"></rect><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"49\" x2=\"585.2\" y1=\"554\" y2=\"554\" id=\"goog_995882660\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"585.2\" y1=\"558\" y2=\"558\" x1=\"49\" id=\"goog_995882661\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"585.2\" y1=\"656\" y2=\"656\" x1=\"49\" id=\"goog_995882662\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"107\" x2=\"107\" y1=\"551\" y2=\"821.8\" id=\"goog_995882663\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"49\" x2=\"585.2\" y1=\"674\" y2=\"674\" id=\"goog_995882664\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"15\" x-display=\"true\" x-id=\"\" font-size=\"9\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"57.4\" x-height=\"9\" x-left=\"49\" x-top=\"661\" id=\"goog_995882665\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"57.4\" height=\"9\" x=\"49\" y=\"661\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"77.7\" y=\"668.6\">\u5e74\u5ea6</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"116\" x-height=\"9.4\" x-left=\"107.6\" x-top=\"661\" id=\"goog_995882666\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"116\" height=\"9.4\" x=\"107.6\" y=\"661\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"165.6\" y=\"668.6\">\u5e73\u6210 25 \u5e74\u5ea6</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"224.8\" x2=\"224.8\" y1=\"656\" y2=\"821.8\" id=\"goog_995882667\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"343.6\" y1=\"656\" y2=\"821.8\" x1=\"343.6\" id=\"goog_995882668\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"467.2\" y1=\"656\" y2=\"821.8\" x1=\"467.2\" id=\"goog_995882669\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"117.7\" x-height=\"9.4\" x-left=\"225.3\" x-top=\"661\" id=\"goog_995882670\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"117.7\" height=\"9.4\" x=\"225.3\" y=\"661\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"284.2\" y=\"668.6\">\u5e73\u6210 \u5e74\u5ea6</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"122.8\" x-height=\"9.4\" x-left=\"343.6\" x-top=\"661\" id=\"goog_995882671\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"122.8\" height=\"9.4\" x=\"343.6\" y=\"661\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"405\" y=\"668.6\">\u5e73\u6210 \u5e74\u5ea6</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"117.1\" x-height=\"9.4\" x-left=\"468.1\" x-top=\"661\" id=\"goog_995882672\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"117.1\" height=\"9.4\" x=\"468.1\" y=\"661\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"526.7\" y=\"668.6\">\u5e73\u6210 \u5e74\u5ea6</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"585.2\" y1=\"694\" y2=\"694\" x1=\"49\" id=\"goog_995882673\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"18.3\" x-height=\"9.4\" x-left=\"53.8\" x-top=\"680\" id=\"goog_995882674\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"18.3\" height=\"9.4\" x=\"53.8\" y=\"680\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"63\" y=\"687.6\">\u533a\u5206</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"75.1\" x2=\"82.8\" y1=\"674.6\" y2=\"693.6\" id=\"goog_995882675\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"18.3\" x-height=\"9.4\" x-left=\"85.7\" x-top=\"680\" id=\"goog_995882676\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"18.3\" height=\"9.4\" x=\"85.7\" y=\"680\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"94.9\" y=\"687.6\">\u5b66\u5e74</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"116\" x-height=\"9.4\" x-left=\"107.6\" x-top=\"680\" id=\"goog_995882677\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"116\" height=\"9.4\" x=\"107.6\" y=\"680\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"165.6\" y=\"687.6\">\uff11</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"117.7\" x-height=\"9.4\" x-left=\"225.3\" x-top=\"680\" id=\"goog_995882678\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"117.7\" height=\"9.4\" x=\"225.3\" y=\"680\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"284.2\" y=\"687.6\">\uff12</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"122.8\" x-height=\"9.4\" x-left=\"343.6\" x-top=\"680\" id=\"goog_995882679\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"122.8\" height=\"9.4\" x=\"343.6\" y=\"680\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"405\" y=\"687.6\">\uff13</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"117.1\" x-height=\"9.4\" x-left=\"468.1\" x-top=\"680\" id=\"goog_995882680\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"117.1\" height=\"9.4\" x=\"468.1\" y=\"680\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"526.7\" y=\"687.6\">\uff14</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"585.2\" y1=\"694\" y2=\"694\" x1=\"49\" id=\"goog_995882681\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"585.2\" y1=\"755\" y2=\"755\" x1=\"49\" id=\"goog_995882682\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"2\" x-display=\"true\" x-id=\"\" font-size=\"8\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"57\" x-height=\"20\" x-left=\"50\" x-top=\"716\" x-valign=\"center\" id=\"goog_995882683\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"57\" height=\"20\" x=\"50\" y=\"716\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78.5\" y=\"728.8\">\u6821\u9577\u6c0f\u540d\u5370</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"8\" text-anchor=\"middle\" x-valign=\"center\" text-decoration=\"none\" x-width=\"57\" x-height=\"20\" x-left=\"50\" x-top=\"780\" id=\"goog_995882684\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"57\" height=\"20\" x=\"50\" y=\"780\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78.5\" y=\"788.8\">\u30db\u30fc\u30e0\u30eb\u30fc\u30e0</text><text class=\"s-text-l1\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"78.5\" y=\"796.8\">\u62c5\u4efb\u8005\u6c0f\u540d\u5370</text></g><rect stroke=\"#000000\" stroke-width=\"1\" fill=\"#FFFFFF\" fill-opacity=\"1\" class=\"s-rect\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" rx=\"0\" ry=\"0\" width=\"245.1\" height=\"60\" x=\"340.1\" y=\"40\" id=\"goog_995882686\"></rect><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"19\" x-height=\"9.4\" x-left=\"344.5\" x-top=\"44\" id=\"goog_995882687\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"19\" height=\"9.4\" x=\"344.5\" y=\"44\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"354\" y=\"51.6\">\u533a\u5206</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"19\" x-height=\"9.4\" x-left=\"379\" x-top=\"44\" id=\"goog_995882688\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"19\" height=\"9.4\" x=\"379\" y=\"44\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"388.5\" y=\"51.6\">\u5b66\u5e74</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"44\" x-height=\"9.4\" x-left=\"403\" x-top=\"44\" id=\"goog_995882689\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"44\" height=\"9.4\" x=\"403\" y=\"44\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"425\" y=\"51.6\">\uff11</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"44.7\" x-height=\"9.4\" x-left=\"448.6\" x-top=\"44\" id=\"goog_995882690\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"44.7\" height=\"9.4\" x=\"448.6\" y=\"44\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"471\" y=\"51.6\">\uff12</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"46.6\" x-height=\"9.4\" x-left=\"493.5\" x-top=\"44\" id=\"goog_995882691\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"46.6\" height=\"9.4\" x=\"493.5\" y=\"44\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"516.8\" y=\"51.6\">\uff13</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"0\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"9\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"44.5\" x-height=\"9.4\" x-left=\"540.7\" x-top=\"44\" id=\"goog_995882692\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"44.5\" height=\"9.4\" x=\"540.7\" y=\"44\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"563\" y=\"51.6\">\uff14</text></g><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"402\" x2=\"402\" y1=\"40\" y2=\"100\" id=\"goog_995882693\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"448\" y1=\"40\" y2=\"100\" x1=\"448\" id=\"goog_995882694\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"495\" y1=\"40\" y2=\"100\" x1=\"495\" id=\"goog_995882695\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"541\" y1=\"40\" y2=\"100\" x1=\"541\" id=\"goog_995882696\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"372.6\" y1=\"40.5\" y2=\"54.7\" x1=\"364.6\" id=\"goog_995882697\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"340.1\" x2=\"585.2\" y1=\"55\" y2=\"55\" id=\"goog_995882698\"></line><line stroke=\"#000000\" stroke-width=\"1\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"340.1\" x2=\"585.2\" y1=\"77\" y2=\"77\" id=\"goog_995882699\"></line><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" font-size=\"8\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60.3\" x-height=\"9\" x-left=\"340.8\" x-top=\"62\" id=\"goog_995882700\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60.3\" height=\"9\" x=\"340.8\" y=\"62\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"371\" y=\"68.8\">\u30db\u30fc\u30e0\u30eb\u30fc\u30e0</text></g><g class=\"s-text\" stroke-width=\"0\" fill=\"#000000\" fill-opacity=\"1\" kerning=\"auto\" x-display=\"true\" x-id=\"\" stroke=\"none\" font-weight=\"normal\" font-style=\"normal\" font-family=\"IPAMincho\" font-size=\"8\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"60.3\" x-height=\"9\" x-left=\"340.8\" x-top=\"85\" id=\"goog_995882701\"><rect class=\"s-text-box\" stroke=\"none\" fill=\"#000000\" fill-opacity=\"0.001\" width=\"60.3\" height=\"9\" x=\"340.8\" y=\"85\"></rect><text class=\"s-text-l0\" xml:space=\"preserve\" stroke=\"none\" fill=\"inherit\" fill-opacity=\"1\" text-decoration=\"none\" x=\"371\" y=\"91.8\">\u6574\u7406\u756a\u53f7</text></g><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"homeroom\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":406,\"y\":62,\"width\":39.7,\"height\":8},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":425.9,\"y\":71,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"8\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-anchor\":\"middle\",\"text-decoration\":\"none\",\"id\":\"goog_995882702\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"homeroom\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"8\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-anchor=\"middle\" text-decoration=\"none\" x-width=\"39.7\" x-height=\"8\" x-left=\"406\" x-top=\"62\" id=\"goog_995882702\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"39.7\" height=\"8\" x=\"406\" y=\"62\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"408\" y=\"73\">homeroom</text></g>LAYOUT--><!--SHAPE{\"type\":\"s-tblock\",\"id\":\"seat_num\",\"display\":\"true\",\"desc\":null,\"multiple\":\"false\",\"valign\":\"\",\"line-height\":\"\",\"box\":{\"x\":406,\"y\":85,\"width\":39.7,\"height\":8},\"format\":{\"base\":\"\",\"type\":\"\"},\"value\":\"\",\"ref-id\":\"\",\"overflow\":\"truncate\",\"word-wrap\":\"break-word\",\"svg\":{\"tag\":\"text\",\"attrs\":{\"x\":425.9,\"y\":94,\"xml:space\":\"preserve\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"kerning\":\"auto\",\"fill\":\"#000000\",\"fill-opacity\":\"1\",\"font-size\":\"8\",\"font-family\":\"IPAMincho\",\"font-weight\":\"normal\",\"font-style\":\"normal\",\"text-decoration\":\"none\",\"text-anchor\":\"middle\",\"id\":\"goog_995882703\"}}}SHAPE--><!--LAYOUT<g xmlns=\"http://www.w3.org/2000/svg\" class=\"s-tblock\" x-format-type=\"\" x-value=\"\" x-format-base=\"\" x-ref-id=\"\" kerning=\"auto\" x-display=\"true\" x-multiple=\"false\" x-id=\"seat_num\" x-width=\"39.7\" x-height=\"8\" x-left=\"406\" x-top=\"85\" fill=\"#000000\" fill-opacity=\"1\" font-size=\"8\" font-family=\"IPAMincho\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"middle\" x-overflow=\"truncate\" id=\"goog_995882703\"><rect class=\"s-tblock-box\" stroke=\"#7C4007\" fill=\"#f4e2c4\" stroke-width=\"0.28\" fill-opacity=\"0.8\" width=\"39.7\" height=\"8\" x=\"406\" y=\"85\"></rect><text class=\"s-tblock-id\" font-size=\"11\" font-family=\"Helvetica\" font-weight=\"normal\" font-style=\"normal\" text-decoration=\"none\" text-anchor=\"start\" kerning=\"auto\" stroke=\"none\" fill=\"#7C4007\" fill-opacity=\"1\" x=\"408\" y=\"96\">seat_num</text></g>LAYOUT--><line stroke=\"#000000\" stroke-width=\"0.5\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x1=\"67.3\" x2=\"316.6\" y1=\"159\" y2=\"159\" id=\"goog_995882704\"></line><line stroke=\"#000000\" stroke-width=\"0.5\" fill=\"none\" class=\"s-line\" x-display=\"true\" x-stroke-type=\"solid\" stroke-dasharray=\"none\" x-id=\"\" x2=\"316.6\" y1=\"332\" y2=\"332\" x1=\"67.3\" id=\"goog_995882705\"></line></g></svg>","state":{"layout-guide":[{"type":"x","position":297.1},{"type":"x","position":39},{"type":"x","position":79.3},{"type":"x","position":360.1},{"type":"x","position":259.5},{"type":"y","position":132},{"type":"y","position":66},{"type":"y","position":652.2},{"type":"y","position":159.1},{"type":"y","position":379.1},{"type":"y","position":655.8}]}}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
.row
|
2
|
+
.col-md-12
|
3
|
+
#new-admin-import-file.d-none
|
4
|
+
.pull-left
|
5
|
+
= count_div 'admin-import-files-count' do
|
6
|
+
= print_count @count, t(:'import_file.list')
|
7
|
+
.pull-right
|
8
|
+
= ajax_link_to_new t(:'import_file.add'), [:new, :admin, :import_file], id: 'new-admin-import-file-link'
|
9
|
+
|
10
|
+
hr
|
11
|
+
|
12
|
+
#admin-import-files
|
13
|
+
= table_for 'admin-import-files-index' do
|
14
|
+
thead
|
15
|
+
tr
|
16
|
+
= th t(:'import_file.importer_type')
|
17
|
+
= th t(:'import_file.file_name')
|
18
|
+
= th t(:'import_file.file_size')
|
19
|
+
= th t(:'import_file.content_type')
|
20
|
+
|
21
|
+
= th_actions 3
|
22
|
+
tbody
|
23
|
+
= render partial: 'gaku/admin/import_files/import_file', collection: @import_files, as: :import_file
|
24
|
+
|
@@ -0,0 +1,8 @@
|
|
1
|
+
td = import_file.importer_type
|
2
|
+
td = import_file.data_file_file_name
|
3
|
+
td = number_to_human_size import_file.data_file_file_size
|
4
|
+
td = import_file.data_file_content_type
|
5
|
+
td
|
6
|
+
= link_to content_tag(:i, nil, class: 'glyphicon glyphicon-play' ),[:import , :admin, import_file], class: 'btn btn-xs btn-success import-link', remote: true
|
7
|
+
= link_to content_tag(:i, nil, class: 'glyphicon glyphicon-eye-open' ),[:check , :admin, import_file], class: 'btn btn-xs btn-warning check-link', remote: true
|
8
|
+
= ajax_link_to_delete [:admin, import_file]
|
@@ -0,0 +1,20 @@
|
|
1
|
+
.row
|
2
|
+
.col-md-12
|
3
|
+
ul.nav.nav-tabs.nav-justified
|
4
|
+
li.active
|
5
|
+
a#created-students-tab-link data-toggle="tab" href="#created-students"
|
6
|
+
= print_count @created_students.count, "Created"
|
7
|
+
li
|
8
|
+
a#duplicated-students-tab-link data-toggle="tab" href="#duplicated-students"
|
9
|
+
= print_count @duplicated_students.count, "Duplicated"
|
10
|
+
li
|
11
|
+
a#not-saved-students-tab-link data-toggle="tab" href="#not-saved-students"
|
12
|
+
= print_count @not_saved_students.count, "Not saved"
|
13
|
+
|
14
|
+
.tab-content
|
15
|
+
#created-students.tab-pane.active
|
16
|
+
= render 'created_students'
|
17
|
+
#duplicated-students.tab-pane
|
18
|
+
= render 'duplicated_students'
|
19
|
+
#not-saved-students.tab-pane
|
20
|
+
= render 'not_saved_students'
|
@@ -0,0 +1,7 @@
|
|
1
|
+
$('#admin-import-files-index tbody').append('<%= j render("import_file", {import_file: @import_file}) %>');
|
2
|
+
showNotice("<%= render_flash %>");
|
3
|
+
|
4
|
+
$('#new-admin-import-file').slide();
|
5
|
+
$('#new-admin-import-file-link').show();
|
6
|
+
|
7
|
+
$('.admin-import-files-count').html("<%= print_count(@count, t(:'import_file.list')) %>");
|
@@ -0,0 +1 @@
|
|
1
|
+
showNotice("<%= render_flash %>");
|
@@ -0,0 +1 @@
|
|
1
|
+
$('#ajax-load').html('<%=j render "import_files" %>')
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<div class="panel panel-default">
|
2
|
+
<div class="panel-heading">
|
3
|
+
<h4 id="importer-master-menu" class="panel-title">
|
4
|
+
<a data-toggle="collapse" data-parent="#accordion" href="#importer">
|
5
|
+
<%= link_to t(:'menu.admin.importer.importer'), [:admin, :import_files], remote: true %>
|
6
|
+
</a>
|
7
|
+
</h4>
|
8
|
+
</div>
|
9
|
+
</div>
|
@@ -0,0 +1,15 @@
|
|
1
|
+
report.use_layout File.join(Gaku::Imex::Engine.root, 'app', 'reports', 'student_record_personal_info.en')
|
2
|
+
report.start_new_page do |page|
|
3
|
+
page.values student_name_reading: @student.name_reading,
|
4
|
+
student_name: "#{@student.surname} #{@student.name} ",
|
5
|
+
birth_date: @student.birth_date,
|
6
|
+
gender: @student.temp_gender,
|
7
|
+
student_address: @student.address_widget,
|
8
|
+
admitted: @student.admitted,
|
9
|
+
guardian_name: "#{@guardian.try(:surname)} #{@guardian.try(:name)}",
|
10
|
+
guardian_name_reading: "#{@guardian.try(:surname_reading)} #{@guardian.try(:name_reading)}",
|
11
|
+
guardian_address: @guardian.try(:address_widget),
|
12
|
+
school_name: @school.name,
|
13
|
+
school_address: @school.master_campus.address
|
14
|
+
|
15
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
report.use_layout File.join(Gaku::Imex::Engine.root, 'app', 'reports', 'student_record_personal_info.ja')
|
2
|
+
report.start_new_page do |page|
|
3
|
+
page.values student_name_reading: @student.name_reading,
|
4
|
+
student_name: "#{@student.surname} #{@student.name} ",
|
5
|
+
birth_date: @student.birth_date,
|
6
|
+
gender: @student.temp_gender,
|
7
|
+
student_address: @student.address_widget,
|
8
|
+
admitted: @student.admitted,
|
9
|
+
guardian_name: "#{@guardian.try(:surname)} #{@guardian.try(:name)}",
|
10
|
+
guardian_name_reading: "#{@guardian.try(:surname_reading)} #{@guardian.try(:name_reading)}",
|
11
|
+
guardian_address: @guardian.try(:address_widget),
|
12
|
+
school_name: @school.name,
|
13
|
+
school_address: @school.master_campus.address
|
14
|
+
|
15
|
+
end
|